NCam 6.6-r1 (oficial)

K

kamaxx

Miembro de Lonas
Joined
Jun 17, 2014
Messages
5
Reaction score
1
Points
12
wrong binary

Dear Sir;

Binary is not wrong. I use it my mutant hd51 machine.
I firstly install raeds ncam and I change lonas's binary. The only difference is that Raeds script work with original ncam.
My machine architecture is arfhf15
 
OP
OP
lonas

lonas

Trovador Loco
Developer
Joined
Sep 10, 2006
Messages
25,186
Reaction score
2,294
Points
322
No Javi, este no es chino jeje.

Bueno observo que en users, tengo dos sin nombre como tal, aparece un 2 dentro de un cuadrado rojo, en el status online y la ip del garaje

MultiCS si, r84 es lo que tiene jajaja

Y el log ahora va mas o menos así

no se porque aparece ese cache 2 ahi....juraria haber quitado todo lo de cache....

Donde dices que mire lo de si me estan chupando por streaming??

¿Ves? No será chino, pero desde luego tampoco se entiende que se te queje sobre peticiones cuando lo que tiene es un puto multics.

Algún sitio tiene que seguir por ahí aun tirando de caché 2.

No sé en Openspa donde se mirará, pero tiene que tener una opción que te permita ver los usuarios tirando de stream
 
PoP_PeQuE

PoP_PeQuE

Usuario VIP
Joined
Dec 8, 2022
Messages
134
Reaction score
81
Points
40
No Javi, este no es chino jeje.

Bueno observo que en users, tengo dos sin nombre como tal, aparece un 2 dentro de un cuadrado rojo, en el status online y la ip del garaje

MultiCS si, r84 es lo que tiene jajaja

Y el log ahora va mas o menos así

no se porque aparece ese cache 2 ahi....juraria haber quitado todo lo de cache....

Donde dices que mire lo de si me estan chupando por streaming??

Pues R84 es la version de multics puro y sin filtros.

Esa va muy bien, y tira muy bien jjj

Pues estaran haciendo de tu linea un servidor multics :54:

Sobre si estan chupando de ti por streaming.

La mejor forma es, en mi punto de vista es quitar el acceso a http y https.

Porque para saberlo, debes mirar el dvbapi, Y sin estar cojiendo chupando tu teniendolo en stanby, Deberia de estar parado el dvbapi.


Un saludo
 
OP
OP
lonas

lonas

Trovador Loco
Developer
Joined
Sep 10, 2006
Messages
25,186
Reaction score
2,294
Points
322
Hi all;

First of all; Merry christmas!

I like ncam original binary that Lonas developed it.
I have a problem that;
Ncam does not start and affect all other softcams
So I get a message on menu as "please wait,softcam starting"
It stucks on that message but does not start and Oscam and other emus not starting after ncam start error.

Openatv image
/etc/initd/softcam.Ncam
/usr/bin/ncam
/etc/tuxbox/config

Where is the problem?

Hi, merry christmas.

How can it affect other softcams?

Are you trying to start ncam at the same time as another softcam?

I don't understand what your problem is exactly

If you start via terminal with ncam -b
what does it tell you?

I would use the universal for all ARM-NEOMs.

Regards
 
OP
OP
lonas

lonas

Trovador Loco
Developer
Joined
Sep 10, 2006
Messages
25,186
Reaction score
2,294
Points
322
I attached binary and script before :)

I don't see any problem with the script,

pass it through notepad+ and check that it is not in windows format,

if it is, pass it in UNIX format.

Then assign 755 permissions to the script

Regards
 
OP
OP
lonas

lonas

Trovador Loco
Developer
Joined
Sep 10, 2006
Messages
25,186
Reaction score
2,294
Points
322
Dear Sir;

Binary is not wrong. I use it my mutant hd51 machine.
I firstly install raeds ncam and I change lonas's binary. The only difference is that Raeds script work with original ncam.
My machine architecture is arfhf15

Do not use anything from an unofficial version.

Starting from there, I'm sure you won't have any problem,
the official ncam has nothing to do with the unofficial one and the configuration files don't work in the same way.

All the best
 
K

kamaxx

Miembro de Lonas
Joined
Jun 17, 2014
Messages
5
Reaction score
1
Points
12
@lonas;

I use notepad++ for scripts
I dont use simultaneous binarys at same time.
original(official) binary works on the wollowing script
How I do this to work?
Firstly; I command wget on telnet for unofficial ncam and after that I change your config and official binary. Then everything is okay.
But Official ncam does not start if i manually install script and config files.
(Chmod 755 on softcam.Ncam and binary file)

Is there any ipk file or softcam.Ncam file for openatv,openpli,etc,etc?
Capture.PNG


#!/bin/sh
### BEGIN INIT INFO
# Provides: softcam
# Required-Start: $local_fs
# Required-Stop:
# Should-Start: $time $remote_fs cardserver
# Should-Stop:
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: ncam-13.5
# Description: ncam-13.5 SoftCAM, card reader and server.
### END INIT INFO

readlink -f $0 >/dev/null 2>&1
if [ $? -eq 0 ]; then
CAM=$(basename $(readlink -f $0) | sed s#^softcam\.##)
else
CAM=$(basename $0 | sed s#^softcam\.##)
fi

[ -n "$CAM" ] || exit 1
[ -x /usr/bin/$CAM ] || exit 1

PIDFILE=/var/tmp/${CAM}.pid
DESC="Softcam service $CAM"
DAEMON=/usr/bin/$CAM

case "$1" in
start)
if [ -e $PIDFILE ]; then
PIDDIR=/proc/$(cat $PIDFILE)
if [ -d ${PIDDIR} ] && [[ $(readlink -f ${PIDDIR}/exe) == $DAEMON ]]; then
echo "$DESC already started; not starting."
exit 1
else
rm -f $PIDFILE
fi
fi
echo -n "Starting $DESC: "
ulimit -s 1024
$DAEMON --config-dir /etc/tuxbox/config --daemon --pidfile $PIDFILE --restart 2 --utf8 2| grep -v "UTF-8 mode"
sleep 0.5
RETVAL=1
[ -e $PIDFILE ] && RETVAL=0
if [ "$RETVAL" -eq "0" ]; then
echo "OK"
else
echo "FAILED"
fi
exit $RETVAL
;;
stop)
echo -n "Stopping $DESC: "
kill `cat $PIDFILE 2> /dev/null` 2> /dev/null
RETVAL=$?
if [ "$RETVAL" -eq "0" ]; then
echo "OK"
else
echo "FAILED"
fi
sleep 1
killall $CAM 2> /dev/null
exit $RETVAL
;;
restart|reload)
$0 stop
sleep 1
$0 start
exit $?
;;
status)
echo -n "$DESC: "
if [ -e $PIDFILE ]; then
PIDDIR=/proc/$(cat $PIDFILE)
if [ -d ${PIDDIR} ] && [[ $(readlink -f ${PIDDIR}/exe) == $DAEMON ]]; then
echo "Running."
exit 0
fi
fi
echo "Stopped."
exit 1
;;
version)
$CAM -V | grep 'Version\|IPv6' | sed 's/Version:[ ]*//' | sed 's/IPv6.*yes/with IPv6/g' | sed 's/IPv6.*no/IPv4-only/g' | sed ':a;N;$!ba;s/\n/ /g'
;;
info)
$CAM -V | grep 'Version\|IPv6' | sed 's/Version:[ ]*//' | sed 's/IPv6.*yes/with IPv6/g' | sed 's/IPv6.*no/IPv4-only/g' | sed ':a;N;$!ba;s/\n/ /g'
;;
*)
echo "Usage: $0 start|stop|restart|status"
exit 1
;;
esac
exit 0

