
Showing posts with label OSCAM. Show all posts
Showing posts with label OSCAM. Show all posts

OSCam/en/examples/Reader
Example Reader Configurations
The reader is the module that allows OSCam server to translate ECMs received from clients into CWs, which are sent back to clients for decrypting channels. There are two types of readers: hardware readers, which are somehow connected to the machine which runs OSCam server, and remote readers, which are running on different machines than the one running the OSCam server.
For the hardware readers, OSCam needs to know what type the reader is, how it is connected to the machine, what protocol it "speaks", and what subscription cards are inserted in that device.
For the remote readers, OSCam must know the IP address and port where to connect, the protocol spoken, and how to authenticate itself (username/password). Again, you can specify subscriptions that can be found there.
The following list shows example configurations for the supported readers.
Serial-Mouse kompatible Reader
[reader] label = myserialmouserreader protocol = mouse detect = CD device = /dev/ttyS0 group = 1 emmcache = 1,3,2 services = myservice,thisservice caid = 0100
USB-Mouse kompatible Reader
[reader] label = myusbmousereader protocol = mouse detect = CD device = /dev/ttyUSB0 aeskey = 0102030405060708090a0b0c0d0e0f10 group = 2 emmcache = 1,3,2 services = services2 caid = 0200
Remote Camd3.78x Reader with fallback for group 1
[reader] label = mycamd378xreader protocol = cs378x device = 192.168.0.1,1234 user = user1, password = password1 group = 1 fallback = 1
Remote Newcamd Reader with fallback for group 2
[reader] label = mynewcamdreader protocol = newcamd key = 0102030405060708091011121314 device = 192.168.0.2,2345 user = user2 password = password2 group = 2 fallback = 1
Remote CCcam Reader
[reader] label = mycccamreader protocol = cccam device = 192.168.0.3,3456 user = user3 password = password3 group = 3 caid = 0300,0400,0500 cccversion= 1.2.3 cccbuild = 4567
PCSC Reader
[reader] label = mypcscreader protocol = pcsc device = 0 aeskey = 0102030405060708090a0b0c0d0e0f10 group = 4 caid = 0600
Smargo Smartreader+
# example 1 [reader] label = mysmargoreader protocol = smartreader device = 001:002 aeskey = 0102030405060708090a0b0c0d0e0f10 group = 5 caid = 0700 # example 2 [reader] label = mysmargoreader protocol = smartreader device = Serial:Reader 1 detect = cd mhz = 600 cardmhz = 600 emmcache = 1,3,2 group = 5 services = my_services
Internal Reader
[reader] label = myinternalreader protocol = internal device = /dev/sci0 group = 6 caid = 0800
Constant CW
[reader] label = myconstantcw protocol = constcw device = /var/keys/constant.cw group = 7
Remote Radegast Reader
[reader] label = myradegastreader protocol = radegast device = 192.168.0.6,56789 group = 9 caid = 0500
AD-Teknik
AB Multiprogrammer 3.5 serial
[reader] label = mymultiprogrammer3.5 protocol = mp35 detect = CD device = /dev/ttyS1 group = 10 emmcache = 1,3,2 services = services10 caid = 0900
AB Multiprogrammer 3.6. USB
[reader] label = mymultiprogrammer3.6 protocol = mp35 detect = CD device = /dev/ttyUSB1 group = 11 emmcache = 1,3,2 services = services11 caid = 1000
AB USB Phoenix at 6.00 mhz
[reader] label = mymultiprogrammerUSBPhoenix protocol = mp35 detect = CD device = /dev/ttyUSB2 mhz = 600 group = 12 emmcache = 1,3,2 services = services12 caid = 1100
sc8in1 reader
[reader] label = mysc8in1reader protocol = sc8in1 device = /dev/ttyUSB0:1 group = 13 emmcache = 1,3,2 services = services11 caid = 1200
Smargo Special
First, read about udev => http://en.wikipedia.org/wiki/Udev
Smargo readers do not offer clear identification in a standard manner, at least before firmware 1.04. Starting from firmware 1.04, one can assign a clear identifier with the Smargo tools. To find out how to set the identifier (the clear name), please refer to the Smargo tool documentation, which should be included in the Smargo tools package.
The following example shows three Smargos and a MasterCRD on Debian Linux.
We remove all Smargos from the PC and attach them in sequence, while using Smargo tools to identify each device, as follows:
cd /where/the/smargotools/are # change directory to where Smargo tools are
# Attach first Smargo WITHOUT card, in a different USB slot, and then... ./srp_tool -n 1 # we assign identifier "1" to this device, later assigned to OSCam as "Serial:Reader 1"
# Attach another Smargo, then... ./srp_tool -n 2 # we assign identifier "2" to this device, later assigned to OSCam as "Serial:Reader 2"
# and so on...
An example using udev-rules:
# provide new udev-rules vi /lib/udev/rules.d/10-usb-name-for-example.rules
# then type as follows:
# Smargo 1 SUBSYSTEMS=="usb", KERNEL=="ttyUSB*", ATTRS{serial}=="Reader 1", ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6001", SYMLINK+="smargo1", MODE="0666" # Smargo 2 SUBSYSTEMS=="usb", KERNEL=="ttyUSB*", ATTRS{serial}=="Reader 2", ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6001", SYMLINK+="smargo2", MODE="0666" # Smargo 3 SUBSYSTEMS=="usb", KERNEL=="ttyUSB*", ATTRS{serial}=="Reader 3", ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6001", SYMLINK+="smargo3", MODE="0666" # MasterCRD over Serial connector ************************* SUBSYSTEMS=="usb", KERNEL=="ttyUSB*", ATTRS{idVendor}=="4711", ATTRS{idProduct}=="4712", SYMLINK+="masterCRD", MODE="0666"
An example udev-rule for Smargo SmartReader and Triple Reader+ [1]:
# File: /etc/udev/rules.d/45-smargo-reader.rules ############################## smargo tripple ########################### SUBSYSTEMS=="usb", ATTRS{interface}=="Triple Reader+", ATTRS{../serial}=="12345678", ATTRS{bInterfaceNumber}=="01", SYMLINK+="sc/my-special-card", GOTO="smargo_tripple_end" SUBSYSTEMS=="usb", ATTRS{interface}=="Triple Reader+", SYMLINK+="sc/triple-$attr{../serial}-$attr{bInterfaceNumber}" LABEL="smargo_tripple_end" ############################## smargo stick ############################## SUBSYSTEMS=="usb", KERNEL=="ttyUSB*", ATTRS{serial}=="Reader 1234567", SYMLINK+="sc/my-very-important-card"
Finally, modify oscam.server as follows:
[reader] label = my_smargo1 protocol = smartreader # or "mouse" device = Serial:Reader 1 # /dev/smargo1, if "mouse" detect = cd mhz = 600 cardmhz = 600 emmcache = 1,3,2 group = 1 [reader] label = my_smargo2 protocol = mouse # or "smartreader" device = /dev/smargo2 # Serial:Reader 2, if "smartreader" detect = cd mhz = 368 cardmhz = 368 emmcache = 1,3,2 group = 2 # and so on...
Example Reader Configurations
The reader is the module that allows OSCam server to translate ECMs received from clients into CWs, which are sent back to clients for decrypting channels. There are two types of readers: hardware readers, which are somehow connected to the machine which runs OSCam server, and remote readers, which are running on different machines than the one running the OSCam server.
For the hardware readers, OSCam needs to know what type the reader is, how it is connected to the machine, what protocol it "speaks", and what subscription cards are inserted in that device.
For the remote readers, OSCam must know the IP address and port where to connect, the protocol spoken, and how to authenticate itself (username/password). Again, you can specify subscriptions that can be found there.
The following list shows example configurations for the supported readers.
Serial-Mouse kompatible Reader
[reader]
label = myserialmouserreader
protocol = mouse
detect = CD
device = /dev/ttyS0
group = 1
emmcache = 1,3,2
services = myservice,thisservice
caid = 0100
USB-Mouse kompatible Reader
[reader]
label = myusbmousereader
protocol = mouse
detect = CD
device = /dev/ttyUSB0
aeskey = 0102030405060708090a0b0c0d0e0f10
group = 2
emmcache = 1,3,2
services = services2
caid = 0200
Remote Camd3.78x Reader with fallback for group 1
[reader]
label = mycamd378xreader
protocol = cs378x
device = 192.168.0.1,1234
user = user1,
password = password1
group = 1
fallback = 1
Remote Newcamd Reader with fallback for group 2
[reader]
label = mynewcamdreader
protocol = newcamd
key = 0102030405060708091011121314
device = 192.168.0.2,2345
user = user2
password = password2
group = 2
fallback = 1
Remote CCcam Reader
[reader]
label = mycccamreader
protocol = cccam
device = 192.168.0.3,3456
user = user3
password = password3
group = 3
caid = 0300,0400,0500
cccversion= 1.2.3
cccbuild = 4567
PCSC Reader
[reader]
label = mypcscreader
protocol = pcsc
device = 0
aeskey = 0102030405060708090a0b0c0d0e0f10
group = 4
caid = 0600
Smargo Smartreader+
# example 1
[reader]
label = mysmargoreader
protocol = smartreader
device = 001:002
aeskey = 0102030405060708090a0b0c0d0e0f10
group = 5
caid = 0700
# example 2
[reader]
label = mysmargoreader
protocol = smartreader
device = Serial:Reader 1
detect = cd
mhz = 600
cardmhz = 600
emmcache = 1,3,2
group = 5
services = my_services
Internal Reader
[reader]
label = myinternalreader
protocol = internal
device = /dev/sci0
group = 6
caid = 0800
Constant CW
[reader]
label = myconstantcw
protocol = constcw
device = /var/keys/constant.cw
group = 7
Remote Radegast Reader
[reader]
label = myradegastreader
protocol = radegast
device = 192.168.0.6,56789
group = 9
caid = 0500
AD-Teknik
AB Multiprogrammer 3.5 serial
[reader]
label = mymultiprogrammer3.5
protocol = mp35
detect = CD
device = /dev/ttyS1
group = 10
emmcache = 1,3,2
services = services10
caid = 0900
AB Multiprogrammer 3.6. USB
[reader]
label = mymultiprogrammer3.6
protocol = mp35
detect = CD
device = /dev/ttyUSB1
group = 11
emmcache = 1,3,2
services = services11
caid = 1000
AB USB Phoenix at 6.00 mhz
[reader]
label = mymultiprogrammerUSBPhoenix
protocol = mp35
detect = CD
device = /dev/ttyUSB2
mhz = 600
group = 12
emmcache = 1,3,2
services = services12
caid = 1100
sc8in1 reader
[reader]
label = mysc8in1reader
protocol = sc8in1
device = /dev/ttyUSB0:1
group = 13
emmcache = 1,3,2
services = services11
caid = 1200
Smargo Special
First, read about udev => http://en.wikipedia.org/wiki/Udev
Smargo readers do not offer clear identification in a standard manner, at least before firmware 1.04. Starting from firmware 1.04, one can assign a clear identifier with the Smargo tools. To find out how to set the identifier (the clear name), please refer to the Smargo tool documentation, which should be included in the Smargo tools package.
The following example shows three Smargos and a MasterCRD on Debian Linux.
We remove all Smargos from the PC and attach them in sequence, while using Smargo tools to identify each device, as follows:
cd /where/the/smargotools/are # change directory to where Smargo tools are
# Attach first Smargo WITHOUT card, in a different USB slot, and then...
./srp_tool -n 1 # we assign identifier "1" to this device, later assigned to OSCam as "Serial:Reader 1"
# Attach another Smargo, then...
./srp_tool -n 2 # we assign identifier "2" to this device, later assigned to OSCam as "Serial:Reader 2"
# and so on...
An example using udev-rules:
# provide new udev-rules
vi /lib/udev/rules.d/10-usb-name-for-example.rules
# then type as follows:
# Smargo 1
SUBSYSTEMS=="usb", KERNEL=="ttyUSB*", ATTRS{serial}=="Reader 1", ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6001", SYMLINK+="smargo1", MODE="0666"
# Smargo 2
SUBSYSTEMS=="usb", KERNEL=="ttyUSB*", ATTRS{serial}=="Reader 2", ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6001", SYMLINK+="smargo2", MODE="0666"
# Smargo 3
SUBSYSTEMS=="usb", KERNEL=="ttyUSB*", ATTRS{serial}=="Reader 3", ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6001", SYMLINK+="smargo3", MODE="0666"
# MasterCRD over Serial connector *************************
SUBSYSTEMS=="usb", KERNEL=="ttyUSB*", ATTRS{idVendor}=="4711", ATTRS{idProduct}=="4712", SYMLINK+="masterCRD", MODE="0666"
An example udev-rule for Smargo SmartReader and Triple Reader+ [1]:
# File: /etc/udev/rules.d/45-smargo-reader.rules
############################## smargo tripple ###########################
SUBSYSTEMS=="usb", ATTRS{interface}=="Triple Reader+", ATTRS{../serial}=="12345678", ATTRS{bInterfaceNumber}=="01", SYMLINK+="sc/my-special-card", GOTO="smargo_tripple_end"
SUBSYSTEMS=="usb", ATTRS{interface}=="Triple Reader+", SYMLINK+="sc/triple-$attr{../serial}-$attr{bInterfaceNumber}"
LABEL="smargo_tripple_end"
############################## smargo stick ##############################
SUBSYSTEMS=="usb", KERNEL=="ttyUSB*", ATTRS{serial}=="Reader 1234567", SYMLINK+="sc/my-very-important-card"
Finally, modify oscam.server as follows:
[reader]
label = my_smargo1
protocol = smartreader # or "mouse"
device = Serial:Reader 1 # /dev/smargo1, if "mouse"
detect = cd
mhz = 600
cardmhz = 600
emmcache = 1,3,2
group = 1
[reader]
label = my_smargo2
protocol = mouse # or "smartreader"
device = /dev/smargo2 # Serial:Reader 2, if "smartreader"
detect = cd
mhz = 368
cardmhz = 368
emmcache = 1,3,2
group = 2
# and so on...

