Wednesday, June 22, 2011

How-to Oscam + dvbapi on dreambox/vu

This is a complete minimal-configuration of oscam running on a Dreambox.
Oscam is reading the card from internal reader
Oscam is also decrypting the channels using the built-in softcam "dvbapi".
Oscam even updates the card using these settings. (Supported cards "EMM: OK" here)
No other softcam necessary!

All you've got to do is CHANGE THE CAID(cardID) AND IDENT(Providers)
in the reader (in oscam.server) to match your card.
You can find an overview of cards and their providers here:

http://streamboard.gmc.to:8001/wiki/CardsList

This is a basic configuration which runs out of the box.


oscam.conf
global configuration
all listeners ("server processes") are here
could be newcamd- cccam- camd3x- web-server or
dvbapi, the "built-in softcam" of oscam

oscam.conf

[global]
Nice = -10
WaitForCards = 1
PreferLocalCards = 1
saveinithistory = 1

[monitor]
port = 988
monlevel = 4
nocrypt = 127.0.0.1

[webif]
httpport = 10001
httprefresh = 5
httpallowed = 127.0.0.1,192.168.0.0-192.168.255.255

[dvbapi]
enabled =1
boxtype = dreambox
user = localuser
au = 1




oscam.server
reader configuration
where oscam finds it's cards
could be real card-readers, or remote servers on any protocol

oscam.server


[reader]
label = myreadername
enable = 1
protocol = internal
device = /dev/sci0
detect = cd
caid = 0123 <---put your caid here
ident = 0123:123456,234567 <---put your caid:ident,ident,... here
group = 1
emmcache = 1,3,2


oscam.user
user configuration
users who are allowed to connect to this oscam
like our local dvbapi-user, or remote users for any protocol


oscam.user


[account]
user = localuser
group = 1
au = myreadername



MANY MANY MANY other functions can be added to this configuration to enhance or add features.

If you'd like to share your card, you have to add server-processes in oscam.conf,
like a newcamd-protocol-server or cccam-protocol-server or other protocol server.
Doing so, different remote cardservers or softcams like oscam, cccam, newcs,...
are allowed to connect using the corresponding protocols.
Then add accounts in oscam.user so that our oscam accepts connections
from these remotes.

If you want to connect to remote cardservers, you have to add readers in oscam.server,
like newcamd-protocol connections or cccam-protocol connections or other protocol connections.
Doing so, your oscam reads cards from remote cardservers or softcams like oscam, cccam, newcs,...
using the corresponding protocols.

For more information it's strongly recommended to read the documentation
which came with oscam or read the always up-to-date documentation here:

http://streamboard.gmc.to/svn/oscam/...ution/doc/txt/

And configuration examples here:

http://streamboard.gmc.to/svn/oscam/...n/doc/example/

No comments:

Post a Comment