Dreambox Support Forum



+ Reply to Thread
Page 1 of 8
1 2 3 ... LastLast
Showing results 1 to 25 of 185

Thread: How To Setup A Linux PC Card Server

  1. #1
    Dreambox Gimp & Coder B16MCC's Avatar
    Join Date
    16-11-2005
    Location
    /var/tuxbox/config
    Posts
    1333
    Thanks
    84
    Thanked 729 Times in 294 Posts
    Blog Entries
    16

    My System: 2 Dreamboxes.......... --------------------------------------------- --- DM 8000 HD PVR & DM 800 HD --- Motek SG2100 & Triax 80cm Dual LNB ------ Fixed Dish 28e Quad LNB ------- ---- Sky HD Full & 24" Apple iMAC ----


    Creator of the CCCCC - only a true wizard could come up with such a name!!

    How To Setup A Linux PC Card Server

    Hi guys, I've wanted to do this for a while and have finally got round to making it happen. Since buying my enormouse 24" iMAC my old ASUS pc has been sat on the bench in the garage doing nothing. Well now it has a very important job. It now runs flawlessly serving my little white card around my house and beyond.

    How to setup a Linux PC Card Server.

    Prerequisites :-

    1. A networked PC that has no real purpose in life.
    2. A clean install of ubuntu desktop edition. ( _http://www.ubuntu.com/GetUbuntu/download )
    3. Configured telnet access to ubuntu.
    4. Configured FTP server on ubuntu.
    5. Omnikey 3121 USB card reader. ( _http://www.omnikey.com )
    6. 1 - 2 spare hours.



    I'm not going into the initial setup of Ubuntu , telnet or FTP as there are many places you can find help with that. Its dead easy !

    At this point I should mention that much of this setup is done using command line instructions, in my case executed from my mac via telnet. You can of course use putty in windows or do it locally on the ubuntu machine in a terminal window. I wll not stipulate the difference between these options, thats up to you.



    Required Software :-

    NewCS
    CCcam
    PCSCd
    pcsc-tools
    Omnikey Driver

    To install the required components simply type the following, enter your password and answer the prompt with 'yes'

    sudo apt-get install pcscd
    sudo apt-get install pcsc-tools


    Omnikey Driver
    _http://www.omnikey.com/index.php?id=69&rName=CardMan%203x21%20PC/SC%20CCID%20for%20Linux%2032%20Bit&did=69

    This is a tarball I believe they're known as, its an archive basically, I unpacked it on my mac and then just FTP'd the unpacked folder to the ubuntu desktop. You can use Winrar also to unpack it or I'm sure there's a way in linux too.

    Again in telnet, navigate to the unpacked folder and install by typing

    ./install

    Once you have everything installed you can test the card reader for a response. Simply type

    pcsc_scan

    Code:
    b16mcc@b16mcc-desktop:~$ pcsc_scan
    PC/SC device scanner
    V 1.4.14 (c) 2001-2008, Ludovic Rousseau <ludovic.rousseau@free.fr>
    Compiled with PC/SC lite version: 1.4.99
    Scanning present readers
    0: OmniKey CardMan 3121 00 00
    
    If your card is not in the database it tells you the command to use to update that database. I needed to do that and afterwards it knew my card. This is not essential however for it to work, just nice to see !

    Code:
    Possibly identified card (using /home/b16mcc/.smartcard_list.txt):
    3F FD 13 25 02 50 00 0F 33 B0 0F 69 FF 4A 50 D0 00 00 53 59 02
    	Sly Digital (DSS satellite TV card) 2009 issue
    
    Install and setup NewCS.
    Ok so via FTP lets setup some files and folders. By default the home directory of your FTP server will be /home/username/

    In that folder I made a new folder, NewCS. I did this using my FTP software.
    Now lets put the files we need in those folders.

    Sticking with just NewCS for now, we'll add CCcam later.
    In /home/username/NewCS you need :-
    newcs.i686.pcsc
    newcs.xml

    If you like you can now rename your newcs.i686.pcsc , I called it newcs_167

    Ok, next we need to edit the newcs.xml file to read our card using our Omnikey reader. Here's my config with a few personal details removed. This is exactly my config it does work.

    Code:
    <newCSconfig>
    	<readers name="Standard Omnikey on PC">
    		<device>
    			<name>Omnikey</name>
    			<type>pcsc</type>
    			<mhz>368</mhz>
    			<node>0</node>
    			<parity>odd</parity>
    			<reset>normal</reset>
    			<export>Yes</export>
    			<enabled>Yes</enabled>
    			<boxkey>01020304</boxkey>
    			<blocksa>No</blocksa>
    			<blockua>No</blockua>
    			<blockga>Yes</blockga>
    			<blockC0>Yes</blockC0>
    			<carddetect>Yes</carddetect>
    			<newcamd_port>12010</newcamd_port>
    			<autosid>Yes</autosid>
    			<priority>round</priority>
    		</device>
    	</readers>
    	<radegastserver>
    			<enabled>No</enabled>
    			<port>10001</port>
    			<allow>
    				<hostname>localhost</hostname>
    			</allow>
    	</radegastserver>
    	<cache>
    			<emm>20</emm>
    			<ecm>-1</ecm>
    	</cache>
    	<httpd>
    		<server>
    			<port>8080</port>
    			<enabled>yes</enabled>
    		</server>
    		<user>
    			<name>admin</name>
    			<password>admin</password>
    			<accesslevel>admin</accesslevel>
    		</user>
    	</httpd>
    	<debug>
    			<password>NewCSpwd</password>
    			<mode>simple</mode>
    			<level>internal</level>
    			<type>all</type>
    			<output>console,tcp</output>
    			<tcp_port>1001</tcp_port>
    			<tcp_options>normal,init</tcp_options>
    	</debug>
    	<newcamdserver>
    			<enabled>Yes</enabled>
    			<name>newcs</name>
    			<deskey>01 02 03 04 05 06 07 08 09 10 11 12 13 14</deskey>
    			<user>
    				<name>CCcam</name>
    				<password>CCcam</password>
    				<au>on</au>
    				<sidoverride>off</sidoverride>
    				<spider>No</spider>
                                    <cardlevel>1</cardlevel>
    			</user>
    	</newcamdserver>
    
    </newCSconfig>
    
    Once thats in place and we're happy we've had a good output from pscs_scan we can go ahead and run NewCS for the first time. Just one more thing though, NewCS has a default location where it expects to see the newcs.xml file, we of course are using a custom location so we need to tell it that. Run NewCs by typing this :-

    ./newcs_167 -C /home/username/NewCS/newcs.xml

    The -C switch simply means use this location for the config. You can see all switches by using -h for help.

    So, thats it she's running. You should now be able to open up the web browser and see your card. In your address bar type in :-

    _http://dreamboxip:8080

    Enter your user name and password and you're in. Have a click around the different options on the left and you should see your card.

    To stop NewCS simply type in your telnet session :-

    killall newcs_167

    Now, its a little long winded typing that startup command with the great big -C switch so we'll make a tiny script file to do it for us.

    Code:
    #!/bin/bash
    cd /home/username/NewCS
    ./newcs_167 -C /home/username/NewCS/newcs.xml
    
    Save this file as startnewcs.sh in your /home/username folder

    Now to start NewCS you can simply type :-

    ./startnewcs.sh

    This is a very very simply way of doing it, but it works. If someone out there is a linux god then maybe you can retort here and show us how its done properly. Cheers.....

    So now that the server is up and running lets connect to it from CCcam. Simply add this line to the CCcam.cfg in your Dreambox.
    Code:
    N: 192.168.100.100 12010 CCcam CCcam 01 02 03 04 05 06 07 08 09 10 11 12 13 14
    
    Where 192.168.100.100 is the IP address of your new linux server.
    You'll notice the port number 12010 matches with the <newcamd_port> parameter and the user and pass match with the <users> parameters.

    As normal if you want to access this from outside your LAN then you'll need to forward port 12010 in your router to the Linux PC IP address and replace the IP address in the N: line with your WAN IP or your DNS address.

    Ok so that enough for now, I'm going bog eyed. Oh just one thing, all the files and folders we have FTP'd or created, just make sure you CHMOD them all to 755 to ensure they have the correct permissions. Things can be a little confusing when you don't do this.

    Guys, some of this I've done from memory so if there's anything thats troubling you I'm sure you'll comment and I'll be happy to help.

    I'm pretty sure you can setup the CCcam server too using this basis but if anyone wants it adding to this tutorial then please ask and I'll oblige.
    Last edited by B16MCC; 27-07-2009 at 10:25 PM Reason: As Mentioned - More Info

    ----------------------------------------------------------

    ----------------------------------------------------------
    Check Out My Blog :- Dreambox Utils For Windows

  2. The Following 21 Users Say Thank You to B16MCC For This Useful Post:

    adikari (19-12-2009), coley (27-07-2009), davepusey (17-11-2009), dui (28-07-2009), father ted (29-07-2009), flatdish2 (01-01-2010), FooFighter (03-08-2009), globopl (03-09-2009), LORBA7068 (30-10-2009), Mad3Wizard (15-01-2010), martin-f (08-01-2010), polyhedron (10-12-2009), sblinx (29-07-2009), shanamat (24-08-2009), sharepapa (11-09-2009), shumifan50 (25-10-2009), sinjin_smythe (09-08-2009), sonic1 (28-07-2009), tomthebomb1968 (28-07-2009), totalacedude (20-11-2009), woodseaves (27-10-2009)

  3. #2
    dui
    dui is offline
    Member
    Join Date
    27-07-2009
    Location
    Yorks
    Posts
    4
    Thanks
    5
    Thanked 3 Times in 2 Posts

    My System: DM800 HD APPLE IMAC PLENTY OF LAPTOPS
    Hi Guys,

    not having much luck with this and don't know where i'm going wrong, been trying to get it to work for few days

    i've done a fresh install of Ubuntu Desktop 9.04.
    done the following successfully (from terminal window in Ubuntu)
    sudo apt-get install pcscd
    sudo apt-get install pcsc-tools

    then when i go to install the drivers and issue the ./install command i get an error saying that i need to install pcsc-lite.

    so i download pcsc-lite and type the following (one line at a time):
    ./configure
    make
    make install

    then i go back to install the omnikey driver and issue the ./install command and this time the driver installs.

    but when i type 'pcsc_scan' i get the following error:

    EDIT: forget that, i got it working, was typing pcsc-scan instead of pcsc_scan

    i'll continue with the rest now...

    thought i'd leave the post up cos it has a few extra steps that i did which were not in the tutorial.

  4. The Following 2 Users Say Thank You to dui For This Useful Post:

    B16MCC (05-08-2009), flatdish2 (01-01-2010)

  5. #3
    Dreambox Gimp & Coder B16MCC's Avatar
    Join Date
    16-11-2005
    Location
    /var/tuxbox/config
    Posts
    1333
    Thanks
    84
    Thanked 729 Times in 294 Posts
    Blog Entries
    16

    My System: 2 Dreamboxes.......... --------------------------------------------- --- DM 8000 HD PVR & DM 800 HD --- Motek SG2100 & Triax 80cm Dual LNB ------ Fixed Dish 28e Quad LNB ------- ---- Sky HD Full & 24" Apple iMAC ----


    Creator of the CCCCC - only a true wizard could come up with such a name!!
    Thanks for the input, as mentioned most of it was written from memory so there may be the odd small issue. You did the right thing to mention it.

    ----------------------------------------------------------

    ----------------------------------------------------------
    Check Out My Blog :- Dreambox Utils For Windows

  6. #4
    Regular Member father ted's Avatar
    Join Date
    04-07-2008
    Location
    scotland
    Posts
    76
    Thanks
    38
    Thanked 3 Times in 3 Posts

    My System: just new , i have a 1meter dish, connected to open media twin unit (cable/sat)and this moment am a ladder fiend ,my wife sends meals up to me via pigeon but im loving the learning curve
    pcsc_scan


    Code:
    b16mcc@b16mcc-desktop:~$ pcsc_scan
    PC/SC device scanner
    V 1.4.14 (c) 2001-2008, Ludovic Rousseau <ludovic.rousseau@free.fr>
    Compiled with PC/SC lite version: 1.4.99
    Scanning present readers
    0: OmniKey CardMan 3121 00 00
    If your card is not in the database it tells you the command to use to update that database. I needed to do that and afterwards it knew my card. This is not essential however for it to work, just nice to see !


    Code:
    Possibly identified card (using /home/b16mcc/.smartcard_list.txt):
    3F FD 13 25 02 50 00 0F 33 B0 0F 69 FF 4A 50 D0 00 00 53 59 02
    Sly Digital (DSS satellite TV card) 2009 issue


    ive manged to get to this point ,it says everything above except it says it cant find my card in data base but when i go to it i can see it in there ,is this important?just need to do more work on my server for me to continue but looking good so far

  7. #5
    Dreambox Gimp & Coder B16MCC's Avatar
    Join Date
    16-11-2005
    Location
    /var/tuxbox/config
    Posts
    1333
    Thanks
    84
    Thanked 729 Times in 294 Posts
    Blog Entries
    16

    My System: 2 Dreamboxes.......... --------------------------------------------- --- DM 8000 HD PVR & DM 800 HD --- Motek SG2100 & Triax 80cm Dual LNB ------ Fixed Dish 28e Quad LNB ------- ---- Sky HD Full & 24" Apple iMAC ----


    Creator of the CCCCC - only a true wizard could come up with such a name!!
    Its not important mate. It will not effect NewCS.

    ----------------------------------------------------------

    ----------------------------------------------------------
    Check Out My Blog :- Dreambox Utils For Windows

  8. #6
    Member
    Join Date
    28-03-2009
    Location
    scotland
    Posts
    11
    Thanks
    5
    Thanked 0 Times in 0 Posts

    My System: dm600 pvr
    Hi Guys can anyone please help a damsel in distress, I've read and re read the above tut and also the above replies

    @ B16MCC firstly thankyou for taking the time to post this

    @ dui thankyou for posting the few extra steps that you did that were not in the first post

    @ Father ted how are you getting on now, is there anything else that you can add.

    Sorry for being so blond but can anyone please please post a complete idiots guide with any extra steps that they have taken to get this working

    Thankyou

  9. #7
    dui
    dui is offline
    Member
    Join Date
    27-07-2009
    Location
    Yorks
    Posts
    4
    Thanks
    5
    Thanked 3 Times in 2 Posts

    My System: DM800 HD APPLE IMAC PLENTY OF LAPTOPS
    have you actually tried any of the above?
    work your way through the tutorial and let us know when you get stuck.
    there were extra steps that i did, but can't remember and didn't write them down
    ( something like linking libcrypto file).

  10. The Following User Says Thank You to dui For This Useful Post:

    shanamat (24-08-2009)

  11. #8
    Member
    Join Date
    28-03-2009
    Location
    scotland
    Posts
    11
    Thanks
    5
    Thanked 0 Times in 0 Posts

    My System: dm600 pvr
    I've got as far as this:

    can get reader to see card when i insert it also it sees it when i remove it , if i do pcsc.scan it shows everything but cant get the new.cs to start (./newcs.i686 -C /var/etc/newcs.xml

    can you offer any advice please

  12. #9
    dui
    dui is offline
    Member
    Join Date
    27-07-2009
    Location
    Yorks
    Posts
    4
    Thanks
    5
    Thanked 3 Times in 2 Posts

    My System: DM800 HD APPLE IMAC PLENTY OF LAPTOPS
    what do you see on screen when you type ./newcs.i686 -C /var/etc/newcs.xml ?

  13. #10
    Specialist Contributor compufunk's Avatar
    Join Date
    07-05-2008
    Location
    NW, Ireland
    Posts
    1568
    Thanks
    145
    Thanked 274 Times in 228 Posts

    My System: DM 600-S, VU+ Duo, Moteck SG2100, Fracarro Penta 85 dish, LG LH3000 42" TV + some computers
    Quote Originally Posted by shanamat View Post
    I've got as far as this:

    can get reader to see card when i insert it also it sees it when i remove it , if i do pcsc.scan it shows everything but cant get the new.cs to start (./newcs.i686 -C /var/etc/newcs.xml
    can you offer any advice please
    Try using the full path instead of ./newcs.i686.

    If you dont know the full path, do the following at the command prompt.
    Code:
    whereis newcs.i686
    
    If that doesn't tell you the full path, try .....
    Code:
    find / | grep newcs.i686
    
    Your command with full path would look something like .......
    Code:
    /bin/newcs.i686 -C /var/etc/newcs.xml
    
    or
    Code:
    /var/bin/newcs.i686 -C /var/etc/newcs.xml
    

  14. The Following 2 Users Say Thank You to compufunk For This Useful Post:

    flatdish2 (01-01-2010), shanamat (24-08-2009)

  15. #11
    Specialist Contributor BombedOne's Avatar
    Join Date
    09-09-2008
    Location
    Republic of Georgia
    Posts
    997
    Thanks
    15
    Thanked 273 Times in 208 Posts

    My System: Covering 30W-105.5E range, two motors, C and Ku band. Various receivers/cards/cams/etc.
    Very interesting and educational thread.

    Will Smargo USB reader work with above mentioned system?

  16. #12
    Member
    Join Date
    28-03-2009
    Location
    scotland
    Posts
    11
    Thanks
    5
    Thanked 0 Times in 0 Posts

    My System: dm600 pvr
    I have tried .newcs,i686 and know where it is , I have put the correct path wher the newcs file is, I have also tried /var/bin/newcs.i686 -c/var/etc/newcs.xml . I've also tried all the other variations that's been suggested, but im still getting this, thanks for all the help so far :
    Attached Thumbnails How To Setup A Linux PC Card Server-card-jpg  

  17. #13
    Member
    Join Date
    23-02-2007
    Location
    england
    Posts
    14
    Thanks
    4
    Thanked 0 Times in 0 Posts

    My System: i have a 7025 dreambox
    Hi very intresting tuotorial i have installed linux debian server i am getting error when i try to start newcs*** can not open shared libararies libcrypto.so.0.9.8 no such files or directories can you help to sort this out please
    thanks

  18. #14
    Dreambox Gimp & Coder B16MCC's Avatar
    Join Date
    16-11-2005
    Location
    /var/tuxbox/config
    Posts
    1333
    Thanks
    84
    Thanked 729 Times in 294 Posts
    Blog Entries
    16

    My System: 2 Dreamboxes.......... --------------------------------------------- --- DM 8000 HD PVR & DM 800 HD --- Motek SG2100 & Triax 80cm Dual LNB ------ Fixed Dish 28e Quad LNB ------- ---- Sky HD Full & 24" Apple iMAC ----


    Creator of the CCCCC - only a true wizard could come up with such a name!!
    This thread is based on Ubuntu desktop 9.04 . Its highly likely you have missing dependencies that are in place as standard in ubuntu.

    ----------------------------------------------------------

    ----------------------------------------------------------
    Check Out My Blog :- Dreambox Utils For Windows

  19. The Following User Says Thank You to B16MCC For This Useful Post:

    shanamat (24-08-2009)

  20. #15
    Regular Member father ted's Avatar
    Join Date
    04-07-2008
    Location
    scotland
    Posts
    76
    Thanks
    38
    Thanked 3 Times in 3 Posts

    My System: just new , i have a 1meter dish, connected to open media twin unit (cable/sat)and this moment am a ladder fiend ,my wife sends meals up to me via pigeon but im loving the learning curve
    Quote Originally Posted by shanamat View Post
    I have tried .newcs,i686 and know where it is , I have put the correct path wher the newcs file is, I have also tried /var/bin/newcs.i686 -c/var/etc/newcs.xml . I've also tried all the other variations that's been suggested, but im still getting this, thanks for all the help so far :
    just clutching at straws here as ive not got it going either ,does anybody think it could be a faulty newcs.i686 file? does anyone have an up to date one so she could try?or let her know where to get it ,B16MCC where did you get yours?

  21. #16
    Member
    Join Date
    28-03-2009
    Location
    scotland
    Posts
    11
    Thanks
    5
    Thanked 0 Times in 0 Posts

    My System: dm600 pvr
    Quote Originally Posted by father ted View Post
    does anybody think it could be a faulty newcs.i686 file? does anyone have an up to date one so she could try?or let her know where to get it ,B16MCC where did you get yours?
    great post now why didn't i think of asking that lol

    so does anyone have one .... please ........ pretty please

  22. #17
    Dreambox Gimp & Coder B16MCC's Avatar
    Join Date
    16-11-2005
    Location
    /var/tuxbox/config
    Posts
    1333
    Thanks
    84
    Thanked 729 Times in 294 Posts
    Blog Entries
    16

    My System: 2 Dreamboxes.......... --------------------------------------------- --- DM 8000 HD PVR & DM 800 HD --- Motek SG2100 & Triax 80cm Dual LNB ------ Fixed Dish 28e Quad LNB ------- ---- Sky HD Full & 24" Apple iMAC ----


    Creator of the CCCCC - only a true wizard could come up with such a name!!

    NewCS 1.67

    Guys & Gals, if you're following this tutorial to the letter you need to use a pcsc compatible build of newcs. That means if you're using the omnikey reader which is a pcsc reader then the file newcs.i686 WILL NOT WORK.

    I use v1.67 the filename is newcs.i686.pcsc but I rename once its in place. I'm pretty sure board rules don't allow me to attach this file.

    ----------------------------------------------------------

    ----------------------------------------------------------
    Check Out My Blog :- Dreambox Utils For Windows

  23. The Following User Says Thank You to B16MCC For This Useful Post:

    shanamat (25-08-2009)

  24. #18
    Specialist Contributor BombedOne's Avatar
    Join Date
    09-09-2008
    Location
    Republic of Georgia
    Posts
    997
    Thanks
    15
    Thanked 273 Times in 208 Posts

    My System: Covering 30W-105.5E range, two motors, C and Ku band. Various receivers/cards/cams/etc.
    As I've read elsewhere, NewCS supports Smargo SmartReader+. This means, it will also work with your setup?

  25. #19
    Dreambox Gimp & Coder B16MCC's Avatar
    Join Date
    16-11-2005
    Location
    /var/tuxbox/config
    Posts
    1333
    Thanks
    84
    Thanked 729 Times in 294 Posts
    Blog Entries
    16

    My System: 2 Dreamboxes.......... --------------------------------------------- --- DM 8000 HD PVR & DM 800 HD --- Motek SG2100 & Triax 80cm Dual LNB ------ Fixed Dish 28e Quad LNB ------- ---- Sky HD Full & 24" Apple iMAC ----


    Creator of the CCCCC - only a true wizard could come up with such a name!!
    Yes I don't see why not, but it depends on what card you want to use. For example, I've tried everything I know to get the new sly uk working in a smargo and nothing works.

    ----------------------------------------------------------

    ----------------------------------------------------------
    Check Out My Blog :- Dreambox Utils For Windows

  26. #20
    Member
    Join Date
    28-03-2009
    Location
    scotland
    Posts
    11
    Thanks
    5
    Thanked 0 Times in 0 Posts

    My System: dm600 pvr
    Hiya B16MCC, I am indeed using the omnikey reader and have been following your excellent tutorial to the letter.

    If board rules don't allow you to attach this file would you be kind enough to pm me a link of where I can get this.

    Many Thanks
    Shanamat

  27. #21
    Member
    Join Date
    25-08-2009
    Location
    England
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    My System: DM8000
    Is anyone else having an issue with the Omnikey where, the ECM times are fantastic to all peers ().... but every now and again (once an hour) the ECM times spike up to over 1.000?

    Has anyone else seen this issue?

    Thanks,

  28. #22
    Specialist Contributor BombedOne's Avatar
    Join Date
    09-09-2008
    Location
    Republic of Georgia
    Posts
    997
    Thanks
    15
    Thanked 273 Times in 208 Posts

    My System: Covering 30W-105.5E range, two motors, C and Ku band. Various receivers/cards/cams/etc.
    For testing purposes, I'd like to try smargo and euro1080 card (Irdeto2), or MTV unlimited one (Conax). Will card update work from any peers? or is it possible to add DVB-S tuner to server, and have card update received from there?

  29. #23
    Member
    Join Date
    25-08-2009
    Location
    England
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    My System: DM8000
    After more testing i think i've found out a little more about my problem,

    It seems that whenever a peer becomes 'active', the ECM times shoot up to anything from 1.000 - 4.000 .... causing a freeze on everyones screen, and a loss of ECMs. This last for about 10seconds.

    Is anyone else seeing this issue?

    Also, anyone have any ideas on why it may be?

    Any help would be moslty appreciated!

    Thanks

    PiEfAcE

  30. #24
    Dreambox Gimp & Coder B16MCC's Avatar
    Join Date
    16-11-2005
    Location
    /var/tuxbox/config
    Posts
    1333
    Thanks
    84
    Thanked 729 Times in 294 Posts
    Blog Entries
    16

    My System: 2 Dreamboxes.......... --------------------------------------------- --- DM 8000 HD PVR & DM 800 HD --- Motek SG2100 & Triax 80cm Dual LNB ------ Fixed Dish 28e Quad LNB ------- ---- Sky HD Full & 24" Apple iMAC ----


    Creator of the CCCCC - only a true wizard could come up with such a name!!
    pieface:- it would seem your problem is a rare one. Could you give a bit more detail please, for example :-

    1. What version of NewCS
    2. What version of CCcam
    3. Are you giving out N or C lines
    4. What reader are you using

    ----------------------------------------------------------

    ----------------------------------------------------------
    Check Out My Blog :- Dreambox Utils For Windows

  31. #25
    Member
    Join Date
    06-08-2009
    Location
    Worcester
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    My System: Azbox Prem and USALS Motor
    1. What version of NewCS
    2. What version of CCcam
    3. Are you giving out N or C lines
    4. What reader are you using

    1. 1.67
    2. 2.0.11
    3. I'm giving peers C lines
    4. Omikey 3132

    It generally happens when someone becomes an active client....

    Seeing it happen quite a lot lately....

    What's the recommended Cccam version to use?

+ Reply to Thread
Page 1 of 8
1 2 3 ... LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Similar Threads

  1. paid server or free or linux?
    By father ted in forum Dreambox Support Forum
    Replies: 10
    Last Post: 04-07-2009, 10:55 AM
  2. help with server setup..
    By bubble69 in forum Dreambox Support Forum
    Replies: 1
    Last Post: 12-09-2005, 08:43 PM
  3. Card sharing server through ICQ!!!
    By ikuwara2000 in forum Cards & Programmers General
    Replies: 1
    Last Post: 25-10-2004, 01:07 AM

Tags for this Thread

Bookmarks

Posting Rules

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Content Relevant URLs by vBSEO 3.5.0 RC2

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297