N line in oscam to update card
Below are my current settings - Using Oscam 1.20 & cam 2.1.4. If anyone could point me in the right direction I would appreciate it. My cline for CCcam is in the format c: my ip, port, user pass 1 0 1 {0:0:2} and I have the Nline in CCcam.cfg
OSCAM conf
[global]
logfile = /var/local/oscam.log
cachedelay = 120
nice = -1
maxlogsize = 0
saveinithistory = 1
[newcamd]
port = xxxx@0963:000000
key = 0102030405060708091011121314
allowed = 127.0.0.1,192.168.0.0-192.168.255.255
keepalive = 1
[webif]
httpport = 12000
httpuser =
httppwd =
httprefresh = 10
httpallowed = 127.0.0.1,192.168.0.0-192.168.255.255
OSCAM Server
[reader]
label = skyuk
protocol = internal
enable = 1
device = /dev/sci0
caid = 0963
boxid = XX XX XX XX
detect = cd
mhz = 600
cardmhz = 600
ident = 0963:000000
group = 1
emmcache = 1,3,2
blockemm-g = 1
blockemm-unknown = 1
blockemm-u = 0
blockemm-s = 0
lb_weight = 100
ecmwhitelist = 0963@000000:3E,4E,4F,42,44,45,47,53,54,61,6A,6B,6D ,6E,6F,62, 67,68,69,7A,7C,7D,7E,71,72,73,77,78,79,80,8B
OSCAM USER
[account]
user = xxxx
pwd = xxxx
uniq = 2
monlevel = 1
caid = 0963
ident = 0963:000000
group = 1
au = skyuk
blockemm-unknown = 1
blockemm-g = 1
blockemm-u = 0
blockemm-s = 0
CCcam cfg
#####################
#CCcam.cfg settings #
#####################
SERVER LISTEN PORT : xxxxx
ALLOW TELNETINFO: yes
ALLOW WEBINFO: yes
SHOW EXTENEDED CLIENT INFO : yes
WEBINFO LISTEN PORT : 16001
WEBINFO USERNAME : xxxx
WEBINFO PASSWORD : xxxx
TELNETINFO LISTEN PORT : 16000
TELNETINFO USERNAME : xxxx
TELNETINFO PASSWORD : xxxx
ZAP OSD TIME : 1
OSD USERNAME : xxxx
OSD PASSWORD : xxxx
OSD PORT : 80
BOXKEY: /dev/sci0 xx xx xx xx
SMARTCARD CLOCK FREQUENCY: /dev/sci0 3570000
SHOW TIMING : yes
MINI OSD : no
DEBUG : yes
NEWCAMD CONF yes
DISABLE EMM : yes
EXTRA EMM LEVEL : no
EMM THREADS : 1
SOFTKEY FILE : /var/keys/SoftCam.Key
AUTOROLL FILE : /var/keys/AutoRoll.Key
STATIC CW FILE : /var/keys/constant.cw
CHANNELINFO FILE : /var/etc/CCcam.channelinfo
CAID PRIO FILE : /var/etc/CCcam.prio
PROVIDERINFO FILE : /var/etc/CCcam.providers
MINIMUM DOWNHOPS: 0
MINIMUM CLIENT VERSION : 1.7.0
#LOG WARNINGS : /tmp/warnings.txt
N: my ip, port, user pass yes 0102030405060708091011121314
<@@@@@@@@@@@@@@@@@@@@@@@@@@@@>
Below are my current settings - Using Oscam 1.20 & cam 2.1.4. If anyone could point me in the right direction I would appreciate it. My cline for CCcam is in the format c: my ip, port, user pass 1 0 1 {0:0:2} and I have the Nline in CCcam.cfg
OSCAM conf
[global]
logfile = /var/local/oscam.log
cachedelay = 120
nice = -1
maxlogsize = 0
saveinithistory = 1
[newcamd]
port = xxxx@0963:000000
key = 0102030405060708091011121314
allowed = 127.0.0.1,192.168.0.0-192.168.255.255
keepalive = 1
[webif]
httpport = 12000
httpuser =
httppwd =
httprefresh = 10
httpallowed = 127.0.0.1,192.168.0.0-192.168.255.255
OSCAM Server
[reader]
label = skyuk
protocol = internal
enable = 1
device = /dev/sci0
caid = 0963
boxid = XX XX XX XX
detect = cd
mhz = 600
cardmhz = 600
ident = 0963:000000
group = 1
emmcache = 1,3,2
blockemm-g = 1
blockemm-unknown = 1
blockemm-u = 0
blockemm-s = 0
lb_weight = 100
ecmwhitelist = 0963@000000:3E,4E,4F,42,44,45,47,53,54,61,6A,6B,6D ,6E,6F,62, 67,68,69,7A,7C,7D,7E,71,72,73,77,78,79,80,8B
OSCAM USER
[account]
user = xxxx
pwd = xxxx
uniq = 2
monlevel = 1
caid = 0963
ident = 0963:000000
group = 1
au = skyuk
blockemm-unknown = 1
blockemm-g = 1
blockemm-u = 0
blockemm-s = 0
CCcam cfg
#####################
#CCcam.cfg settings #
#####################
SERVER LISTEN PORT : xxxxx
ALLOW TELNETINFO: yes
ALLOW WEBINFO: yes
SHOW EXTENEDED CLIENT INFO : yes
WEBINFO LISTEN PORT : 16001
WEBINFO USERNAME : xxxx
WEBINFO PASSWORD : xxxx
TELNETINFO LISTEN PORT : 16000
TELNETINFO USERNAME : xxxx
TELNETINFO PASSWORD : xxxx
ZAP OSD TIME : 1
OSD USERNAME : xxxx
OSD PASSWORD : xxxx
OSD PORT : 80
BOXKEY: /dev/sci0 xx xx xx xx
SMARTCARD CLOCK FREQUENCY: /dev/sci0 3570000
SHOW TIMING : yes
MINI OSD : no
DEBUG : yes
NEWCAMD CONF yes
DISABLE EMM : yes
EXTRA EMM LEVEL : no
EMM THREADS : 1
SOFTKEY FILE : /var/keys/SoftCam.Key
AUTOROLL FILE : /var/keys/AutoRoll.Key
STATIC CW FILE : /var/keys/constant.cw
CHANNELINFO FILE : /var/etc/CCcam.channelinfo
CAID PRIO FILE : /var/etc/CCcam.prio
PROVIDERINFO FILE : /var/etc/CCcam.providers
MINIMUM DOWNHOPS: 0
MINIMUM CLIENT VERSION : 1.7.0
#LOG WARNINGS : /tmp/warnings.txt
N: my ip, port, user pass yes 0102030405060708091011121314
first,CCcam 2.1.4 will not show your card as local(best things to change to 2.1.3)
second all your settings looks good,try to change Oscam.user to that after change CCcam ver.
OSCAM USER
[account]
user = xxxx
pwd = xxxx
uniq = 2
monlevel = 1
caid = 0963
ident = 0963:000000
group = 1
au = 1
blockemm-unknown = 1
blockemm-g = 1
blockemm-u = 0
blockemm-s = 0