Welcome to openATV for mutant51
openatv 7.2 mutant51

mutant51 login: root
Password:
Last login: Sat Dec 31 18:30:16 CET 2022 on pts/0
root@mutant51:~# ncam -b
-sh: ncam: command not found
root@mutant51:~#
 
K

kamaxx

Miembro de Lonas
Joined
Jun 17, 2014
Messages
5
Reaction score
1
Points
12
@lonas ;

I have just found a script on this thread and tried but no success
Is there any missing lib file or something different clue?

PS: I edited script and It works now.
#!/bin/sh
### BEGIN INIT INFO
# Provides: softcam
# Required-Start: $local_fs
# Required-Stop:
# Should-Start: $time $remote_fs cardserver
# Should-Stop:
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: ncam
# Description: ncam SoftCAM, card reader and server.
### END INIT INFO

readlink -f $0 >/dev/null 2>&1
if [ $? -eq 0 ]; then
CAM=$(basename $(readlink -f $0) | sed s#^softcam\.##)
else
CAM=$(basename $0 | sed s#^softcam\.##)
fi

[ -n "$CAM" ] || exit 1
[ -x /usr/bin/$CAM ] || exit 1

PIDFILE=/var/tmp/${CAM}.pid
DESC="Softcam service $CAM"
DAEMON=/usr/bin/$CAM

case "$1" in
start)
if [ -e $PIDFILE ]; then
PIDDIR=/proc/$(cat $PIDFILE)
if [ -d ${PIDDIR} ] && [[ $(readlink -f ${PIDDIR}/exe) == $DAEMON ]]; then
echo "$DESC already started; not starting."
exit 1
else
rm -f $PIDFILE
fi
fi
echo -n "Starting $DESC: "
ulimit -s 1024
$DAEMON --config-dir /etc/tuxbox/config --daemon --pidfile $PIDFILE --restart 2 --utf8 2| grep -v "UTF-8 mode"
sleep 0.5
RETVAL=1
[ -e $PIDFILE ] && RETVAL=0
if [ "$RETVAL" -eq "0" ]; then
echo "OK"
else
echo "FAILED"
fi
exit $RETVAL
;;
stop)
echo -n "Stopping $DESC: "
kill `cat $PIDFILE 2> /dev/null` 2> /dev/null
RETVAL=$?
if [ "$RETVAL" -eq "0" ]; then
echo "OK"
else
echo "FAILED"
fi
sleep 1
killall $CAM 2> /dev/null
exit $RETVAL
;;
restart|reload)
$0 stop
sleep 1
$0 start
exit $?
;;
status)
echo -n "$DESC: "
if [ -e $PIDFILE ]; then
PIDDIR=/proc/$(cat $PIDFILE)
if [ -d ${PIDDIR} ] && [[ $(readlink -f ${PIDDIR}/exe) == $DAEMON ]]; then
echo "Running."
exit 0
fi
fi
echo "Stopped."
exit 1
;;
version)
$CAM -V | grep 'Version\|IPv6' | sed 's/Version:[ ]*//' | sed 's/IPv6.*yes/with IPv6/g' | sed 's/IPv6.*no/IPv4-only/g' | sed ':a;N;$!ba;s/\n/ /g'
;;
info)
$CAM -V | grep 'Version\|IPv6' | sed 's/Version:[ ]*//' | sed 's/IPv6.*yes/with IPv6/g' | sed 's/IPv6.*no/IPv4-only/g' | sed ':a;N;$!ba;s/\n/ /g'
;;
*)
echo "Usage: $0 start|stop|restart|status"
exit 1
;;
esac
exit 0
 

Attachments

Last edited:
P

PaPiTo2

Amigo de Lonas
Joined
May 23, 2017
Messages
31
Reaction score
12
Points
20
¿Ves? No será chino, pero desde luego tampoco se entiende que se te queje sobre peticiones cuando lo que tiene es un puto multics.

Algún sitio tiene que seguir por ahí aun tirando de caché 2.

No sé en Openspa donde se mirará, pero tiene que tener una opción que te permita ver los usuarios tirando de stream

No Javi, tampoco ha sido una queja jeje....era un comentario.
Pues ya me he quedado tocado con esta chorrada, más que nada por el ansia de saber, no por otra cosa.
Ahora que estoy estoy días libre, aprovecharé para revisar a ver qué pasa, aunque como os he comentado anteriormente, no tengo nada más ON....
Gracias a todos por vuestro interés y ayuda.
 
PoP_PeQuE

PoP_PeQuE

Usuario VIP
Joined
Dec 8, 2022
Messages
134
Reaction score
81
Points
40
No Javi, tampoco ha sido una queja jeje....era un comentario.
Pues ya me he quedado tocado con esta chorrada, más que nada por el ansia de saber, no por otra cosa.
Ahora que estoy estoy días libre, aprovecharé para revisar a ver qué pasa, aunque como os he comentado anteriormente, no tengo nada más ON....
Gracias a todos por vuestro interés y ayuda.

Yo observaria al user con multics, como tenga intercambios en el multics, Te afectara a ti, Y mas aun , Si el aparte tiene users en su multics.

Te chupara como una garapata :132:

Un saludo
 
P

PaPiTo2

Amigo de Lonas
Joined
May 23, 2017
Messages
31
Reaction score
12
Points
20
Yo observaria al user con multics, como tenga intercambios en el multics, Te afectara a ti, Y mas aun , Si el aparte tiene users en su multics.

Te chupara como una garapata :132:

Un saludo

No tengo clientes...lo uso de cliente solamente, así que no tengo users
 
PoP_PeQuE

PoP_PeQuE

