From MAILER-DAEMON Sun Dec 2 22:16:00 2001 Date: 02 Dec 2001 22:16:00 +0100 From: Mail System Internal Data Subject: DON'T DELETE THIS MESSAGE -- FOLDER INTERNAL DATA Message-ID: <1007327760@limes.convergence.de> X-IMAP: 1007327753 0000000020 Status: RO This text is part of the internal format of your mail folder, and is not a real message. It is created automatically by the mail system software. If deleted, important folder data will be lost, and it will be re-created with the data reset to initial values. From Karsten.Siebert@dataplanet.net Wed Aug 1 13:29:48 2001 Date: Tue, 15 Feb 2000 09:20:50 +0100 From: Karsten Siebert To: linux-dvb@linuxtv.org Subject: Re: tv:yes internet:no Status: O X-Status: X-Keywords: X-UID: 2 In general: A successful login with Cyberlogin does not mean that the satellite link works. The response from the login server is sent via the dial up connection (exceptions: UBCom, BySky, EuroSky clients - there EON routes traffic via satellite (BGP4 advertisements), responses from login server arrive via satellite only). Karsten From ivo@ultra.hr Wed Aug 1 13:29:48 2001 Date: Tue, 15 Feb 2000 11:35:56 +0100 From: Ivo Simicevic To: linux-dvb@linuxtv.org Subject: dvb.o: unresolved symbol memset Status: O X-Status: X-Keywords: X-UID: 3 I am still getting this error while "make insmod" dvb.o: unresolved symbol memset Kernel is 2.2.14 (Debian). Anyone can help? Regards, Ivo. From matjaz.thaler@rd.iskraemeco.si Wed Aug 1 13:29:48 2001 Date: Wed, 16 Feb 2000 23:34:01 +0100 From: Matjaz Thaler To: Ivo Simicevic Cc: linux-dvb@linuxtv.org Subject: Re: dvb.o: unresolved symbol memset Status: O X-Status: X-Keywords: X-UID: 4 [ The following text is in the "iso-8859-2" character set. ] [ Your display is set for the "ISO-8859-1" character set. ] [ Some characters may be displayed incorrectly. ] Ivo Simicevic wrote: > I am still getting this error while "make insmod" > > dvb.o: unresolved symbol memset > > Kernel is 2.2.14 (Debian). Anyone can help? > > Regards, > > Ivo. I got a few replies about this error. The problem is bug in gcc. Upgrade the gcc and recompile the driver. It works fine whit Linux version 2.2.12-20 and gcc version egcs-2.91.66. Matjaz From ivo@ultra.hr Wed Aug 1 13:29:48 2001 Date: Thu, 17 Feb 2000 19:19:38 +0100 From: Ivo Simicevic To: linux-dvb@linuxtv.org Subject: Re: dvb.o: unresolved symbol memset Status: O X-Status: X-Keywords: X-UID: 5 > I am still getting this error while "make insmod" > > dvb.o: unresolved symbol memset > Thanks to all who helped. Changing gcc from 2.7.2.3 to 2.95.2 solved this. From ivo@ultra.hr Wed Aug 1 13:29:48 2001 Date: Thu, 17 Feb 2000 19:23:10 +0100 From: Ivo Simicevic To: linux-dvb@linuxtv.org Subject: /dev/video Status: O X-Status: X-Keywords: X-UID: 6 Should /dev/video device file be already created on the system? I don't have it on mine so I used mknod /dev/video c 81 0 to get it working. Now I can talk with the driver! Maybe it could be checked in "make insmod" or somewhere else. BTW: ctest.cc also doesn't check for return value after "open" call !! Regards, Ivo. From ivo@ultra.hr Wed Aug 1 13:29:48 2001 Date: Fri, 18 Feb 2000 13:43:42 +0100 From: Ivo Simicevic To: linux-dvb@linuxtv.org Subject: Funny problem Status: O X-Status: X-Keywords: X-UID: 7 I have correctly connected to EON by using Cyberlogin. If i try to ping proxy I can see that it's return packets are arriving (by monitoring with tcpdump on dvb0 interface) but ping doesn't get these packets so I have 100% lost statistics. Any reason why kernel would discard those packets and not use it? Regards, Ivo. From ivo@ultra.hr Wed Aug 1 13:29:48 2001 Date: Fri, 18 Feb 2000 13:48:04 +0100 From: Ivo Simicevic To: linux-dvb@linuxtv.org Subject: Re: Funny problem Status: O X-Status: X-Keywords: X-UID: 8 On Fri, Feb 18, 2000 at 01:43:42PM +0100, Ivo Simicevic wrote: > I have correctly connected to EON by using Cyberlogin. > If i try to ping proxy I can see that it's return > packets are arriving (by monitoring with tcpdump on dvb0 > interface) but ping doesn't get these packets so I > have 100% lost statistics. > > Any reason why kernel would discard those packets and > not use it? > > Regards, > > Ivo. > Just solved it ?! If someone else has the same problem use echo "0" >/proc/sys/net/ipv4/conf/dvb0/rp_filter I would like to know why this solves problem, though. Ivo. From rjkm@netcologne.de Wed Aug 1 13:29:48 2001 Date: Fri, 18 Feb 2000 14:22:54 +0100 (CET) From: Ralph Metzler To: Ivo Simicevic Cc: linux-dvb@linuxtv.org Subject: Re: Funny problem Status: O X-Status: X-Keywords: X-UID: 9 Ivo Simicevic writes: > On Fri, Feb 18, 2000 at 01:43:42PM +0100, Ivo Simicevic wrote: > > I have correctly connected to EON by using Cyberlogin. > > If i try to ping proxy I can see that it's return > > packets are arriving (by monitoring with tcpdump on dvb0 > > interface) but ping doesn't get these packets so I > > have 100% lost statistics. > > > > Any reason why kernel would discard those packets and > > not use it? > > > > Regards, > > > > Ivo. > > > > Just solved it ?! > > If someone else has the same problem use > > echo "0" >/proc/sys/net/ipv4/conf/dvb0/rp_filter > > > I would like to know why this solves problem, though. >From linux/Documentation/networking/ip-sysctl.txt: rp_filter - INTEGER 2 - do source validation by reversed path, as specified in RFC1812 Recommended option for single homed hosts and stub network routers. Could cause troubles for complicated (not loop free) networks running a slow unreliable protocol (sort of RIP), or using static routes. 1 - (DEFAULT) Weaker form of RP filtering: drop all the packets that look as sourced at a directly connected interface, but were input from another interface. 0 - No source validation. NOTE: do not disable this option! All BSD derived routing software (sort of gated, routed etc. etc.) is confused by such packets, even if they are valid. When enabled it also prevents ip spoofing in some limited fashion. NOTE: this option is turned on per default only when ip_forwarding is on. For non-forwarding hosts it doesn't make much sense and makes some legal multihoming configurations impossible. Since the EON proxy sends the packets to the interface with the internet connection (ISDN, PPP, ...) but they arrive through the dvb0 device the filter does not let them through. So, you should check if your configuration enables this. README.sb1000 in the same directory states the same problem for a one-way cable modem. Ralph From Karsten.Siebert@dataplanet.net Wed Aug 1 13:29:48 2001 Date: Fri, 18 Feb 2000 14:32:38 +0100 From: Karsten Siebert To: Ivo Simicevic Cc: linux-dvb@linuxtv.org Subject: Re: Funny problem Status: O X-Status: X-Keywords: X-UID: 10 Please have a look at the archive. The login server responds via the terrestrial line (have a look with tcpdump < terr. interface>. If you got a connected, please check the proxy entries. You always should get a response via satellite by pinging the proxy (all of them have default routes via the appropriate transponders: TR113 194.177.32.6 TR114 194.177.32.36 TR115 194.177.32.162 Karsten ----- Original Message ----- From: "Ivo Simicevic" To: Sent: Friday, February 18, 2000 1:43 PM Subject: Funny problem > I have correctly connected to EON by using Cyberlogin. > If i try to ping proxy I can see that it's return > packets are arriving (by monitoring with tcpdump on dvb0 > interface) but ping doesn't get these packets so I > have 100% lost statistics. > > Any reason why kernel would discard those packets and > not use it? > > Regards, > > Ivo. From ivo@ultra.hr Wed Aug 1 13:29:48 2001 Date: Fri, 18 Feb 2000 15:39:02 +0100 From: Ivo Simicevic To: Diego Picciani Cc: linux-dvb@linuxtv.org Subject: Re: Funny problem Status: O X-Status: X-Keywords: X-UID: 11 On Fri, Feb 18, 2000 at 01:28:23PM +0100, Diego Picciani wrote: > Ops, you already solved. > That solve the problem, because there is the anti spoofing protection > enabled > by default in your kernel. So each packet that arrive on an interface with > the > ip address of another, is discarded. > In the begining I have tried to configure dvb0 with the same address as eth0 (my connection to internet) so it should receive packets for itself, right? Spoofing protection protected wrong guy, :-)) it didn't work. BTW : Another problem with your Cyberlogin : After some time I get Connectio LOST and again Connected , but there is no communication with proxy (no download from the sky). If I kill the Cyberlogin and start it again everything works OK once again. Why? Saluti, Ivo. From springer@convergence.de Wed Aug 1 13:29:48 2001 Date: 18 Feb 2000 21:28:53 +0000 From: Martin Springer To: Hans-Henrik Andresen Cc: linux-dvb@linuxtv.org Subject: Re: Want to bye Siemens PCI-DVB Status: O X-Status: X-Keywords: X-UID: 12 Hi, "Hans-Henrik Andresen" writes: > Hi, > > Does anyone want to sell one Siemens PCI-DVB-Card ?? the Siemens Card is sold online by Mascom (see the link at http://linuxtv.org/siemens_dvb.html). Thanks to Matjaz Thaler's patch you can probably make it work with a Hauppauge board as well if this is easier to get in Denmark. If anybody on the list wants to see the thing in action (with DVD) come and visit us on the CeBit in Hannover next week. We are at the convergence boot in Halle 4, Stand A22 - C22. yours Martin -- Martin Springer tel. +49.30.85908840 convergence integrated media gmbh chausseestrasse 8 10115 berlin germany From jydsk@consulting.dk Wed Aug 1 13:29:48 2001 Date: Fri, 18 Feb 2000 23:33:56 +0100 From: Hans-Henrik Andresen To: linux-dvb@linuxtv.org Subject: Re: Want to bye Siemens PCI-DVB Status: O X-Status: X-Keywords: X-UID: 13 > > the Siemens Card is sold online by Mascom (see the link at > http://linuxtv.org/siemens_dvb.html). > The thing is - I'm wondering why siemens can sell it for only 499 DM and mascon/satshop charge 879 DM for the same card. > Thanks to Matjaz Thaler's patch you can probably make it work with a Hauppauge > board as well if this is easier to get in Denmark. > I have had a' Kiss SatDem-card wich is not supported and as I understand that the 'best' / 'most support'ed' card is the siemens, but if other card are working please let me know. (I want to use it for EON-Internet) /Hans-Henrik Andresen From Thomas.Eichenhofer@med.uni-giessen.de Wed Aug 1 13:29:48 2001 Date: Sat, 19 Feb 2000 01:10:03 +0100 From: Thomas Eichenhofer To: linux-dvb@linuxtv.org Subject: Setting up CyberLogin Status: O X-Status: X-Keywords: X-UID: 14 [ Part 1, Text/PLAIN 27 lines. ] [ Unable to print this part. ] Hi all DVB users, i've problems to connect to my ISP (UBCOM) with CyberLogin. After compiling CyberLogin, i changed CyberLogin.ini with my username, password, Ubcom-Server IP (194.177.32.4, working on server-port 6000, acknowledge-port 8000), add my dvb0 MAC. Then i astablish a ISDN connection to UBCOM with ippp0 -> connected. After that i start CyberLogin. -> just getting: connecting...., but never connected.   Did i have to use this "MyIpAddress" command in cyberlogin.ini, before i start CyberLogin (using ippp0 dyn. client IPaddress)? Did i have to setup routes and gateway (how, on what device, where)? I think UBCOM doesn't use a proxy, in earlyer posts everyone was talking about setting up the proxy information, e.g. in Netscape!? When i edit CyberLogin.ini, after i dialed up with ippp0, and add this "MyIpAddress" command, using the dyn IP i get after dialup, i'm just getting a: unknown command "MyIpAddress". What is the correct syntax of "MyIpAddress", is it case sensitive?   I'm using the actually patched version by Matjaz on my TechnoTrend/Galaxis card. gVideo is working like a charme. ;-)   I know, a lot of questions, but i don't get the clue.   Thanx Thomas Eichenhofer  From ivo@ultra.hr Wed Aug 1 13:29:48 2001 Date: Sat, 19 Feb 2000 08:57:18 +0100 From: Ivo Simicevic To: Thomas Eichenhofer Cc: linux-dvb@linuxtv.org Subject: Re: Setting up CyberLogin Status: O X-Status: X-Keywords: X-UID: 15 On Sat, Feb 19, 2000 at 01:10:03AM +0100, Thomas Eichenhofer wrote: > Then i astablish a ISDN connection to UBCOM with ippp0 -> connected. > After that i start CyberLogin. -> just getting: connecting...., but never connected. > > Did i have to use this "MyIpAddress" command in cyberlogin.ini, before i start CyberLogin (using ippp0 dyn. client IPaddress)? > Did i have to setup routes and gateway (how, on what device, where)? > I think UBCOM doesn't use a proxy, in earlyer posts everyone was talking about setting up the proxy information, e.g. in Netscape!? > When i edit CyberLogin.ini, after i dialed up with ippp0, and add this "MyIpAddress" command, using the dyn IP i get after dialup, i'm just getting > a: unknown command "MyIpAddress". > What is the correct syntax of "MyIpAddress", is it case sensitive? > You don't have to enter MyIpAddress (as it is not used by the software) because Cyberlogin will take it from your interface name, so what you have to do is enter corect interface name in Cyberlogin.ini NetDevice = ippp0 and it will take whatever IP address you get from your ISP. You have to use proxy at 194.177.32.36 because Cyberlogin will connect to authorization server at 194.177.32.35 (not .4) by default but that can be changed in the code. Check dynamic IP address you get from your ISP. Maybe it is masqueraded IP and as such it can't be used with EuropeOnLine dvb service (at the moment). Good luck, Ivo. From Thomas.Eichenhofer@med.uni-giessen.de Wed Aug 1 13:29:48 2001 Date: Sat, 19 Feb 2000 13:54:44 +0100 From: Thomas Eichenhofer To: Ivo Simicevic Cc: linux-dvb@linuxtv.org Subject: Re: Setting up CyberLogin for UBCOM Status: O X-Status: X-Keywords: X-UID: 16 Hi Ivo, > You don't have to enter MyIpAddress (as it is not used by the software) > because Cyberlogin will take it from your interface name, so what > you have to do is enter corect interface name in Cyberlogin.ini > NetDevice = ippp0 and it will take whatever IP address you get from your > ISP. Ok. > You have to use proxy at 194.177.32.36 because Cyberlogin will > connect to authorization server at 194.177.32.35 (not .4) by default > but that can be changed in the code. My Sat-ISP UBCOM uses 194.177.32.4, server port 6000/acknowledge port 8000. (i have to use this addresses in win98 and it is working perfet) What is the funktion of this "serverip parameter" in cyberlogin.ini, when i have to change it in the code? If i have to change it in the code, which files i'll have to edit? > Check dynamic IP address you get from your ISP. Maybe it is > masqueraded IP and as such it can't be used with EuropeOnLine dvb > service (at the moment). I'm a little confused, is this CyberLogin Client, the same then LoginClient or FazztClient for EON( this remote station client SW) under Win98? I hope its like LoginClient, i want to have full inet access and not just access to EON downloads. Is there somebody using UBCOM as internet sat provider, and managed a connect? i'm not sure, but i believe there are no other Sat-ISPs in Germany, who uses an Astra connection (Strato uses Eutelsat). Bye Thomas From ivo@ultra.hr Wed Aug 1 13:29:48 2001 Date: Sat, 19 Feb 2000 17:21:56 +0100 From: Ivo Simicevic To: Thomas Eichenhofer Cc: linux-dvb@linuxtv.org Subject: Re: Setting up CyberLogin for UBCOM Status: O X-Status: X-Keywords: X-UID: 17 On Sat, Feb 19, 2000 at 01:54:44PM +0100, Thomas Eichenhofer wrote: > My Sat-ISP UBCOM uses 194.177.32.4, server port 6000/acknowledge port 8000. > (i have to use this addresses in win98 and it is working perfet) Your Sat-ISP is just selling EouropeOnLine acounts so whatever transponder on Astra is available for others should be available for you too. Default transponder that is connected using CyberLogin program is nr.114 and addresses are : authorization server : 194.177.32.35 proxy server : 194.177.32.36 You don't have to enter those addresses anywhere in CyberLogin but just enter proxy address in your browser or whatever program you are using. > What is the funktion of this "serverip parameter" in cyberlogin.ini, when i > have to change it in the code? CyberLogin does two things : 1. Connects to EON authorization server and passes your account info and MAC and IP address 2. Programs your tuner on DVB card on correct frequency, rate, polarization,.. As EON IP addresses are connected with transponder you are tuned to you can't use transponder 114 and server at 194.177.32.4 , .6 as you should use transponder 113 with those addresses. At the moment CyberLogin doesn't support other transponders without manually changing the code. New version will support this. If you want to change it anyway change serverIPaddress in ini file and edit Cyberlogin.c - put # as first character on lines 99 and 100 as on those lines is the function that programs tuner on t114 frequency. Recompile it and run it again. You should now be on t.113 > > Check dynamic IP address you get from your ISP. Maybe it is > > masqueraded IP and as such it can't be used with EuropeOnLine dvb > > service (at the moment). > I'm a little confused, is this CyberLogin Client, the same then LoginClient > or FazztClient for EON( this remote station client SW) under Win98? > I hope its like LoginClient, i want to have full inet access and not just > access to EON downloads. > Yes, you will have full access to internet. Good luck, Ivo. From springer@convergence.de Wed Aug 1 13:29:48 2001 Date: 19 Feb 2000 17:29:31 +0000 From: Martin Springer To: Hans-Henrik Andresen Cc: linux-dvb@linuxtv.org Subject: Re: Want to bye Siemens PCI-DVB Status: O X-Status: X-Keywords: X-UID: 18 "Hans-Henrik Andresen" writes: > The thing is - I'm wondering why siemens can sell it for only 499 DM and > mascon/satshop charge 879 DM for the same card. Maybe because they are crazy. The problem is that Siemens is shipping only in Germany which is a big joke as well in my opinion. Hopefully this situation is going to change once there are more people like you that want to build their own Set-Top Box or want to have a _reliable_ and _stable_ Internet-by-satellite router. > I have had a' Kiss SatDem-card wich is not supported correct > and as I understand that the 'best' / 'most support'ed' card is the siemens, We developed the drivers for the Siemens card. Therefore we encourage every Linux user to buy the Siemens card. We see it as a sign of solidarity to the only company that understood that Open Source Linux drivers are necessary and therefore gave us documentation. > but if other card are working please let me know. (I want to use it for > EON-Internet) The Technotrend card and the Hauppauge card are actually the same boards but have a different firmware. We have not tested our drivers with one of those cards but I am pretty sure that you will have no problems at all if you buy a Hauppauge and apply the patch. yours sincerely Martin Springer -- Martin Springer tel. +49.30.85908840 convergence integrated media gmbh chausseestrasse 8 10115 berlin germany From Karsten.Siebert@dataplanet.net Wed Aug 1 13:29:48 2001 Date: Sat, 26 Feb 2000 17:45:11 +0100 From: Karsten Siebert To: linux-dvb@linuxtv.org Subject: PID filter Status: O X-Status: X-Keywords: X-UID: 19 It looks like that the driver can filter only two data (MPE) PIDs at the same time (counter goes to 32 PIDs). I tried to set a couple of PIDs (5), the system accepts all (SetBitFilter()) but forwards packets only for handle 0 and handle 1 to the driver (tcpdump). If I change for instance a PID previous assigned to handle 3 to handle 2 (PID from handle 2 to becomes PID from handle 3), the system receives data on this PID now - but not on handle 3. MAC address filters were set properly. Any ideas ? Thanks, Karsten From mahadeva@krixor.xy.org Wed Aug 1 13:29:48 2001 Date: Sat, 26 Feb 2000 18:13:00 +0100 From: mahadeva To: linux-dvb@linuxtv.org Subject: New Media PCI Drivers. Status: O X-Status: X-Keywords: X-UID: 20 Is there anyone with a DVB-S card from New Media/Harmonic Lightwaves (www.nmcfast.com/www.harmonicdata.com) ? I have tried with the Siemens drivers, but get the response "no dvb(s)", probably because it's not the same chipset. Could this driver be easaly rewritten for the NMC chipset? Regards. mahadeva Un*x Security Administrator. ---------------------------------- gsm: +46-739-998305 url: home.swipnet.se/mahadeva/ mailto: mahadeva@krixor.xy.org ---------------------------------- "genuine, perfect, crystal pure.."