How to install OSCam on Debian and Ubuntu
1) Prepair for compile with installing new needed packs:
2) Oscam compile:
2.1 Download OSCam
2.2 Compile OSCam
2.3 Copy OSCam Compiled file
3) Unused oscam compile directory delete:
4) Setting oscam to correct attribute:
5) Oscam automatic startup with bootup
EDIT RC.LOCAL FROM NORMAL WINDOW
add next line before the "exit0" line, /usr/local/bin/oscam -b -r2
in server edition type
HTML Code:
sudo apt-get install build-essential sudo apt-get install libssl-dev libpcsclite-dev sudo apt-get install mercurial cvs subversion libncurses-dev sudo apt-get install cmake
2.1 Download OSCam
HTML Code:
cd /usr/src sudo svn co http://oscam.to/svn/oscam/trunk oscam
OR
svn checkout http://www.streamboard.tv/svn/oscam/trunk oscam-svn
HTML Code:
cd oscam sudo cmake -DWEBIF=1 -DPCSC=1 sudo make
HTML Code:
sudo cp oscam /usr/local/bin
HTML Code:
cd .. sudo rm -rf oscam
HTML Code:
cd /usr/local/bin sudo chmod 755 oscam
EDIT RC.LOCAL FROM NORMAL WINDOW
HTML Code:
nano /etc/rc.local
in server edition type
Subscribe to:
Posts (Atom)
Recently Updated
LINKS
- Biss keys
- Cache Exchange
- CCcam
- CCcam on Dreambox
- CCcam Prio
- CCcam Server
- CCcam-Newcamd Line Tester
- CCcam.channelinfo
- CCcam.Providers
- Channels
- DISH TV CHANELS
- DISHTV REPLACE LIST
- Dream Box
- Dream Box Key
- DreamBox OSCAM
- Exchange Cache
- FREE CCCAM
- IP TV
- LIVE TV
- MpegTV Server
- Multi CardServer
- Multics
- MultiCS Cache
- MultiCS CSS Style
- Multics Dishtv Profiles
- Multics Profiles
- Multics To Oscam
- OpenVPN
- OSCAM
- OScam + CCcam
- OSCAM Cache-EX
- OScam CCcam
- Oscam to OScam share
- Receivers
- Reset Dreambox Password
- Satellite
- Satellite Frequency
- Satellite KEYS
- Satellite Receivers Codes
- SMART PHONE
- SoftCam Key
- Songs
- UBUNTU
- Video Tutorials
- WiFi
- World Cup 2018 European
- Xtream
- Xtream Codes