Usuario VIP
Joined
Dec 8, 2022
Messages
134
Reaction score
81
Points
40
No tengo clientes...lo uso de cliente solamente, así que no tengo users

Buenos dias, feliz año 2023 a todos.

Ya, pero ese que tienes que te pone r84, ese seguro que si, Y intercambios tambien.

A no ser que sea tu ese user jjj o lo conozca xDD

Porque para eso es se usa y usan el multics.

Un saludo
 
Last edited:
C

calcu

Usuario VIP
Joined
Aug 23, 2010
Messages
350
Reaction score
98
Points
46
@lonas
por si te vale de algo, todo funciona bien, pero acaba de pasarme esto en el server, he tenido un paron con la local.
(tambien te digo que si no toco el server 24h, se congela la imagen, si cambio de canal, arranca, y no tengo ningun timer activado (lo revisaré)).

Al Cwcheck no le ha molado algo.

pongo el Log desde que ha entrado en usuario, y como la local no puede arreglarlo, hasta que he cambiado de canal.


Code:
2023-01-12 20:26:25 xxxxxxxxx c      (ecm) xxxxxx (DATA=1810@000000/0000/74D5 ECM_L:8E CW=EA72B30F46AF8E83B8ACE94DD06BCB06 HOP=00): cache1 (1 ms) by Card_Blanca_int - M+LCAMPEON2 (cwc OK(CE))
2023-01-12 20:26:39 xxxxxxxxx c   (kscamd) client connected to 00000 port
2023-01-12 20:26:39 xxxxxxxxx c   (client) encrypted kscamd:00000-client 192.168.nnn.nn granted (yyyyyyy, au=off)
2023-01-12 20:26:39 xxxxxxxxx c   (kscamd) user yyyyyyy authenticated successfully (KScamd)
2023-01-12 20:26:39 xxxxxxxxx c   (kscamd) AU disabled for user yyyyyyy
2023-01-12 20:26:39 xxxxxxxxx c      (ecm) vvvvvvvv (DATA=1810@000000/0000/7826 ECM_L:8E CW=C720A68DBAE83DDF9F5ECCC97B949CAB HOP=00): found (347 ms) by Card_Blanca_int - EUROSPORT1HD (cwc OK)
2023-01-12 20:26:39 xxxxxxxxx c      (ecm) hhhhhhhhh (DATA=1810@000000/0000/788B ECM_L:8E CW=C2A345AA29E5D9E7F8ECE2C612A7641D HOP=00): cache2 (623 ms) by Card_Blanca_int - DISNEY CH HD
2023-01-12 20:26:39 xxxxxxxxx r (cwccheck) cyclecheck [Bad CW Cycle] for: yyyyyyy DATA=1810@000000/0000/74D5 ECM_L:8E CW=40E553780EBF0AD7AF830032F8E86A4A HOP=00 from: Card_Blanca_int -> drop cw (ECM Answer)
2023-01-12 20:26:39 xxxxxxxxx c      (ecm) MMMMMMMM (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (874 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:39 xxxxxxxxx c      (ecm) SSSSSSSSSS (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (818 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:39 xxxxxxxxx c      (ecm) yyyyyyy (DATA=1810@000000/0000/74D5 ECM_L:8E CW=40E553780EBF0AD7AF830032F8E86A4A HOP=00): rejected  (815 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over) (cwc NOK)
2023-01-12 20:26:39 xxxxxxxxx c      (ecm) xxxxxx (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (837 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:39 xxxxxxxxx c      (ecm) QQQQQQQQ (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (876 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:39 xxxxxxxxx c      (ecm) PPPPPPPPP (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (879 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:39 xxxxxxxxx c      (ecm) WWWWWW (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (888 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:39 xxxxxxxxx c      (ecm) visor (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (896 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:40 xxxxxxxxx c   (dvbapi) Demuxer 0 restarting decoding requests after 0 ms with 1 enabled and 0 disabled ecmpids!
2023-01-12 20:26:40 xxxxxxxxx c   (dvbapi) Demuxer 0 trying to descramble PID 0 CAID 1810 PROVID 000000 ECMPID 088E ANY CHID PMTPID 0408 VPID 00A4
2023-01-12 20:26:40 xxxxxxxxx c      (ecm) visor (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (50 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:41 xxxxxxxxx c   (dvbapi) Demuxer 0 restarting decoding requests after 0 ms with 1 enabled and 0 disabled ecmpids!
2023-01-12 20:26:41 xxxxxxxxx c   (dvbapi) Demuxer 0 trying to descramble PID 0 CAID 1810 PROVID 000000 ECMPID 088E ANY CHID PMTPID 0408 VPID 00A4
2023-01-12 20:26:41 xxxxxxxxx c      (ecm) visor (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (51 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:42 xxxxxxxxx c   (dvbapi) Demuxer 0 restarting decoding requests after 0 ms with 1 enabled and 0 disabled ecmpids!
2023-01-12 20:26:42 xxxxxxxxx c   (dvbapi) Demuxer 0 trying to descramble PID 0 CAID 1810 PROVID 000000 ECMPID 088E ANY CHID PMTPID 0408 VPID 00A4
2023-01-12 20:26:42 xxxxxxxxx c      (ecm) visor (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (51 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:43 xxxxxxxxx c   (dvbapi) Demuxer 0 restarting decoding requests after 0 ms with 1 enabled and 0 disabled ecmpids!
2023-01-12 20:26:43 xxxxxxxxx c   (dvbapi) Demuxer 0 trying to descramble PID 0 CAID 1810 PROVID 000000 ECMPID 088E ANY CHID PMTPID 0408 VPID 00A4
2023-01-12 20:26:43 xxxxxxxxx c      (ecm) visor (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (51 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:44 xxxxxxxxx c   (dvbapi) Demuxer 0 restarting decoding requests after 0 ms with 1 enabled and 0 disabled ecmpids!
2023-01-12 20:26:44 xxxxxxxxx c   (dvbapi) Demuxer 0 trying to descramble PID 0 CAID 1810 PROVID 000000 ECMPID 088E ANY CHID PMTPID 0408 VPID 00A4
2023-01-12 20:26:44 xxxxxxxxx r (cwccheck) cyclecheck [Bad CW Cycle] for: visor DATA=1810@000000/0000/74D5 ECM_L:8E CW=40E553780EBF0AD7AF830032F8E86A4A HOP=00 from: Card_Blanca_int -> drop cw (ECM Answer)
2023-01-12 20:26:44 xxxxxxxxx c      (ecm) visor (DATA=1810@000000/0000/74D5 ECM_L:8E CW=40E553780EBF0AD7AF830032F8E86A4A HOP=00): rejected  (331 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over) (cwc NOK)
2023-01-12 20:26:45 xxxxxxxxx c   (dvbapi) Demuxer 0 restarting decoding requests after 0 ms with 1 enabled and 0 disabled ecmpids!
2023-01-12 20:26:45 xxxxxxxxx c   (dvbapi) Demuxer 0 trying to descramble PID 0 CAID 1810 PROVID 000000 ECMPID 088E ANY CHID PMTPID 0408 VPID 00A4
2023-01-12 20:26:45 xxxxxxxxx c      (ecm) visor (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (50 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:46 xxxxxxxxx c   (dvbapi) Demuxer 0 restarting decoding requests after 0 ms with 1 enabled and 0 disabled ecmpids!
2023-01-12 20:26:46 xxxxxxxxx c   (dvbapi) Demuxer 0 trying to descramble PID 0 CAID 1810 PROVID 000000 ECMPID 088E ANY CHID PMTPID 0408 VPID 00A4
2023-01-12 20:26:46 xxxxxxxxx c      (ecm) visor (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (50 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:47 xxxxxxxxx c   (dvbapi) Demuxer 0 restarting decoding requests after 0 ms with 1 enabled and 0 disabled ecmpids!
2023-01-12 20:26:47 xxxxxxxxx c   (dvbapi) Demuxer 0 trying to descramble PID 0 CAID 1810 PROVID 000000 ECMPID 088E ANY CHID PMTPID 0408 VPID 00A4
2023-01-12 20:26:47 xxxxxxxxx c      (ecm) visor (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (50 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:48 xxxxxxxxx c   (dvbapi) Demuxer 0 restarting decoding requests after 0 ms with 1 enabled and 0 disabled ecmpids!
2023-01-12 20:26:48 xxxxxxxxx c   (dvbapi) Demuxer 0 trying to descramble PID 0 CAID 1810 PROVID 000000 ECMPID 088E ANY CHID PMTPID 0408 VPID 00A4
2023-01-12 20:26:48 xxxxxxxxx c      (ecm) visor (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (50 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:49 xxxxxxxxx c   (dvbapi) Demuxer 0 restarting decoding requests after 0 ms with 1 enabled and 0 disabled ecmpids!
2023-01-12 20:26:49 xxxxxxxxx c   (dvbapi) Demuxer 0 trying to descramble PID 0 CAID 1810 PROVID 000000 ECMPID 088E ANY CHID PMTPID 0408 VPID 00A4
2023-01-12 20:26:49 xxxxxxxxx r (cwccheck) cyclecheck [Bad CW Cycle] for: xxxxxx DATA=1810@000000/0000/74D5 ECM_L:8E CW=40E553780EBF0AD7AF830032F8E86A4A HOP=00 from: Card_Blanca_int -> drop cw (ECM Answer)
2023-01-12 20:26:49 xxxxxxxxx c      (ecm) xxxxxx (DATA=1810@000000/0000/74D5 ECM_L:8E CW=40E553780EBF0AD7AF830032F8E86A4A HOP=00): rejected  (331 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over) (cwc NOK)
2023-01-12 20:26:49 xxxxxxxxx c      (ecm) csp-pi (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (289 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:49 xxxxxxxxx c      (ecm) visor (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (124 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:50 xxxxxxxxx c   (dvbapi) Demuxer 0 restarting decoding requests after 0 ms with 1 enabled and 0 disabled ecmpids!
2023-01-12 20:26:50 xxxxxxxxx c   (dvbapi) Demuxer 0 trying to descramble PID 0 CAID 1810 PROVID 000000 ECMPID 088E ANY CHID PMTPID 0408 VPID 00A4
2023-01-12 20:26:50 xxxxxxxxx c      (ecm) visor (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (50 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:51 xxxxxxxxx c   (dvbapi) Demuxer 0 restarting decoding requests after 0 ms with 1 enabled and 0 disabled ecmpids!
2023-01-12 20:26:51 xxxxxxxxx c   (dvbapi) Demuxer 0 trying to descramble PID 0 CAID 1810 PROVID 000000 ECMPID 088E ANY CHID PMTPID 0408 VPID 00A4
2023-01-12 20:26:51 xxxxxxxxx c      (ecm) visor (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (50 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:52 xxxxxxxxx c   (dvbapi) Demuxer 0 restarting decoding requests after 0 ms with 1 enabled and 0 disabled ecmpids!
2023-01-12 20:26:52 xxxxxxxxx c   (dvbapi) Demuxer 0 trying to descramble PID 0 CAID 1810 PROVID 000000 ECMPID 088E ANY CHID PMTPID 0408 VPID 00A4
2023-01-12 20:26:52 xxxxxxxxx c      (ecm) visor (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (51 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:53 xxxxxxxxx c   (dvbapi) Demuxer 0 restarting decoding requests after 0 ms with 1 enabled and 0 disabled ecmpids!
2023-01-12 20:26:53 xxxxxxxxx c   (dvbapi) Demuxer 0 trying to descramble PID 0 CAID 1810 PROVID 000000 ECMPID 088E ANY CHID PMTPID 0408 VPID 00A4
2023-01-12 20:26:53 xxxxxxxxx c      (ecm) visor (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (50 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:54 xxxxxxxxx c   (dvbapi) Demuxer 0 restarting decoding requests after 0 ms with 1 enabled and 0 disabled ecmpids!
2023-01-12 20:26:54 xxxxxxxxx c   (dvbapi) Demuxer 0 trying to descramble PID 0 CAID 1810 PROVID 000000 ECMPID 088E ANY CHID PMTPID 0408 VPID 00A4
2023-01-12 20:26:54 xxxxxxxxx c      (ecm) vvvvvvvv (DATA=1810@000000/0000/7826 ECM_L:8E CW=125B2390812F7B2B9F5ECCC97B949CAB HOP=00): found (347 ms) by Card_Blanca_int - EUROSPORT1HD (cwc OK)
2023-01-12 20:26:54 xxxxxxxxx c      (ecm) hhhhhhhhh (DATA=1810@000000/0000/788B ECM_L:8E CW=C2A345AA29E5D9E78C6BA39A28A6501E HOP=00): cache2 (638 ms) by Card_Blanca_int - DISNEY CH HD
2023-01-12 20:26:54 xxxxxxxxx c      (ecm) SSSSSSSSSS (DATA=1810@000000/0000/74D5 ECM_L:8E CW=2F76822729446AD7AF830032F8E86A4A HOP=00): cache2 (769 ms) by Card_Blanca_int - M+LCAMPEON2 (cwc LEARN)
2023-01-12 20:26:54 xxxxxxxxx c      (ecm) QQQQQQQQ (DATA=1810@000000/0000/74D5 ECM_L:8E CW=2F76822729446AD7AF830032F8E86A4A HOP=00): cache2 (776 ms) by Card_Blanca_int - M+LCAMPEON2 (cwc LEARN)
2023-01-12 20:26:54 xxxxxxxxx c      (ecm) MMMMMMMM (DATA=1810@000000/0000/74D5 ECM_L:8E CW=2F76822729446AD7AF830032F8E86A4A HOP=00): cache2 (774 ms) by Card_Blanca_int - M+LCAMPEON2 (cwc LEARN)
2023-01-12 20:26:54 xxxxxxxxx c      (ecm) PPPPPPPPP (DATA=1810@000000/0000/74D5 ECM_L:8E CW=2F76822729446AD7AF830032F8E86A4A HOP=00): cache2 (780 ms) by Card_Blanca_int - M+LCAMPEON2 (cwc LEARN)
2023-01-12 20:26:54 xxxxxxxxx c      (ecm) yyyyyyy (DATA=1810@000000/0000/74D5 ECM_L:8E CW=2F76822729446AD7AF830032F8E86A4A HOP=00): cache2 (787 ms) by Card_Blanca_int - M+LCAMPEON2 (cwc LEARN)
2023-01-12 20:26:54 xxxxxxxxx c      (ecm) WWWWWW (DATA=1810@000000/0000/74D5 ECM_L:8E CW=2F76822729446AD7AF830032F8E86A4A HOP=00): cache2 (791 ms) by Card_Blanca_int - M+LCAMPEON2 (cwc LEARN)
2023-01-12 20:26:55 xxxxxxxxx c      (ecm) visor (DATA=1810@000000/0000/74D5 ECM_L:8E CW=2F76822729446AD7AF830032F8E86A4A HOP=00): found (370 ms) by Card_Blanca_int - M+LCAMPEON2 (cwc IGN)
2023-01-12 20:26:57 xxxxxxxxx c   (dvbapi) Demuxer 0 stopped descrambling for program 74D5 (M+LCAMPEON2)
2023-01-12 20:26:58 xxxxxxxxx c   (dvbapi) Demuxer 0 ecmpid 0 CAID: 1810 ECM_PID: 08F8 PROVID: 000000
2023-01-12 20:26:58 xxxxxxxxx c   (dvbapi) Demuxer 0 found 1 ECM pids and 16 STREAM pids in CA PMT
2023-01-12 20:26:58 xxxxxxxxx c   (dvbapi) Demuxer 0 trying to descramble PID 0 CAID 1810 PROVID 000000 ECMPID 08F8 ANY CHID PMTPID 040E VPID 00A5
2023-01-12 20:26:58 xxxxxxxxx c      (ecm) visor (DATA=1810@000000/0000/74DB ECM_L:8E CW=CF1930182FA78B61378243FC99F1810B HOP=00): found (330 ms) by Card_Blanca_int - M+LCAMPEON3 (cwc LEARN)
2023-01-12 20:27:00 xxxxxxxxx c   (dvbapi) Demuxer 0 stopped descrambling for program 74DB (M+LCAMPEON3)
2023-01-12 20:27:00 xxxxxxxxx c   (dvbapi) Demuxer 0 ecmpid 0 CAID: 1810 ECM_PID: 088E PROVID: 000000
2023-01-12 20:27:00 xxxxxxxxx c   (dvbapi) Demuxer 0 found 1 ECM pids and 16 STREAM pids in CA PMT
2023-01-12 20:27:00 xxxxxxxxx c   (dvbapi) Demuxer 0 trying to descramble PID 0 CAID 1810 PROVID 000000 ECMPID 088E ANY CHID PMTPID 0408 VPID 00A4
2023-01-12 20:27:00 xxxxxxxxx c      (ecm) visor (DATA=1810@000000/0000/74D5 ECM_L:8E CW=2F76822729446AD7AF830032F8E86A4A HOP=00): cache1 (1 ms) by Card_Blanca_int - M+LCAMPEON2 (cwc LEARN)
 
PoP_PeQuE

PoP_PeQuE

Usuario VIP
Joined
Dec 8, 2022
Messages
134
Reaction score
81
Points
40
Buenos dias.

@lonas una pregunta, que de siempre he tenido duda, Y no me fio en desactivarlo.

Que diferencia habria de tener activo cyclecheck, a tenerlo desactivado.

Un saludo
 
Last edited:
OP
OP
lonas

lonas

Trovador Loco
Developer
Joined
Sep 10, 2006
Messages
25,186
Reaction score
2,294
Points
322
@lonas
por si te vale de algo, todo funciona bien, pero acaba de pasarme esto en el server, he tenido un paron con la local.
(tambien te digo que si no toco el server 24h, se congela la imagen, si cambio de canal, arranca, y no tengo ningun timer activado (lo revisaré)).

Al Cwcheck no le ha molado algo.

pongo el Log desde que ha entrado en usuario, y como la local no puede arreglarlo, hasta que he cambiado de canal.


Code:
2023-01-12 20:26:25 xxxxxxxxx c      (ecm) xxxxxx (DATA=1810@000000/0000/74D5 ECM_L:8E CW=EA72B30F46AF8E83B8ACE94DD06BCB06 HOP=00): cache1 (1 ms) by Card_Blanca_int - M+LCAMPEON2 (cwc OK(CE))
2023-01-12 20:26:39 xxxxxxxxx c   (kscamd) client connected to 00000 port
2023-01-12 20:26:39 xxxxxxxxx c   (client) encrypted kscamd:00000-client 192.168.nnn.nn granted (yyyyyyy, au=off)
2023-01-12 20:26:39 xxxxxxxxx c   (kscamd) user yyyyyyy authenticated successfully (KScamd)
2023-01-12 20:26:39 xxxxxxxxx c   (kscamd) AU disabled for user yyyyyyy
2023-01-12 20:26:39 xxxxxxxxx c      (ecm) vvvvvvvv (DATA=1810@000000/0000/7826 ECM_L:8E CW=C720A68DBAE83DDF9F5ECCC97B949CAB HOP=00): found (347 ms) by Card_Blanca_int - EUROSPORT1HD (cwc OK)
2023-01-12 20:26:39 xxxxxxxxx c      (ecm) hhhhhhhhh (DATA=1810@000000/0000/788B ECM_L:8E CW=C2A345AA29E5D9E7F8ECE2C612A7641D HOP=00): cache2 (623 ms) by Card_Blanca_int - DISNEY CH HD
2023-01-12 20:26:39 xxxxxxxxx r (cwccheck) cyclecheck [Bad CW Cycle] for: yyyyyyy DATA=1810@000000/0000/74D5 ECM_L:8E CW=40E553780EBF0AD7AF830032F8E86A4A HOP=00 from: Card_Blanca_int -> drop cw (ECM Answer)
2023-01-12 20:26:39 xxxxxxxxx c      (ecm) MMMMMMMM (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (874 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:39 xxxxxxxxx c      (ecm) SSSSSSSSSS (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (818 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:39 xxxxxxxxx c      (ecm) yyyyyyy (DATA=1810@000000/0000/74D5 ECM_L:8E CW=40E553780EBF0AD7AF830032F8E86A4A HOP=00): rejected  (815 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over) (cwc NOK)
2023-01-12 20:26:39 xxxxxxxxx c      (ecm) xxxxxx (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (837 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:39 xxxxxxxxx c      (ecm) QQQQQQQQ (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (876 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:39 xxxxxxxxx c      (ecm) PPPPPPPPP (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (879 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:39 xxxxxxxxx c      (ecm) WWWWWW (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (888 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:39 xxxxxxxxx c      (ecm) visor (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (896 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:40 xxxxxxxxx c   (dvbapi) Demuxer 0 restarting decoding requests after 0 ms with 1 enabled and 0 disabled ecmpids!
2023-01-12 20:26:40 xxxxxxxxx c   (dvbapi) Demuxer 0 trying to descramble PID 0 CAID 1810 PROVID 000000 ECMPID 088E ANY CHID PMTPID 0408 VPID 00A4
2023-01-12 20:26:40 xxxxxxxxx c      (ecm) visor (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (50 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:41 xxxxxxxxx c   (dvbapi) Demuxer 0 restarting decoding requests after 0 ms with 1 enabled and 0 disabled ecmpids!
2023-01-12 20:26:41 xxxxxxxxx c   (dvbapi) Demuxer 0 trying to descramble PID 0 CAID 1810 PROVID 000000 ECMPID 088E ANY CHID PMTPID 0408 VPID 00A4
2023-01-12 20:26:41 xxxxxxxxx c      (ecm) visor (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (51 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:42 xxxxxxxxx c   (dvbapi) Demuxer 0 restarting decoding requests after 0 ms with 1 enabled and 0 disabled ecmpids!
2023-01-12 20:26:42 xxxxxxxxx c   (dvbapi) Demuxer 0 trying to descramble PID 0 CAID 1810 PROVID 000000 ECMPID 088E ANY CHID PMTPID 0408 VPID 00A4
2023-01-12 20:26:42 xxxxxxxxx c      (ecm) visor (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (51 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:43 xxxxxxxxx c   (dvbapi) Demuxer 0 restarting decoding requests after 0 ms with 1 enabled and 0 disabled ecmpids!
2023-01-12 20:26:43 xxxxxxxxx c   (dvbapi) Demuxer 0 trying to descramble PID 0 CAID 1810 PROVID 000000 ECMPID 088E ANY CHID PMTPID 0408 VPID 00A4
2023-01-12 20:26:43 xxxxxxxxx c      (ecm) visor (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (51 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:44 xxxxxxxxx c   (dvbapi) Demuxer 0 restarting decoding requests after 0 ms with 1 enabled and 0 disabled ecmpids!
2023-01-12 20:26:44 xxxxxxxxx c   (dvbapi) Demuxer 0 trying to descramble PID 0 CAID 1810 PROVID 000000 ECMPID 088E ANY CHID PMTPID 0408 VPID 00A4
2023-01-12 20:26:44 xxxxxxxxx r (cwccheck) cyclecheck [Bad CW Cycle] for: visor DATA=1810@000000/0000/74D5 ECM_L:8E CW=40E553780EBF0AD7AF830032F8E86A4A HOP=00 from: Card_Blanca_int -> drop cw (ECM Answer)
2023-01-12 20:26:44 xxxxxxxxx c      (ecm) visor (DATA=1810@000000/0000/74D5 ECM_L:8E CW=40E553780EBF0AD7AF830032F8E86A4A HOP=00): rejected  (331 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over) (cwc NOK)
2023-01-12 20:26:45 xxxxxxxxx c   (dvbapi) Demuxer 0 restarting decoding requests after 0 ms with 1 enabled and 0 disabled ecmpids!
2023-01-12 20:26:45 xxxxxxxxx c   (dvbapi) Demuxer 0 trying to descramble PID 0 CAID 1810 PROVID 000000 ECMPID 088E ANY CHID PMTPID 0408 VPID 00A4
2023-01-12 20:26:45 xxxxxxxxx c      (ecm) visor (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (50 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:46 xxxxxxxxx c   (dvbapi) Demuxer 0 restarting decoding requests after 0 ms with 1 enabled and 0 disabled ecmpids!
2023-01-12 20:26:46 xxxxxxxxx c   (dvbapi) Demuxer 0 trying to descramble PID 0 CAID 1810 PROVID 000000 ECMPID 088E ANY CHID PMTPID 0408 VPID 00A4
2023-01-12 20:26:46 xxxxxxxxx c      (ecm) visor (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (50 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:47 xxxxxxxxx c   (dvbapi) Demuxer 0 restarting decoding requests after 0 ms with 1 enabled and 0 disabled ecmpids!
2023-01-12 20:26:47 xxxxxxxxx c   (dvbapi) Demuxer 0 trying to descramble PID 0 CAID 1810 PROVID 000000 ECMPID 088E ANY CHID PMTPID 0408 VPID 00A4
2023-01-12 20:26:47 xxxxxxxxx c      (ecm) visor (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (50 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:48 xxxxxxxxx c   (dvbapi) Demuxer 0 restarting decoding requests after 0 ms with 1 enabled and 0 disabled ecmpids!
2023-01-12 20:26:48 xxxxxxxxx c   (dvbapi) Demuxer 0 trying to descramble PID 0 CAID 1810 PROVID 000000 ECMPID 088E ANY CHID PMTPID 0408 VPID 00A4
2023-01-12 20:26:48 xxxxxxxxx c      (ecm) visor (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (50 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:49 xxxxxxxxx c   (dvbapi) Demuxer 0 restarting decoding requests after 0 ms with 1 enabled and 0 disabled ecmpids!
2023-01-12 20:26:49 xxxxxxxxx c   (dvbapi) Demuxer 0 trying to descramble PID 0 CAID 1810 PROVID 000000 ECMPID 088E ANY CHID PMTPID 0408 VPID 00A4
2023-01-12 20:26:49 xxxxxxxxx r (cwccheck) cyclecheck [Bad CW Cycle] for: xxxxxx DATA=1810@000000/0000/74D5 ECM_L:8E CW=40E553780EBF0AD7AF830032F8E86A4A HOP=00 from: Card_Blanca_int -> drop cw (ECM Answer)
2023-01-12 20:26:49 xxxxxxxxx c      (ecm) xxxxxx (DATA=1810@000000/0000/74D5 ECM_L:8E CW=40E553780EBF0AD7AF830032F8E86A4A HOP=00): rejected  (331 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over) (cwc NOK)
2023-01-12 20:26:49 xxxxxxxxx c      (ecm) csp-pi (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (289 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:49 xxxxxxxxx c      (ecm) visor (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (124 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:50 xxxxxxxxx c   (dvbapi) Demuxer 0 restarting decoding requests after 0 ms with 1 enabled and 0 disabled ecmpids!
2023-01-12 20:26:50 xxxxxxxxx c   (dvbapi) Demuxer 0 trying to descramble PID 0 CAID 1810 PROVID 000000 ECMPID 088E ANY CHID PMTPID 0408 VPID 00A4
2023-01-12 20:26:50 xxxxxxxxx c      (ecm) visor (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (50 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:51 xxxxxxxxx c   (dvbapi) Demuxer 0 restarting decoding requests after 0 ms with 1 enabled and 0 disabled ecmpids!
2023-01-12 20:26:51 xxxxxxxxx c   (dvbapi) Demuxer 0 trying to descramble PID 0 CAID 1810 PROVID 000000 ECMPID 088E ANY CHID PMTPID 0408 VPID 00A4
2023-01-12 20:26:51 xxxxxxxxx c      (ecm) visor (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (50 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:52 xxxxxxxxx c   (dvbapi) Demuxer 0 restarting decoding requests after 0 ms with 1 enabled and 0 disabled ecmpids!
2023-01-12 20:26:52 xxxxxxxxx c   (dvbapi) Demuxer 0 trying to descramble PID 0 CAID 1810 PROVID 000000 ECMPID 088E ANY CHID PMTPID 0408 VPID 00A4
2023-01-12 20:26:52 xxxxxxxxx c      (ecm) visor (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (51 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:53 xxxxxxxxx c   (dvbapi) Demuxer 0 restarting decoding requests after 0 ms with 1 enabled and 0 disabled ecmpids!
2023-01-12 20:26:53 xxxxxxxxx c   (dvbapi) Demuxer 0 trying to descramble PID 0 CAID 1810 PROVID 000000 ECMPID 088E ANY CHID PMTPID 0408 VPID 00A4
2023-01-12 20:26:53 xxxxxxxxx c      (ecm) visor (DATA=1810@000000/0000/74D5 ECM_L:8E CW=00000000000000000000000000000000 HOP=00): rejected  (50 ms) by Card_Blanca_int - M+LCAMPEON2 (wait_time over)
2023-01-12 20:26:54 xxxxxxxxx c   (dvbapi) Demuxer 0 restarting decoding requests after 0 ms with 1 enabled and 0 disabled ecmpids!
2023-01-12 20:26:54 xxxxxxxxx c   (dvbapi) Demuxer 0 trying to descramble PID 0 CAID 1810 PROVID 000000 ECMPID 088E ANY CHID PMTPID 0408 VPID 00A4
2023-01-12 20:26:54 xxxxxxxxx c      (ecm) vvvvvvvv (DATA=1810@000000/0000/7826 ECM_L:8E CW=125B2390812F7B2B9F5ECCC97B949CAB HOP=00): found (347 ms) by Card_Blanca_int - EUROSPORT1HD (cwc OK)
2023-01-12 20:26:54 xxxxxxxxx c      (ecm) hhhhhhhhh (DATA=1810@000000/0000/788B ECM_L:8E CW=C2A345AA29E5D9E78C6BA39A28A6501E HOP=00): cache2 (638 ms) by Card_Blanca_int - DISNEY CH HD
2023-01-12 20:26:54 xxxxxxxxx c      (ecm) SSSSSSSSSS (DATA=1810@000000/0000/74D5 ECM_L:8E CW=2F76822729446AD7AF830032F8E86A4A HOP=00): cache2 (769 ms) by Card_Blanca_int - M+LCAMPEON2 (cwc LEARN)
2023-01-12 20:26:54 xxxxxxxxx c      (ecm) QQQQQQQQ (DATA=1810@000000/0000/74D5 ECM_L:8E CW=2F76822729446AD7AF830032F8E86A4A HOP=00): cache2 (776 ms) by Card_Blanca_int - M+LCAMPEON2 (cwc LEARN)
2023-01-12 20:26:54 xxxxxxxxx c      (ecm) MMMMMMMM (DATA=1810@000000/0000/74D5 ECM_L:8E CW=2F76822729446AD7AF830032F8E86A4A HOP=00): cache2 (774 ms) by Card_Blanca_int - M+LCAMPEON2 (cwc LEARN)
2023-01-12 20:26:54 xxxxxxxxx c      (ecm) PPPPPPPPP (DATA=1810@000000/0000/74D5 ECM_L:8E CW=2F76822729446AD7AF830032F8E86A4A HOP=00): cache2 (780 ms) by Card_Blanca_int - M+LCAMPEON2 (cwc LEARN)
2023-01-12 20:26:54 xxxxxxxxx c      (ecm) yyyyyyy (DATA=1810@000000/0000/74D5 ECM_L:8E CW=2F76822729446AD7AF830032F8E86A4A HOP=00): cache2 (787 ms) by Card_Blanca_int - M+LCAMPEON2 (cwc LEARN)
2023-01-12 20:26:54 xxxxxxxxx c      (ecm) WWWWWW (DATA=1810@000000/0000/74D5 ECM_L:8E CW=2F76822729446AD7AF830032F8E86A4A HOP=00): cache2 (791 ms) by Card_Blanca_int - M+LCAMPEON2 (cwc LEARN)
2023-01-12 20:26:55 xxxxxxxxx c      (ecm) visor (DATA=1810@000000/0000/74D5 ECM_L:8E CW=2F76822729446AD7AF830032F8E86A4A HOP=00): found (370 ms) by Card_Blanca_int - M+LCAMPEON2 (cwc IGN)
2023-01-12 20:26:57 xxxxxxxxx c   (dvbapi) Demuxer 0 stopped descrambling for program 74D5 (M+LCAMPEON2)
2023-01-12 20:26:58 xxxxxxxxx c   (dvbapi) Demuxer 0 ecmpid 0 CAID: 1810 ECM_PID: 08F8 PROVID: 000000
2023-01-12 20:26:58 xxxxxxxxx c   (dvbapi) Demuxer 0 found 1 ECM pids and 16 STREAM pids in CA PMT
2023-01-12 20:26:58 xxxxxxxxx c   (dvbapi) Demuxer 0 trying to descramble PID 0 CAID 1810 PROVID 000000 ECMPID 08F8 ANY CHID PMTPID 040E VPID 00A5
2023-01-12 20:26:58 xxxxxxxxx c      (ecm) visor (DATA=1810@000000/0000/74DB ECM_L:8E CW=CF1930182FA78B61378243FC99F1810B HOP=00): found (330 ms) by Card_Blanca_int - M+LCAMPEON3 (cwc LEARN)
2023-01-12 20:27:00 xxxxxxxxx c   (dvbapi) Demuxer 0 stopped descrambling for program 74DB (M+LCAMPEON3)
2023-01-12 20:27:00 xxxxxxxxx c   (dvbapi) Demuxer 0 ecmpid 0 CAID: 1810 ECM_PID: 088E PROVID: 000000
2023-01-12 20:27:00 xxxxxxxxx c   (dvbapi) Demuxer 0 found 1 ECM pids and 16 STREAM pids in CA PMT
2023-01-12 20:27:00 xxxxxxxxx c   (dvbapi) Demuxer 0 trying to descramble PID 0 CAID 1810 PROVID 000000 ECMPID 088E ANY CHID PMTPID 0408 VPID 00A4
2023-01-12 20:27:00 xxxxxxxxx c      (ecm) visor (DATA=1810@000000/0000/74D5 ECM_L:8E CW=2F76822729446AD7AF830032F8E86A4A HOP=00): cache1 (1 ms) by Card_Blanca_int - M+LCAMPEON2 (cwc LEARN)

No me he parado en mirar el log, voy apuradete de tiempo, seguramente necesites optimizar la config para impedir que se llegue a producir bloqueo alguno, quizás necesites bajar o aumentar el tiempo del Keep Cycletime y el tiempo que permites las CW y ECMs en caché.
 
OP
OP
lonas

lonas

Trovador Loco
Developer
Joined
Sep 10, 2006
Messages
25,186
Reaction score
2,294
Points
322
Buenos dias.

@lonas una pregunta, que de siempre he tenido duda, Y no me fio en desactivarlo.

Que diferencia habria de tener activo cyclecheck, a tenerlo desactivado.

Un saludo

Buenos días,

Pues ya hace años que esto está implementado en Oscam.

La diferencia es simple, aunque también te digo que a diferencia de en OScam aquí con los años se fueron añadiendo comprobaciones extras que ya no sé si hoy día están o no en Oscam o en versiones no oficiales de ncam, en resumen, que si lo tienes activado NCam/Oscam te hará la comprobación/verificación entre CW0 y CW1 y aquellas que considere que no pasan el filtro, las desechará.

Y aquí si se da el caso ya entrarían en uso luego otros sistemas de protección o balanceo que tengas configurado en tu servidor.

Un saludo
 
PoP_PeQuE

PoP_PeQuE

Usuario VIP
Joined
Dec 8, 2022
Messages
134
Reaction score
81
Points
40
Buenos días,

Pues ya hace años que esto está implementado en Oscam.

La diferencia es simple, aunque también te digo que a diferencia de en OScam aquí con los años se fueron añadiendo comprobaciones extras que ya no sé si hoy día están o no en Oscam o en versiones no oficiales de ncam, en resumen, que si lo tienes activado NCam/Oscam te hará la comprobación/verificación entre CW0 y CW1 y aquellas que considere que no pasan el filtro, las desechará.

Y aquí si se da el caso ya entrarían en uso luego otros sistemas de protección o balanceo que tengas configurado en tu servidor.

Un saludo

Gracias por contestar.

Pero si tiene desactivado, para que No compruebe o verifique.

Pasaria algo, me refiero, A como estan las cosas con el tema de que las marcan y ect...

Porque ejemplo, yo con oscam.

En poder, cuando tenga dias libres, Si duda, probare a fondo la ultima ncam N tanto version deco, como la version para VPS x64

Porque ya tanto filtros, hay cw, que salta el cycle bad o el cyclecheck, Que en realidad, esa son buena.

Y por eso mi duda es, puedo descactivar esa opcion, Sin problema.

Yo te hablo, De tenerla uno mismo, con su local.

Sin tenerla metida al intercambio, ni tampoco tenerla compartida entre grupos con varias locales.

Un saludo y gracias
 
OP
OP
lonas

lonas

Trovador Loco
Developer
Joined
Sep 10, 2006
Messages
25,186
Reaction score
2,294
Points
322
Gracias por contestar.

Pero si tiene desactivado, para que No compruebe o verifique.

Pasaria algo, me refiero, A como estan las cosas con el tema de que las marcan y ect...

Porque ejemplo, yo con oscam.

En poder, cuando tenga dias libres, Si duda, probare a fondo la ultima ncam N tanto version deco, como la version para VPS x64

Porque ya tanto filtros, hay cw, que salta el cycle bad o el cyclecheck, Que en realidad, esa son buena.

Y por eso mi duda es, puedo descactivar esa opcion, Sin problema.

Yo te hablo, De tenerla uno mismo, con su local.

Sin tenerla metida al intercambio, ni tampoco tenerla compartida entre grupos con varias locales.

Un saludo y gracias

Ya depende de ti mismo si quieres desactivarlo o no

Otra cosa es que prefieras activarlo aun sabiendo que alguna vez te pueda dar un falso/positivo y desechar una CW buena. Que podría pasar y ha pasado, pero como te digo esto no es nuevo de ahora, ya lleva años en funcionamiento.

Con los tiempos que corren, todo filtro y seguridad extra que puedas permitirte y no te cause problemas, haz uso de ellos.

Oscam/Ncam como sabrás tiene muchas opciones y cada configuración dependiendo de cómo lo tengas todo te va a funcionar de un modo esperado o no.

Con esto quiero decir, que si activas la comprobación del ciclo de las CWs y luego no te preocupas por el resto de opciones, es como tener un tío en Alcalá.

Jugar con las configs, intentar dejar todo lo más seguro posible, hacer uso de los filtros, el cortafuegos y toda la parafernalia que le rodea que sea posible, pero tener siempre presente una cosa, cada uno le va a dar un uso en concreto y lo que a mí me puede funcionar para lo que yo quiero, no tiene por qué hacerlo del mismo modo para otro.

Tengo pendiente de lanzar la versión final aún, con algún que otro cambio más que estuve liado en navidades, pero como todo en esta vida el tiempo es el que manda.

Un saludo
 

Similar threads

lonas
Replies
64
Views
3K
protuga
P
lonas
Replies
48
Views
3K
lonas
lonas
lonas
Replies
188
Views
23K
lonas
lonas
lonas
Replies
141
Views
13K
Codec
C
lonas
Replies
382
Views
26K
anatulfo
anatulfo
lonas
Replies
394
Views
24K
Riojano
Riojano
Top