[speedtouch] Re: modem_run No such file or directory
I forgot a double ampersand there, Ariel... Lines 2 and 3 should read: /usr/sbin/modem_run -k -f /usr/share/speedtouch/mgmt.o && sleep 5 && with the && added on line 2 > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: modem_run No such file or directory
At closer inspection I see an error in your script... As you posted it: #!/bin/bash /usr/sbin/modem_run -k -f /usr/share/speedtouch/mgmt.o sleep 5 && br2684ctl -b -c 0 -a 8.35 && sleep 5 && ifconfig nas0 192.168.0.1 netmask 255.255.255.0 && sleep 20 && /usr/sbin/pppd call speedtch The second line should be split in two, such that the result is: #!/bin/bash /usr/sbin/modem_run -k -f /usr/share/speedtouch/mgmt.o sleep 5 && br2684ctl -b -c 0 -a 8.35 && sleep 5 && ifconfig nas0 192.168.0.1 netmask 255.255.255.0 && sleep 20 && /usr/sbin/pppd call speedtch Ariel Martín Bellio wrote: >Yes, teh modem_run is in another path, then copy to /usr/sbin >But now, when boot: > >boot.log > >Jun 8 17:18:31 localhost dial: usage: modem_run [OPTION]... -f firmware >Jun 8 17:18:31 localhost dial: modem_run version 1.3.1 >Jun 8 17:18:31 localhost dial: Mandatory: >Jun 8 17:18:31 localhost dial: -f firmware : firmware filename to upload >(mandatory) >Jun 8 17:18:31 localhost dial: This file is scanned to >extract both boot and main part of >Jun 8 17:18:31 localhost dial: firmware >Jun 8 17:18:31 localhost dial: Options: >Jun 8 17:18:31 localhost dial: -a bootcode : bootcode filename to upload >(optional) >Jun 8 17:18:31 localhost dial: This file is scanned to >extract the boot code of the modem >Jun 8 17:18:31 localhost dial: -b : enable software buffering >mode >Jun 8 17:18:31 localhost dial: -d device: defines the device to use >Jun 8 17:18:31 localhost dial: The -a option overides >the -f option for the boot code part >Jun 8 17:18:31 localhost dial: -i seconds : seconds between each line >state testing (default 10s) >Jun 8 17:18:31 localhost dial: -k : using the kernel mode >driver >Jun 8 17:18:31 localhost dial: -n number: number of firmware loading >tries before it is considered >Jun 8 17:18:31 localhost dial: failure >Jun 8 17:18:31 localhost dial: -r number: forces a specific modem >revision (0 to 4, default is autodetection) >Jun 8 17:18:31 localhost dial: -s : skip the first 512 bytes >read >Jun 8 17:18:31 localhost dial: -t seconds : synchronization timeout >(default 120s) >Jun 8 17:18:31 localhost dial: After the timeout expires, >the main process quits but the >Jun 8 17:18:31 localhost dial: monitoring daemon remains >reporting the line state >Jun 8 17:18:31 localhost dial: -v : verbose level [0-2] >Jun 8 17:18:31 localhost dial: --help : this message >Jun 8 17:18:31 localhost rc: Iniciando dial: failed > >- Original Message - >From: "Ok Overbeek (mz)" <[EMAIL PROTECTED]> >To: >Sent: Wednesday, June 08, 2005 9:37 AM >Subject: [speedtouch] Re: modem_run No such file or directory > > > >Did you run any 'install'-script? >If so, than there should be a file named 'modem_run' somewhere. >Maybe it's stuck in some other directory find it, copy it to /usr/sbin, >make it executable, and try again. > >Ariel Martín Bellio wrote: > > > >>No. in the directory /usr/sbin is no a file named modem_run. But script >> >> >to > > >>initiate the service say this: >> >>#!/bin/bash >>/usr/sbin/modem_run -k -f /usr/share/speedtouch/mgmt.o sleep 5 && >>br2684ctl -b -c 0 -a 8.35 && >>sleep 5 && >>ifconfig nas0 192.168.0.1 netmask 255.255.255.0 && >>sleep 20 && >>/usr/sbin/pppd call speedtch >> >>You know that there to modify? >> >>- Original Message - >>From: "Ok Overbeek (mz)" <[EMAIL PROTECTED]> >>To: >>Sent: Wednesday, June 08, 2005 9:09 AM >>Subject: [speedtouch] Re: modem_run No such file or directory >> >> >> >>'modem_run' should be an executable(!) file in the directory /usr/sbin. >>Maybe you have a file 'modem_run' at that location, but not executable >>as yet. >> >>pls have a look >> >>Ok >> >>Ariel Martín Bellio wrote: >> >> >> >> >> >>>It can be a directory or a file. Is necessary to create a empty >>> >>> >directory. > > >>>empty file? in /usr/sbin/modem_run ? >>> >>>- Original Message - >>>From: "Ok Overbeek (mz)" <[EMAIL PROTECTED]> >>>To: >>>Sent: Wednesday, Ju
[speedtouch] Re: modem_run No such file or directory
You did NOT change the original script, did you? It still should read (in your case): /usr/sbin/modem_run -k -f /usr/share/speedtouch/mgmt.o .. Ariel Martín Bellio wrote: >Yes, teh modem_run is in another path, then copy to /usr/sbin >But now, when boot: > >boot.log > >Jun 8 17:18:31 localhost dial: usage: modem_run [OPTION]... -f firmware >Jun 8 17:18:31 localhost dial: modem_run version 1.3.1 >Jun 8 17:18:31 localhost dial: Mandatory: >Jun 8 17:18:31 localhost dial: -f firmware : firmware filename to upload >(mandatory) >Jun 8 17:18:31 localhost dial: This file is scanned to >extract both boot and main part of >Jun 8 17:18:31 localhost dial: firmware >Jun 8 17:18:31 localhost dial: Options: >Jun 8 17:18:31 localhost dial: -a bootcode : bootcode filename to upload >(optional) >Jun 8 17:18:31 localhost dial: This file is scanned to >extract the boot code of the modem >Jun 8 17:18:31 localhost dial: -b : enable software buffering >mode >Jun 8 17:18:31 localhost dial: -d device: defines the device to use >Jun 8 17:18:31 localhost dial: The -a option overides >the -f option for the boot code part >Jun 8 17:18:31 localhost dial: -i seconds : seconds between each line >state testing (default 10s) >Jun 8 17:18:31 localhost dial: -k : using the kernel mode >driver >Jun 8 17:18:31 localhost dial: -n number: number of firmware loading >tries before it is considered >Jun 8 17:18:31 localhost dial: failure >Jun 8 17:18:31 localhost dial: -r number: forces a specific modem >revision (0 to 4, default is autodetection) >Jun 8 17:18:31 localhost dial: -s : skip the first 512 bytes >read >Jun 8 17:18:31 localhost dial: -t seconds : synchronization timeout >(default 120s) >Jun 8 17:18:31 localhost dial: After the timeout expires, >the main process quits but the >Jun 8 17:18:31 localhost dial: monitoring daemon remains >reporting the line state >Jun 8 17:18:31 localhost dial: -v : verbose level [0-2] >Jun 8 17:18:31 localhost dial: --help : this message >Jun 8 17:18:31 localhost rc: Iniciando dial: failed > >- Original Message - >From: "Ok Overbeek (mz)" <[EMAIL PROTECTED]> >To: >Sent: Wednesday, June 08, 2005 9:37 AM >Subject: [speedtouch] Re: modem_run No such file or directory > > > >Did you run any 'install'-script? >If so, than there should be a file named 'modem_run' somewhere. >Maybe it's stuck in some other directory find it, copy it to /usr/sbin, >make it executable, and try again. > >Ariel Martín Bellio wrote: > > > >>No. in the directory /usr/sbin is no a file named modem_run. But script >> >> >to > > >>initiate the service say this: >> >>#!/bin/bash >>/usr/sbin/modem_run -k -f /usr/share/speedtouch/mgmt.o sleep 5 && >>br2684ctl -b -c 0 -a 8.35 && >>sleep 5 && >>ifconfig nas0 192.168.0.1 netmask 255.255.255.0 && >>sleep 20 && >>/usr/sbin/pppd call speedtch >> >>You know that there to modify? >> >>- Original Message - >>From: "Ok Overbeek (mz)" <[EMAIL PROTECTED]> >>To: >>Sent: Wednesday, June 08, 2005 9:09 AM >>Subject: [speedtouch] Re: modem_run No such file or directory >> >> >> >>'modem_run' should be an executable(!) file in the directory /usr/sbin. >>Maybe you have a file 'modem_run' at that location, but not executable >>as yet. >> >>pls have a look >> >>Ok >> >>Ariel Martín Bellio wrote: >> >> >> >> >> >>>It can be a directory or a file. Is necessary to create a empty >>> >>> >directory. > > >>>empty file? in /usr/sbin/modem_run ? >>> >>>- Original Message - >>>From: "Ok Overbeek (mz)" <[EMAIL PROTECTED]> >>>To: >>>Sent: Wednesday, June 08, 2005 8:57 AM >>>Subject: [speedtouch] Re: modem_run No such file or directory >>> >>> >>> >>> >>> >>>Ariel Martín Bellio wrote: >>> >>> >>> >>> >>> >>> >>> >>>>Jun 8 07:53:58 localhost dial: /etc/rc5.d/S96dial: line 2: >>>> >>>> >>>> >>>> >>>> >>>> >>>/usr/sbin/modem_run: No such file or directory >>>
[speedtouch] Re: modem_run No such file or directory
Did you run any 'install'-script? If so, than there should be a file named 'modem_run' somewhere. Maybe it's stuck in some other directory find it, copy it to /usr/sbin, make it executable, and try again. Ariel Martín Bellio wrote: >No. in the directory /usr/sbin is no a file named modem_run. But script to >initiate the service say this: > >#!/bin/bash >/usr/sbin/modem_run -k -f /usr/share/speedtouch/mgmt.o sleep 5 && >br2684ctl -b -c 0 -a 8.35 && >sleep 5 && >ifconfig nas0 192.168.0.1 netmask 255.255.255.0 && >sleep 20 && >/usr/sbin/pppd call speedtch > >You know that there to modify? > >- Original Message - >From: "Ok Overbeek (mz)" <[EMAIL PROTECTED]> >To: >Sent: Wednesday, June 08, 2005 9:09 AM >Subject: [speedtouch] Re: modem_run No such file or directory > > > >'modem_run' should be an executable(!) file in the directory /usr/sbin. >Maybe you have a file 'modem_run' at that location, but not executable >as yet. > >pls have a look > >Ok > >Ariel Martín Bellio wrote: > > > >>It can be a directory or a file. Is necessary to create a empty directory. >>empty file? in /usr/sbin/modem_run ? >> >>- Original Message - >>From: "Ok Overbeek (mz)" <[EMAIL PROTECTED]> >>To: >>Sent: Wednesday, June 08, 2005 8:57 AM >>Subject: [speedtouch] Re: modem_run No such file or directory >> >> >> >> >> >>Ariel Martín Bellio wrote: >> >> >> >> >> >>>Jun 8 07:53:58 localhost dial: /etc/rc5.d/S96dial: line 2: >>> >>> >>> >>> >>/usr/sbin/modem_run: No such file or directory >> >> >> >> >>> >>> >>> >>Hi Ariel! >> >>What do YOU think it would mean? >> >>Liste de diffusion modem ALCATEL SpeedTouch USB >>Pour se désinscrire : >>mailto:[EMAIL PROTECTED] >> >> >> >> >> >> >> >>___ >>1GB gratis, Antivirus y Antispam >>Correo Yahoo!, el mejor correo web del mundo >>http://correo.yahoo.com.ar >> >> >>Liste de diffusion modem ALCATEL SpeedTouch USB >>Pour se désinscrire : >> >> >mailto:[EMAIL PROTECTED] > > >> >> >> >> >> > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : >mailto:[EMAIL PROTECTED] > > > > >___ >A tu celular ¿no le falta algo? >Usá Yahoo! Messenger y Correo Yahoo! en tu teléfono celular. >Más información en http://movil.yahoo.com.ar > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: modem_run No such file or directory
'modem_run' should be an executable(!) file in the directory /usr/sbin. Maybe you have a file 'modem_run' at that location, but not executable as yet. pls have a look Ok Ariel Martín Bellio wrote: >It can be a directory or a file. Is necessary to create a empty directory. >empty file? in /usr/sbin/modem_run ? > >- Original Message - >From: "Ok Overbeek (mz)" <[EMAIL PROTECTED]> >To: >Sent: Wednesday, June 08, 2005 8:57 AM >Subject: [speedtouch] Re: modem_run No such file or directory > > > > > >Ariel Martín Bellio wrote: > > > >>Jun 8 07:53:58 localhost dial: /etc/rc5.d/S96dial: line 2: >> >> >/usr/sbin/modem_run: No such file or directory > > >> >> >> > >Hi Ariel! > >What do YOU think it would mean? > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : >mailto:[EMAIL PROTECTED] > > > > > > > >___ >1GB gratis, Antivirus y Antispam >Correo Yahoo!, el mejor correo web del mundo >http://correo.yahoo.com.ar > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: modem_run No such file or directory
Ariel Martín Bellio wrote: >Jun 8 07:53:58 localhost dial: /etc/rc5.d/S96dial: line 2: >/usr/sbin/modem_run: No such file or directory > > > Hi Ariel! What do YOU think it would mean? Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Alcatel USB - Again!
Rykel wrote: >I would think that allowing the kernel to load my modem would boost >performance, no? > > > > There is no noticeable performance 'boost' between the two variants... Bye Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: SpeedTouch USB lockups
There is a 'congestion bit' and a CLP-bit. The congestion bit is switched on in case of network overload, the CLP-bit means real trouble: data has been truncated (clipped). As far as I remember, there was someone else some months ago on this list, who also had continuous CLP-bits; I do not recall, whether he had his problems solved... Anyhow, this might lead to something; I do not remember, whether CLP-bit frames are dropped or not (or if they should be dropped). Obviously, however, Windows can handle these frames properly, if that's where the errot lies. And if so (and the Win-driver is indeed dropping a lot of frames), then you, Andrej, will never be able reach your maximum download-throughput under Windows. So: could you download some biggy file and see if the download speed meets its max? Ok Andrej Kristofic wrote: >Just one note. I noticed pppoa3 complains about having CLP bit on in ATM >cells. If I recall correctly, CLP means cell loss priority and should be >set under exceptional circumstances e.g. line congestion. The posts >about this issue in this mailing list suggest that this can be caused by >poor line quality. However, the kernel driver don't say a word about >this. Then again CLP bit does not necessarily mean an error, it just >says that the cell can be discarded if it is needed. Maybe it's just >(bad) habit of my provider to set this bit on. But I suppose it has to >do nothing with my problem, because under Win98 everything works >correctly. Or I'm wrong ? > >Bye > >Andrej > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: SpeedTouch USB lockups
Andrej! Sorry for breaking in in an interesting discussion... Am I right in stating, that - it works perfectly under Windows (both files)? - you get trouble under Linux (Speedtouch kernel setup)? If so, it smells of some well hidden software flaw on the Linux-side... I know it means some work, but it would be interesting to know, whether the Speedtouch user-mode setup will do its work without errors. Do you have spare time to try that? Or did you already? Bye Ok Andrej Kristofic wrote: >Gilles Espinasse wrote: > > > >>Selon Andrej Kristofic <[EMAIL PROTECTED]>: >> >> >> >> >>>I made a few more experiments. Created two 2MB files, one containg ones >>>(i.e. FF) and one with zeros. I was able to download 'zeros' file with >>>no problems, but downloading 'ones' file reliably crashed the connection. >>> >>> >>> >>> >>> >>Is it possible to have access to the 2 files? >>I want to test with other drivers (derivated from speedtch or very differents). >> >> >> >> > >The files can be found on my school server: > >http://decef.elf.stuba.sk/~ak99387/zeros.bin (2MB) padded with 0x00 bytes >http://decef.elf.stuba.sk/~ak99387/ones.bin (2MB) padded with 0xFF bytes > >Andrej > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: speedtouch 530
Salvatore! Most probably you will be an unlucky Linux-user, as I think there is no one who ever created software to talk to a 530 over the USB-link. Obviously it works under Windows as you are using Outlook; or am I wrong there? Maybe someone else on the list can tell you where to go... Best of luck Ok Salvatore Famoso wrote: >Hi Ok >the thing is that I also get by my provider phone through my adsl line, >phone which is voice over ip. so they give you a device which you connect >to the Ethernet port of the 530.as for the computer, you have to connect >through the usb port. they give you the vpi/vci, and you have to connect >through ppoatm. The 530 is detected as a only usb-adsl modem, and can't use >it to connect. and connecting through Ethernet(if I managed to do this) , >would mean that I have no phone > >-Original Message- >From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On >Behalf Of Ok Overbeek (mz) >Sent: Saturday, August 28, 2004 12:21 PM >To: [EMAIL PROTECTED] >Subject: [speedtouch] Re: speedtouch 530 > > >Hi Salvatore! > >As far as I know, the 530 possesses an Ethernet-connector, and thus will not >be connected by USB. So there is no need for user- and/or kernel-drivers >from >this mailing list. > >Installation should be straightforward (supposing you can read the manual): >- connect your machine to the modem via ethernet >- connect the modem to your ADSL-line >- configure the modem > >and off you go! > >Ciao >Ok O. > > > > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: speedtouch 530
Hi Salvatore! As far as I know, the 530 possesses an Ethernet-connector, and thus will not be connected by USB. So there is no need for user- and/or kernel-drivers from this mailing list. Installation should be straightforward (supposing you can read the manual): - connect your machine to the modem via ethernet - connect the modem to your ADSL-line - configure the modem and off you go! Ciao Ok O. Salvatore Famoso wrote: >Hi. I have the speedtouch 530, and have been trying for a few days to >connect with it to my adsl provider, so far without any results. Is the >"speedtouch usb" driver appropriate for the 530 model? >I have suse 9.1, the 2.6.5-104 kernel, amd athlon xp 1600+. >I've tried everything I saw, but didn't manage to do anything. If there's >any idea on how I could install the modem and use it to connect to the >internet I would be very thankful to hear it. > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Connection speed questions
Hi Frédéric! The speed you get reported is the result of a negotiation between your modem and the ISP-side. If they say that the speed is 1024 kbit/s downwards, you would expect to see that as the result of modem_run (which version are you using?). Search the mail-archive with the string 'kbit/s' to see a lot of different speeds... What does Windows (yack!) report as the connect-speed? Did you already compare? Bye Ok RUAUDEL Frédéric wrote: >Hi folks, > > I would like to have some details regarding the ADSL line speed. > >When I start my connection, modem_run give me this log after loading the >firmware : > >modem_run[26470]: ADSL line is up (608 kbit/s down | 160 kbit/s up) > >So my questions are : > >- Are they reliable values ? (I mean are they calculated values or it is >something negociated with the other end) >- Is anybody here have other values (espacially somebody with a 1024k >connection) ? > >It's because I had a 512k line and I switched last week to a 1024k one >and these values didn't change since then despite the fact that my >provider said to me it was okay. So I would like to know if I can make >some reclamations to my provider based on these values. > >thanks in advance for your help ! > >have a nice day, > >Fred > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Modem_Run Ver 1.2
Hi Mark! How about switching the 'a' and 'f' switches in the modem_run-call, like: modem_run -v 1 -t 90 -n 4 -a /home/mhuggins/bin/firmware.ZZZLP1.eni -f /home/mhuggins/bin/boot.ZZZLP2.eni instead of your: modem_run -v 1 -t 90 -n 4 -f /home/mhuggins/bin/firmware.ZZZLP1.eni -a /home/mhuggins/bin/boot.ZZZLP2.eni Doesn't the help tell you that? Ok Mark Huggins wrote: >I can not load the Speedtouch firmware. I'm running SuSe 9.0 and have >followed all latest advice from mail archive with no success. > >I have tried the following firmware files:- > >Alcaudsl.sys >Firmware.bin >KQD6P1.eni and KQD6P2.eni >ZZZLP1.eni and ZZZLP2.eni > >When modem_run is executed the /var/log/messages reports:- > >Response to command line:- > >modem_run -v 1 -t 90 -n 4 -f /home/mhuggins/bin/firmware.ZZZLP1.eni -a >/home/mhuggins/bin/boot.ZZZLP2.eni > >May 27 11:06:47 linux modem_run[2746]: modem_run version 1.2 started by >root uid 0 >May 27 11:06:47 linux modem_run[2746]: Found SpeedTouch USB modem >May 27 11:06:47 linux modem_run[2746]: Modem revision: 0400 >May 27 11:06:47 linux modem_run[2746]: Best offset 0 with >probability 87% >May 27 11:06:47 linux modem_run[2746]: Best offset 0 with >probability 87% >May 27 11:06:47 linux modem_run[2746]: Unable to locate firmware in >/home/mhuggins/bin/firmware.ZZZLP1.eni > >Also I can not seem to get a response from the verbose option?. > >Speedtouch-Doctor:- > >ux:/home/mhuggins/bin/speedtouch-1.2/doc-linux/doctor # >./speedtouch-doctor.sh >You are using linux kernel version 2.4.21-99-athlon >Support for USB is OK >Preliminary USB device filesystem is OK >UHCI support is OK >OHCI support is missing... trying to load >/lib/modules/2.4.21-99-athlon/kernel/drivers/usb/host/usb-ohci.o: >init_module: No such device >Hint: insmod errors can be caused by incorrect module parameters, >including invalid IO or IRQ parameters. > You may find more information in syslog or the output from dmesg >/lib/modules/2.4.21-99-athlon/kernel/drivers/usb/host/usb-ohci.o: insmod >/lib/modules/2.4.21-9 >9-athlon/kernel/drivers/usb/host/usb-ohci.o failed >/lib/modules/2.4.21-99-athlon/kernel/drivers/usb/host/usb-ohci.o: insmod >usb-ohci failed >OHCI support: failed to load >/dev/ppp is OK >HDLC support is OK >HDLC support is OK (no bug) >pppd version 2.4.1 >You are using pppd version (untested) >You have an /etc/ppp/options file. Options in this file may conflict >with >options from /etc/ppp/peers/adsl. We suggest to remove this file or make >a >backup copy. >No existing PPP connection... trying to make one (please wait) >Couldn't get channel number: Input/output error >ioctl(PPPIOCGFLAGS): Bad file descriptor >Cannot make a PPP connection: Fatal > > >Any ideas?. Thanks. > >Mark Huggins. > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Installing Speedtouch 330 with Mandrake 10.0: where is mgmt.o?
Hi Mike! Solve your problem(s) by searching the mail-archive by using 'silver' as argument.that should do it. Ciao Ok mike nash wrote: >For the past couple of months I've been using a silver Speedtouch 330 USB modem on a >PC running Windows XP without any problems. A couple of days ago I decided to replace >Windows with Mandrake Linux 10.0 Community version. When trying to install the modem >the install procedure told me that I needed to load the Alcatel microcode and that I >had to supply a file "mgmt.o". I couldn't find this file, so I found and downloaded >the "speedtouch-20011007.tar.gz" file as the install procedure told me to. Opened it >up. Still no mgmt.o. Benoit's instructions said that the microcode was in the form of >two files: mgmt.o and alcaudsl.sys. Although I no longer had a Windows partition on >the disk, I managed to find the alcaudsl.sys file on the CD-ROM which came with the >modem. I followed the instructions to load alcaudsl.sys using modem_run and it >appeared to work; but when I tried to actually access the Internet, it still >complained that I needed the Alcatel microcode and I had to supply mg m > t.o. I haven't managed to find this mgmt.o file anywhere. Question 1: where can I > get hold of it? Question 2: is that all I need to solve the problem, or is there > something else lurking behind it? > >Mike. >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Speedtouch firmware compatible with driver v1.2?
Hi Stephen! pppoa2 has never been updated in order to take out the errors that you mention. pppoa3, however, is 'flawless' in that respect. Do you have a specific reason for not using pppoa3? Ok Stephen Day wrote: >Please can someone provide me with a copy of some firmware that works well >with a SpeedTouch 330 modem. I've tried 3/4 different versions and each >of them gives me hundreds the following errors: > >pppoa2[26434]: Cell had wrong VPI(16)/VCI(4224) (OAM?) PTI=0x05 >pppoa2[26434]: CRC error in an AAL5 frame > >and a much reduced download speed (100-200 kbps). > >I have read on this list that this is due to a firmware incompatibility >with the speedtouch driver (I'm using version 1.2) but I can't find a >firmware version that doesn't give me these errors. I'm pretty sure it's >not a line quality problem because my friend's SpeedTouch USB modem works >flawlessly on my line using mgmt.o and achieves up-to 940 kbps (download) > >The drivers are running under OpenBSD 3.1. > >Any help would be greatly appreciated. > >Steve > > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: modem_run disagrees with firmware images
Come on, you're still using KQD6P1/2; read Gilles's message !! Ciao Ok Erno Kuusela wrote: >hello, > >On Wed, 21 Apr 2004, Ok Overbeek (mz) wrote: > >| On 04/03/04 10:42, Gilles Espinasse wrote: You need modem_run from the V1.2 >| driver and use -a /your/path/ZZZLP1.eni -f /your/path/ZZZLP2.eni options for >| modem_run > >no go, > >Apr 22 16:33:33 localhost modem_run[2342]: modem_run version 1.2 started by secpelle >uid 0 >Apr 22 16:33:33 localhost modem_run[2342]: Found SpeedTouch USB modem >Apr 22 16:33:33 localhost modem_run[2342]: Modem revision: 0400 >Apr 22 16:33:33 localhost kernel: usb 2-1: usbfs: interface 1 claimed while >'modem_run' sets config #1 >Apr 22 16:33:33 localhost kernel: usb 2-1: usbfs: interface 2 claimed while >'modem_run' sets config #1 >Apr 22 16:33:33 localhost modem_run[2342]: Best offset 0 with probability 100% >Apr 22 16:33:33 localhost modem_run[2342]: Best offset983 with probability 100% >Apr 22 16:33:33 localhost modem_run[2342]: Firmware info (CRC:0xd80bf9f7, Size:991, >Checked: Yes, Alcatel/Thomson Boot block (old)) >Apr 22 16:33:33 localhost modem_run[2342]: Best offset 0 with probability 75% >Apr 22 16:33:33 localhost modem_run[2342]: Unable to locate firmware in >/usr/local/lib/speedtouch/KQD6P2.eni > >other ideas?-) > > -- erno > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: modem_run disagrees with firmware images
On 04/03/04 10:42, Gilles Espinasse wrote: You need modem_run from the V1.2 driver and use -a /your/path/ZZZLP1.eni -f /your/path/ZZZLP2.eni options for modem_run Erno Kuusela wrote: hello, i've been trying to get a thomson speedtouch 330 usb to work. # modem_run -v 2 -f /usr/local/lib/speedtouch/KQD6P2.eni gets meApr 21 17:50:56 localhost modem_run[7518]: Found SpeedTouch USB modem Apr 21 17:50:56 localhost modem_run[7518]: Modem revision: 0400 Apr 21 17:50:56 localhost kernel: usb 2-1: usbfs: interface 1 claimed while 'modem_run' sets config #1 Apr 21 17:50:56 localhost kernel: usb 2-1: usbfs: interface 2 claimed while 'modem_run' sets config #1 Apr 21 17:50:57 localhost modem_run[7518]: Best offset 0 with probability 87% Apr 21 17:50:57 localhostmodem_run[7518]: Best offset 0 with probability 75% Apr 21 17:50:57 localhost modem_run[7518]: Unable to locate firmware in /usr/local/lib/speedtouch/KQD6P2.eni and firmware.bin file gets me Apr 21 17:51:53 localhost modem_run[7522]: Found SpeedTouch USB modem Apr 21 17:51:53 localhost modem_run[7522]: Modem revision: 0400 Apr 21 17:51:53 localhost kernel: usb 2-1: usbfs: interface 1 claimed while 'modem_run' sets config #1 Apr 21 17:51:53 localhost kernel: usb 2-1: usbfs: interface 2 claimed while 'modem_run' sets config #1 Apr 21 17:51:53 localhost modem_run[7522]: Best offset 0 with probability 87% Apr 21 17:51:53 localhostmodem_run[7522]: Best offset 0 with probability 75% Apr 21 17:51:53 localhost modem_run[7522]: Unable to locate firmware in /tmp/firmware.bin if i add -a, i get a match on the microcode file, but the firmware itself still doesn't load: Apr 21 17:52:52 localhost modem_run[7524]: Found SpeedTouch USBmodem Apr 21 17:52:52 localhost modem_run[7524]: Modem revision: 0400 Apr 21 17:52:52 localhost kernel: usb 2-1: usbfs: interface 1 claimed while 'modem_run' sets config #1 Apr 21 17:52:52 localhost kernel: usb 2-1: usbfs: interface 2 claimed while 'modem_run' sets config #1 Apr 21 17:52:52 localhost modem_run[7524]: Best offset 0 with probability 100% Apr 21 17:52:52 localhost modem_run[7524]: Best offset 875 with probability 100% Apr21 17:52:52 localhost modem_run[7524]: Firmware info (CRC:0xd3e33990, Size:883, Checked: Yes, Ian's Free Software Boot block) Apr 21 17:52:52 localhost modem_run[7524]: Best offset 0 with probability 75% Apr 21 17:52:52localhost modem_run[7524]: Unable to locate firmware in /tmp/firmware.bin i've tried the modem_run from the sid package, the source tarball at http://speedtouch.sourceforge.net/index.php?/download.en.html[1] and the cvs version from that page. then i tried poking firmware.c like so, @@ -498,7 +498,8 @@ best_offset, (100*best_match)/pattern_length); #endif - return((best_match == pattern_length)?best_offset:-1); + //return((best_match== pattern_length)?best_offset:-1); + return best_offset;} void which resulted in some new log messages but did not get mevery far... Apr 21 17:39:00 localhost kernel: usb 2-1: usbfs: interface 1 claimed while 'modem_run' sets config #1 Apr 21 17:39:00 localhost kernel: usb 2-1: usbfs: interface 2 claimed while 'modem_run' sets config #1 Apr 21 17:39:00 localhost modem_run[3109]: Best offset 0 with probability 87% Apr 2117:39:00 localhost modem_run[3109]: Best offset 671645 with probability 87%Apr 21 17:39:00 localhost modem_run[3109]: Firmware info (CRC:0x3b4a5854, Size:671653, Checked: Yes, Unknown revision - Please report the CRC and length with the revision number to [EMAIL PROTECTED]) Apr 21 17:39:00 localhost modem_run[3109]: Best offset 0 with probability 75% Apr 21 17:39:00localhost modem_run[3109]: Best offset 671645 with probability 75% Apr 21 17:39:00 localhost modem_run[3109]: Firmware info (CRC:0x3b4a5854, Size:671653, Checked: Yes, 1.6.1 - MacOSX - Win32(1.0.1800)) Apr 21 17:39:02 localhost kernel: usb 2-1: bulk timeout on ep5in Apr 21 17:39:02 localhost kernel: usbfs: USBDEVFS_BULK failed dev 7 ep 0x85 len 512 ret -110 Apr 21 17:39:04 localhost modem_run[3109]: BLOCK1 : 671653 bytes uploaded : OK Apr 21 17:39:06 localhost kernel: usb 2-1: bulk timeout on ep5in Apr 21 17:39:06 localhost kernel: usbfs: USBDEVFS_BULK failed dev 7 ep 0x85 len 512 ret -110 Apr 21 17:39:06 localhost modem_run[3109]: BLOCK2 Apr 21 17:39:06 localhost modem_run[3109]: Retrying to upload microcode (#0) Apr 21 17:39:08 localhost kernel: usb 2-1: bulk timeout on ep5in Apr 21 17:39:08 localhost kernel: usbfs: USBDEVFS_BULK failed dev 7 ep 0x85 len 512 ret -110 Apr 21 17:39:10 localhost kernel: usb 2-1: bulk timeout on ep5out Apr 21 17:39:10 localhost kernel: usbfs: USBDEVFS_BULK failed dev 7 ep 0x5 len 4096 ret -110 Apr 21 17:39:10 localhost modem_run[3109]: BLOCK1 Apr 21 17:39:10 localhost modem_run[3109]: Retrying to upload microcode (#1) Apr 21 17:39:12 localhost kernel: usb 2-1: bulk timeout on ep5in Apr 21 17:39:12 localhost kernel: usbfs: USBDEVFS_BULK failed dev 7 ep 0x85 len 512 ret -110 Apr 21 17:39:14 localhost kernel: usb 2-1: bulk timeout on ep5out Apr 21 17:39:14 localh
[speedtouch] Re: Does Speedtouch work with Kernel 2.6.5?
James! What type of modem? What version(s) of software? Please state clearly. Ciao Ok Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: config-requests problem
Come on, Nacho! You're nearly there. Possible reasons for your trouble: - did you use the correct vci/vpi couple? - did you enter valid values in chap-/pap-secrets? You could also paste your 'adsl'-file into your reply, plus your ppp-options file Ciao Ok nacho wrote: Dear Archie, Thanks a lot for your message. It is the first timethat I have been able to download the firmware :-).!!! But I need a new push. You or Giles could help me. I am just about to sell the modem and buy arouter The messages generated are Apr 18 17:20:07 localhost kernel: usb_control/bulk_msg: timeout Apr 18 17:20:07 localhost kernel: usbdevfs: USBDEVFS_BULK failed dev 2 ep 0x85 len 512 ret -110 Apr 18 17:20:07 localhostmodem_run[5955]: BLOCK1 : 935 bytes uploaded : OK Apr 18 17:20:07 localhost modem_run[5955]: BLOCK2 : 511 bytes downloaded : OK Apr 18 17:20:09localhost modem_run[5955]: BLOCK3 : 775509 bytes uploaded : OK Apr 1817:20:09 localhost modem_run[5955]: BLOCK4 : 511 bytes downloaded : OK Apr 18 17:20:10 localhost modem_run[5955]: Modem reference : 35720370.. Apr 18 17:20:40 localhost modem_run[5955]: ADSL synchronization has been obtainedApr 18 17:20:40 localhost modem_run[5955]: ADSL line is up (256 kbit/s down | 128 kbit/s up) Apr 18 17:21:52 localhost kernel: CSLIP: code copyright 1989 Regents of the University of California Apr 18 17:21:52 localhost kernel: PPP generic driver version 2.4.2 Apr 18 17:21:52 localhost pppd[5959]: pppd 2.4.1 started by root, uid 0 Apr 18 17:21:52 localhost pppd[5959]: Using interface ppp0 Apr 18 17:21:52 localhost pppd[5959]: Connect: ppp0 <--> /dev/pts/1 Apr 18 17:21:52 localhost /etc/hotplug/net.agent: assuming ppp0 is already up Apr 18 17:21:52 localhostpppd[5959]: Modem hangup Apr 18 17:21:52 localhost pppd[5959]: Connection terminated. Apr 18 17:21:52 localhost /etc/hotplug/net.agent: NET unregister event not supported Apr 18 17:21:52 localhost /etc/hotplug/net.agent: assuming ppp0 is already up Apr 18 17:21:52 localhostpppd[5959]: Using interface ppp0 Apr 18 17:21:52 localhost pppd[5959]: Connect: ppp0 <--> /dev/pts/1 Apr 18 17:21:52 localhost pppd[5959]: ioctl(PPPIOCSASYNCMAP): Inappropriate ioctl for device(25) Apr 1817:21:52 localhost pppd[5959]: tcflush failed: Input/output error Apr 18 17:21:52 localhost /etc/hotplug/net.agent: NET unregister event not supportedApr 18 17:21:52 localhost pppd[5959]: Exit. Any idea about the problem... please... Regards Nacho -Mensaje original- De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] nombre de Archie Enviado el: domingo, 18 de abril de 2004 16:01 Para: [EMAIL PROTECTED] Asunto: [speedtouch] Re: config-requests problem - Original Message - From: "Archie" <[EMAIL PROTECTED]>[4] To: <[EMAIL PROTECTED]>[5] Sent: Friday, April 16, 2004 11:32 PM Subject: [speedtouch] Re: config-requests problem Thanks for the tip I've upgraded it and I'm afraid it still doesn't work Apr 16 22:17:36 linux2 pppd[6796]: pppd 2.4.1 started by philip, uid 0 Apr 16 22:17:36 linux2 pppd[6796]: Using interface ppp1 Apr 16 22:17:36 linux2 pppd[6796]: Connect: ppp1 <--> /dev/pts/1 Apr 16 22:17:36 linux2 pppoa3[6797]: pppoa3 version 1.2 started byroot (uid 0) Apr 16 22:17:36 linux2 pppoa3[6797]: Control thread ready Apr 16 22:17:36 linux2 pppoa3[6805]: host --> pppoa3 --> modem stream ready Apr 16 22:17:36 linux2 pppoa3[6806]: modem --> pppoa3 --> host stream ready Apr 16 22:17:36 linux2 /etc/hotplug/net.agent: assuming ppp1 is already up Apr 1622:17:38 linux2 kernel: usb_control/bulk_msg: timeout Apr 16 22:17:38 linux2 kernel: usbdevfs: USBDEVFS_BULK failed dev 2 ep 0x7 len 53 ret -110 Did you unplug the modem or reset usb before the new attempt? I've finally got it working after 8 hours of staring at the screen. For the record I'll explain what happened: (hopefully it will help someone else in future). Firstmake sure that your're using the 1.2 version (as Gilles said). The firstproblem was with the firmware: the copies of mgmt.o I downloaded for useweren't working, although modem_run isn't very helpful, tucking a single line away in the /var/log/messages file rather than returning an error when called from the bash command line. Anyway, I'd missed the line in /var/log/messages for a while (first moral - check logs carefully!), but whenI found it I tried a download of alcaudsl.sys, which didn't work either. Finally I did another search of the CD which actually came with the modem (I had checked it first but it didn't seem to contain anything useful) and discovered two sets of firmware in the directories containing the Mac OS 8/9 (!) drivers. These were called KQ..something and ZZZ..something. It's the ZZ ones that are needed (for the silver 330 I have: I presume the KQ ones will work with different models). I put them in /etc/ppp/firmware (firmware being a new directory I created) and called modem_run: /usr/local/sbin/modem_run -v1 -a /etc/ppp/firmware/ZZZLP1.eni -f /etc/ppp/firmware/ZZZLP2.eni There being two files, what I und
[speedtouch] Re: Slow connection again.
As far as I know, pppoa2 has not been updated lately and still contains serious errors degrading throughput depending on line habits; this has been repaired in pppoa3.. Bye Ok Duncan Sands wrote: On Friday 16 April 2004 13:48, Millich Sergio (CHA) wrote: pppoa2 I think with the -b option etc... I don't have the command under my nose, I'm at the office. OK, so its the user mode driver. What does /sbin/ifconfig/ppp0 give? Ciao, Duncan. Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED] --- Links --- 1 mailto:[EMAIL PROTECTED] Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: how can a complete newbie get online?
Hi C! Everybody here is willing to help you out, but they all presuppose some working knowledge of Linux (or Unix). I'm sorry, but you cannot expect anybody to take you by the hand; better ask some friend/relation. Better still: go to your nearest second-hand bookshop and buy some Linux-dedicated book with a title like 'Linux in 24 hours' or the like. There should be piles of other titles too and it doesn't matter that they are a little outdated: it'll give you some image of what it's all about... Read it and come back to us in a week or so, okay? All the best, Ok O. of [EMAIL PROTECTED] wrote: >Hey all > >Very new, newbie here. After about 3 weeks, I have finally managed an mdk9.2 >install (new bios upgrade required) - which has been frustrating. > >Now, I need to connect to the big wide world. I'm the not so proud owner of a >speedtouch 330 - and it seems from the various boards that its a beast to >install, and if you are a newbie without any experience, then it seems almost >impossible to install? > >I have a friend who has some rusty Linux experience, and he tried for an entire >afternoon just trying to get the modem beast installed. Though we got the >speedbundle, it unfortunately failed to "just work". > >Is it possible to get detailed step by step instructions - a lot of info assumes >you have linux experience and understand what to do and what to do next. I >haven't. I'd like to, but I'd like to have a system up and running first. > >Reading web sites which suggest it will just work, and getting hold of a linux >system because it offers a largely automated install are very luring and >tempting words to those wishing to escape the clutches of dirty M$. I've got >the mdk and I love it, as well as OpenOffice and Mozilla - it's all great and >often better stuff than previos. > >Unfortunately, it's not all plain sailing and is quite difficult to take >everything on board at the same time. I want to learn, but at the moment it >feels very much like I'm in the deep end and way out of my depth. > >Can anyone help me get the 330 online, please. > >Yours hopefully. > > > >This mail sent through IMP: http://webmail.brad.ac.uk >To report misuse from this email address forward the message >and full headers to [EMAIL PROTECTED] > > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: need advice
Did you mean to write "Speedtouch 530" or is it a typo? Check on http://www.speedtouchdsl.com/prod530.htm This mail-archive is about the "simpler" 330 types. Bye Ok O Hugh Ekeberg wrote: >Dear Friends > >Can anyone start pointing me in the right direction? > >I installed FreeBSD-5.1 a few weeks ago and I'm a total newbe to UNIX & >Linux type operating systems. However I'm learning fast and have slowly >enabled the stuff I need to operated and learn more; like sound, >printing, OpenGL etc. > >The next major challenge is trying to enable Internet connection with >Thompson/Alcatel SpeedTouch 530. > >I downloaded speedtouch-1.2.tar.gz and the documentation to FreeBSD >installation. I configured and installed everything and made rebuilt the >kernel with all the options I need. > >Installation went very well and I had no problems configuring ppp file. >Dmesg shows: ugen0: ALCATEL Speed Touch USB , rev 1.10/0.00, addr 2 and >/dev directory has devices ugen0, ugen0.4, ugen0.5. In the >/usr/local/libdata I installed alcaudsl.sys from my Win2000 installation >and I also place mgmt.o for experimental purposes > >Problem: > >The problem is Initialisation. After booting OR when I type: modem_run >-f /usr/local/libdata/mgmt.o -m , I get the same consistant error >message: > >pusb_endpoint_open: couldn't open end point /dev/ugen0.5: Device not >configured. > >Can anyone help? > >All the best, > > > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: PPP doesn't notice that it lose the connection
I forgot to mention, that the log-messaging of Clp bits can easily be switched of, by commenting the 'offending' line in atm.c and a re-make.of course this will not cure your disease. And, not only the cabling could cause problems: how about some malfunctioning computer-part (usb f'rexample)? Ok O. Michele wrote: >Hi there ;-) >Maybe someone found a similar problem: >after having downloaded the firmware into the modem (SpeedTouch 330 rev 4.00) >i start pppd as explained in the howto and everything works fine but... >at random, after some hours (sometime days), the network become unusable: no >ping even to the P-t-P host > >... >Mar 30 11:59:00 atalante last message repeated 2852 times >Mar 30 11:59:00 atalante /USR/SBIN/CRON[17482]: (root) CMD ( rm -f /var/spool/ >Mar 30 11:59:00 atalante pppoa3[17161]: Clp bit is ON >Mar 30 11:59:31 atalante last message repeated 5641 times >... >Mar 30 12:21:29 atalante last message repeated 4284 times > >then silence (but CRON)! > >pkill -9 pppd >pkill -9 pppoa3 >pppd call adsl > >and it works newly fine (_with another IP_). > >What can it be? Has anyone idea how could I restore the connection without >having another IP. Why ppp do not understand that the connection is lost? >And finally what is this god-bless-it Clp bit that is ON (and I know it is ON >because my computer said me that was at least 1e100 times, and it was never >OFF, thing that imply that these log lines bring me an information rate of >about 0.0) > > >Thanks in advance :-) > >Michele > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: PPP doesn't notice that it lose the connection
The 'Clp bit is on'-message signals, that you have serious line-quality problems. Generally it means, that data has been truncated; that is, if this bit was set by your provider. Most probably though I suspect you are getting garbled data due to bad cabling (garbled data leading to accidental 'Clp bits on'...). So, as a first advice, check your inhouse cablingand keep us informed.. Ciao, Ok O Michele wrote: >Hi there ;-) >Maybe someone found a similar problem: >after having downloaded the firmware into the modem (SpeedTouch 330 rev 4.00) >i start pppd as explained in the howto and everything works fine but... >at random, after some hours (sometime days), the network become unusable: no >ping even to the P-t-P host > >... >Mar 30 11:59:00 atalante last message repeated 2852 times >Mar 30 11:59:00 atalante /USR/SBIN/CRON[17482]: (root) CMD ( rm -f /var/spool/ >Mar 30 11:59:00 atalante pppoa3[17161]: Clp bit is ON >Mar 30 11:59:31 atalante last message repeated 5641 times >... >Mar 30 12:21:29 atalante last message repeated 4284 times > >then silence (but CRON)! > >pkill -9 pppd >pkill -9 pppoa3 >pppd call adsl > >and it works newly fine (_with another IP_). > >What can it be? Has anyone idea how could I restore the connection without >having another IP. Why ppp do not understand that the connection is lost? >And finally what is this god-bless-it Clp bit that is ON (and I know it is ON >because my computer said me that was at least 1e100 times, and it was never >OFF, thing that imply that these log lines bring me an information rate of >about 0.0) > > >Thanks in advance :-) > >Michele > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Document
Someone has been infected by a Win-virus. [EMAIL PROTECTED] wrote: >Here is the file. > > >-- Binary/unsupported file stripped by Listar -- >-- Type: application/octet-stream >-- File: your_document.pif > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: My final attempt with this modem
Hi there! Is your vpi/vci combination okay? You're using 0/35; please check. And, about the usernames etc: in /etc/ppp/peers/adsl it should say: user "[EMAIL PROTECTED]" and in /etc/ppp/pap-secrets & chap-secrets (both if you don't know which one will be used) "[EMAIL PROTECTED]" * "password" * Good luck Ok Paul/avatar_58 wrote: >Feb 3 20:12:39 avatar modem_run[1298]: ADSL line is up (160 kbit/s down | 96 kbit/s >up) >Feb 3 20:12:43 avatar pppd[1302]: pppd 2.4.1 started by root, uid 0 >Feb 3 20:12:43 avatar pppd[1302]: Using interface ppp0 >Feb 3 20:12:43 avatar pppd[1302]: Connect: ppp0 <--> /dev/pts/4 >Feb 3 20:12:43 avatar pppoa3[1303]: pppoa3 version 1.2-beta3 started by root (uid 0) >Feb 3 20:12:43 avatar pppoa3[1303]: Vpi set to 0 >Feb 3 20:12:43 avatar pppoa3[1303]: Vci set to 35 >Feb 3 20:12:43 avatar pppoa3[1303]: Verbosity level set to 2 >Feb 3 20:12:43 avatar pppoa3[1303]: Schedule policy set to 0 >Feb 3 20:12:43 avatar pppoa3[1303]: Modem ID set to 1 >Feb 3 20:12:43 avatar pppoa3[1303]: Using Sync HDLC mode >Feb 3 20:12:43 avatar pppoa3[1303]: Using PPPoA mode >Feb 3 20:12:43 avatar pppoa3[1303]: Control pipe disabled >Feb 3 20:12:43 avatar pppoa3[1303]: Previous instance cleaning enabled >Feb 3 20:12:43 avatar pppoa3[1303]: Control thread ready >Feb 3 20:12:43 avatar pppoa3[1303]: Modem found! >Feb 3 20:12:43 avatar pppoa3[1312]: host --> pppoa3 --> modem stream ready >Feb 3 20:12:43 avatar pppoa3[1313]: modem --> pppoa3 --> host stream ready >Feb 3 20:13:14 avatar pppd[1302]: Connection terminated. >Feb 3 20:13:14 avatar pppoa3[1312]: Cleaning Read from usb data >Feb 3 20:13:14 avatar pppoa3[1303]: Write to usb Canceled >Feb 3 20:13:14 avatar pppoa3[1313]: Cleaning Write to usb data > >And finally this is what "/var/log/syslog" tells me: > >Feb 3 20:11:49 avatar kernel: HDLC line discipline: version $Revision: 3.3 $, >maxframe=4096 >Feb 3 20:12:21 avatar kernel: usb_control/bulk_msg: timeout >Feb 3 20:12:21 avatar kernel: usbdevfs: USBDEVFS_BULK failed dev 6 ep 0x85 len 512 >ret -110 >Feb 3 20:13:14 avatar pppd[1302]: LCP: timeout sending Config-Requests >Feb 3 20:13:14 avatar pppoa3[1312]: Error reading from source device >Feb 3 20:13:14 avatar pppoa3[1303]: Woken by a sem_post event -> Exiting > > > >Any help whatsoever would be appreciated. So far, from what I gather, the firmware >upload works. All the modules are present. The only thing I see that goes wrong is >once I type "pppd call adsl". It works all according to planthen finds a previous >instance () and fails for no reason. Can someone explain this? I really would >love to get this working, I've spent far too much time trying this and I am running >out of plans. > >Bewildred: avatar_58 > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: pppd call adsl error
Please show us the contents of: /etc/ppp/options and /etc/ppp/peers/adsl This does not mean I do not trust your configuration: just to be sure.. Ok >Hi > >I've configured correctly my speedtouch modem. >After i've started modem_run everything works,but when i digit pppd call >adsl nothing happens.I mean that the ppp0 interface is not initialized. >Here the messages log file of my entire connecting operation. > > >Jan 1 13:59:46 localhost -- root[856]: ROOT LOGIN ON tty1 >Jan 1 14:01:39 localhost modem_run[945]: modem_run version 1.2-beta3 started >by root uid 0 >Jan 1 14:02:04 localhost modem_run[945]: ADSL synchronization has been obtained >Jan 1 14:02:04 localhost modem_run[945]: ADSL line is up (832 kbit/s down >| 192 kbit/s up) >Jan 1 14:02:42 localhost kernel: CSLIP: code copyright 1989 Regents of the >University of California >Jan 1 14:02:42 localhost kernel: PPP generic driver version 2.4.2 >Jan 1 14:02:42 localhost pppd[953]: pppd 2.4.1 started by root, uid 0 >Jan 1 14:02:42 localhost pppd[953]: Using interface ppp0 >Jan 1 14:02:42 localhost pppd[953]: Connect: ppp0 <--> /dev/pts/0 >Jan 1 14:02:42 localhost pppd[953]: ioctl(PPPIOCSASYNCMAP): Inappropriate >ioctl for device(25) >Jan 1 14:02:42 localhost pppd[953]: tcflush failed: Input/output error >Jan 1 14:02:42 localhost pppd[953]: Exit. >Jan 1 14:02:42 localhost /etc/hotplug/net.agent: assuming ppp0 is already >up >Jan 1 14:02:42 localhost /etc/hotplug/net.agent: NET unregister event not >supported > > >Can u help me please? > >Antonio > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: silver modem
If every owner of a silver speedtouch would mention the town, where they're living in, a willing developer in the neighbourhood could 'switch' modems for a while and take a look at it.. Would that be a good idea? Ok Duncan Sands wrote: On Friday 23 January 2004 09:14, [EMAIL PROTECTED] wrote: Hi, I have justgot a silver modem and I'm unable to get it working with Gentoo. I have read on this list there seems to be issues with the firmware uploading (and I'd agree with this happening on mine also). I just wonder whether it is worth me keeping this modem, or getting a different type? Perhaps there is a fix for it already? Hi, one day one of the developers will get one of these modems and then all your problems will be solved... It will happen, but it may take a while. Of course, you could try to fix it yourself. Some work was already done towards fixing the firmware upload problems - what happened withthat? Duncan. Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED] --- Links --- 1 mailto:[EMAIL PROTECTED] 2 mailto:[EMAIL PROTECTED] Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: VPI/VCI problems
The idea is to first find someone with a reproducible situation So: do you think you can reproduce the errors within one or two minutes? Ok Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: VPI/VCI problems
Are the ones with these VPI/VCI-problems using pppoa2 or pppoa3? And are they doing something special when it occurs? Ok O. Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: RERE RERE: Clp bit is on and won't go off!
Say, Daedalus! Sure I'm happy to have removed your (Clp bit is on) symptoms, but I hope to have made it clear that I did not cure the disease You still have terrible line-problems, and you're just lucky that some resyncing takes place at all. Now I don't want to underestimate your technical abilities, but just to be sure: Did you yourself do the in-house cabling-work for your DSL- connection? And are you sure it's flawless? It smells of an inhouse problem to me..no provider could deliver a line as bad as yours with dry eyes. Take a look at it! Ok Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Clp bit is on and won't go off!
The fact, that 'the Clp bit is on' , points to severe errors either at the side of your provider or somewhere in your cabling or computer.. In the beta2 this message did not exist; I put it in just to check whether something was wrong there at my place (there wasn't btw); somehow it outlived the change-managers scrutinous eyesight. You wanna get rid of the messages? Just take out the lines 354 to 357 of 'atm.c' and make again.. These lines contain: pti = atm_header_get_clp(src); if (pti > 0) { report(0, REPORT_ERROR|REPORT_DATE, "Clp bit is ON\n"); } Good luck! Btw: taking out a message does not take away the flaws. Cedric Roijakkers wrote: >Hello > >I noticed the insane amount of rubbish in my syslog, so i tried to disable >pppoa3's output with the different methods stated in the list: > >- removing the debug lines from ppp >- changing the verbosity level to -1 in the code > >But it's still there... > >I just downgraded to beta2 since there is no problem there. > >How can this be fixed? Is there perhaps a CVS version that I can compile >instead? > >Greets >Cedric > > > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Silver SpeedTouch 330 Modem
Things getting more obscure by the day. I already mentioned getting two firmware-files named 'ZZZLP2.eni', probably for the version 4 type of modem. The funny thing is, that they TOO are of different sizes (I did not expect it, so I didn't check yesterday); one of them is 775509 bytes and the other 774192. Are there any more tastes of these too? Ok Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Silver SpeedTouch 330 Modem
Martin Galpin wrote: >-BEGIN PGP SIGNED MESSAGE- >Hash: SHA1 > >On Friday 26 December 2003 09:31 pm, you wrote: > > >>Ok Overbeek (mz) wrote: >> >> >>>Could any of you (Mike?Martin?) send me this infamous V4 firmware-file >>>please (on my private address). I'm a collector... >>> >>>Ok O. >>> >>> >>In the meantime I received a ZZZLP2.eni-file (twice) and an >>unknown KQD6P2.eni (thanx guys!). >> >>The ZZZLP2 does not want to be loaded, probably because of >>modem-run not finding correct start&end points inside it. >> >>The KQD6P2-file is funny though: I already had one file by that >>name, but it was smaller (677641 bytes) that this one (761389). The >>smaller one can be found at the Thomson site. My question now is: >>where does the big one come from? Or is there some typo going on? >>(They both work, by the way). >> >>Any one to help me out? >> >>Ok >> >> >> >>Liste de diffusion modem ALCATEL SpeedTouch USB >>Pour se désinscrire : >>mailto:[EMAIL PROTECTED] >> >> > >Well, > >Just to make things interesting, my KQD6P2-file is 744.8 KB. Let us compare >checksums: > >4dc23adb72007919f30d50ebcf222f8a KQD6P2.eni > >And I got that from the CD. > >Martin >- -- > > It should not come as a surprise to you, that my checksum is different: 340dd35f9b4e03515ed0804b0e6d9bef. I received the file from Gilles; the question is now: how did HE get it Gilles? Ok Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Silver SpeedTouch 330 Modem
Ok Overbeek (mz) wrote: >Could any of you (Mike?Martin?) send me this infamous V4 firmware-file >please (on my private address). I'm a collector... > >Ok O. > > > > In the meantime I received a ZZZLP2.eni-file (twice) and an unknown KQD6P2.eni (thanx guys!). The ZZZLP2 does not want to be loaded, probably because of modem-run not finding correct start&end points inside it. The KQD6P2-file is funny though: I already had one file by that name, but it was smaller (677641 bytes) that this one (761389). The smaller one can be found at the Thomson site. My question now is: where does the big one come from? Or is there some typo going on? (They both work, by the way). Any one to help me out? Ok Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Silver SpeedTouch 330 Modem
Could any of you (Mike?Martin?) send me this infamous V4 firmware-file please (on my private address). I'm a collector... Ok O. Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Redhat 9 - Problem with pppd
Hat off for Piercarlo! Ok O. Piercarlo Grandi wrote: On Wed, 17 Dec 2003 18:55:03 +, Daniel <[EMAIL PROTECTED]> said: > >zoro> OK, does anyone know what device path i can use to access the >zoro> modem? (adsl usb) as in /dev/usb/001/009 or something similar? > >Such devices do not appear as such in the filesystem, a bit like the >network interface device, so there is no need of this. > >zoro> i'm having terrible trouble getting the damn thing to login over >zoro> adsl, it connects no problem, so the adsl link is active, but it >zoro> simply wont login to my ISP! > >It's hard to figure out what is the problem without seeing the logs... > >zoro> can anyone help me with this? I've gotten all the driver / >zoro> firmware / installation out of the way, this is the last step and >zoro> it's driving me nuts! > >Well, there are two obvious things to check, your PPP setup, and that >you are not being vtictim of a very annoying misfeature in one of the >crucial Speedtouch tools. > >As to the PPP setup, there are innumerable FAQs, but just briefly here >check that: > >* You have just freshly initialized *once* your Speedtouch with > 'modem_run'. As far as I could figure out, running 'modem_run' for a > second time does not work. To reset your Speedtouch you have to unplug > it, replug it in a few seconds later, and then 'modem_run' will work. > >* You have created a suitable PPP configuration file under > '/etc/ppp/peers/' for your configuration. > >* Among other options this file *must* have a line like this: > >pty"exec pppoa3 -m 1 -v 1 -vpi 8 -vci 35" > > and *must not* have a "connect [ ... ]" line. > >* You also must have a line in '/etc/ppp/chap-secrets' and/or > '/etc/ppp/pap-secrets' with your username and password. > > If you have more than one line in that file, which can be if you use > more than one ISP, you should also define on that line a name for your > ISP, say "ADSL", and then add that name to your PPP configuration file > using the 'remotename' directive. > >If you think taking care of all these annoying little details is a >chore, try to configure OpenSSL cleanly :-). > >As to the annoying misfeature, 'pppoa3' uses a SysV semaphore to ensure >that only one instance of itself at a time can access the Speedtouch, >but the related code is rather extremely naive and in a very common case >it fails to do the sensible thing and access to the Speedtouch remains >blocked even if you use the '-c' option on a subsequent invocation. > >To unblock access to the Speedtouch, first check that no 'pppoa3' >instance is running, then execute the 'ipcrm -S 0x4d444d01' command. > > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: pppoa3/FreeBSD [Was: connection die-outs]
I've seen this before (a few months ago) and I just wonder: If good old fork() would have been used (in stead of threads), then there would be no problem whatsoever? Ok Jay Cornwall wrote: >jeremy wrote: > > > >>Btw, I'm still using pppoa2, 'cos I can't manage to make pppoa3 work :P >>(see below) >> >> > >PPPoA3 won't work under FreeBSD 4.x due to a poor implementation of >pthreads (I couldn't find a nice workaround either). I did get it >working in FreeBSD 5.x linking against the new libthr threading library, >with a few outstanding logging issues. > >Best to stick with PPPoA2 for now, until 5.x reaches a stable release. > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: pppoa3/FreeBSD [Was: connection die-outs]
Just to be sure, as there seems to be nothing coming in from the modem..did modem_run do its work correctly? Ok jeremy wrote: >Hi > > > >Dec 11 00:53:27 mandarine ppp[908]: tun0: Phase: deflink: Connect time: 16 >secs: 0 octets in, 90 octets out >Dec 11 00:53:27 mandarine ppp[908]: tun0: Phase: deflink: 0 packets in, 5 >packets out >Dec 11 00:53:27 mandarine ppp[908]: tun0: Phase: total 5 bytes/sec, peak 7 > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Clp bit
Hi Daedelus (nice name!), I think you should contact your provider about this first; most people trying windhose experience no errors there. Secondly, you could check your cabling, but as you say 'the Clp bit is on'.this is coming from your provider Ok Daedelus wrote: >Hi, i'm running a Debian Woody 4(Kernel 2.4.20)(gcc version 2.95.4) and >your latest usermode drivers (béta3) > >My log goes this way : >Dec 10 23:01:28 alek pppoa3[4656]: Clp bit is ON >Dec 10 23:02:00 alek last message repeated 21 times >Dec 10 23:02:37 alek last message repeated 2277 times >Dec 10 23:02:38 alek pppoa3[4656]: Cell had wrong VPI(171)/VCI(36086) >(OAM?) PTI=0x05 >Dec 10 23:02:38 alek pppoa3[4656]: Clp bit is ON >Dec 10 23:02:42 alek last message repeated 874 times >Dec 10 23:02:44 alek pppoa3[4656]: Cell had wrong VPI(818)/VCI(50568) >(OAM?) PTI=0x00 >Dec 10 23:02:56 alek pppoa3[4656]: Clp bit is ON >Dec 10 23:02:56 alek last message repeated 2 times > >/etc/ppp/options : >usepeerdns >noauth >lock >noipdefault >defaultroute > >/etc/ppp/peers/provider : >pty "/usr/local/sbin/pppoa3 -m 1 -c -vpi 8 -vci 35" >user "[EMAIL PROTECTED]" >noauth >noaccomp >nopcomp >noccp >novj >sync >holdoff 4 >persist >maxfail 25 >usepeerdns >noipdefault >defaultroute > >Starting Script : >#!/bin/sh >/usr/sbin/modem_run -s -f /root/alcatel/alcaudsl.sys >/usr/sbin/pppd call adsl-provider > >Stopping Script : >#!/bin/sh >poff >killall pppd >killall modem_run >rm /var/run/pppoa3-modem1.pid (Just in case...) >rmmod usb-ohci >modprobe usb-ohci > >I used the Firmware 201.2.0.0 (new one from Thomson) and just tested >recently the V161.5R (old one from Thomson), no changes. >My connection is very unstable. (even using the modem under WindowsXp) , >so I guess my provider isn't Innocent to the problem, this time. >Anyway, if any of you has an idea, it will be more than welcome :-) > >Thx. >Daedelus. > > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: hotplug
So, did you verify, whether your script is in fact called, when you (un)plug the modem, as Duncan and I suggested?? Ok tien hai nguyen wrote: >typo >/etc/hotplug/usb/speedtouch > >On Friday 05 December 2003 08:32, you wrote: > > >>On Thursday 04 December 2003 17:21, tien hai nguyen wrote: >> >> >>>I'm sorry >>>/etc/hotplug/usb/speetouch >>> >>> >>speetouch?! >> >>Duncan. >> >> >> >> Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: hotplug
tien hai nguyen wrote: >my usb.usermap looks like this: >speedtouch 0x0003 0x06b9 0x4061 0x ... > >my /etc/hotplug/usb.speedtouch looks like this : > > Do you mean: /etc/hotplug/usb.speedtouch or (maybe better) /etc/hotplug/usb/speedtouch ? (point or slash) Otherwise try to verify, whether it is called at all.. > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] read_from_usb_thread fix
Leonard den Ottolander wrote: >Hi, > > The rpm I made available yesterday >(http://home.hetnet.nl/~ottolander/speedtouch/speedtouch.html) >contains the speedtouch_usbpipe patch, which I received from Ok Overbeek and >cleaned up slightly. This patch does 3 things: > >1) Some code cleanup >2) Add an extra thread ("USB pipe") to speed up the reading from and the writing to >the USB device. > > Say, Leonard! The only reason I created this extra pipe, was to be sure (?) not to miss any incoming cell; I had (and still have) trouble when the obstruction bit in some cells goes on. I thought I was the only victim, but to my relief you're my companion in distress (maybe it has to do with us being Dutch??). Anyway, the extra pipe didn't do anything (good or bad, that is). During the time I was keeping myself busy with that, Duncan advised me to try the 'kernel'-version; according to him, that would do its job flawlessly. Regretfully though, I did'nt try that yet (sorry, Duncan: work, work, work you know). But: maybe YOU did? Bye, Ok O. Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: disconnection
Christophe wrote: >Hi all, > >I'm very happy 'coz now I can reproduce the problem: when I try to download >http://www.heren5.org/download/filmpjes/2.mpeg, it's always crash after 1 >minute. > > > What speed of connection are you paying for?? I still got a 256 Kbps download connection and this mpeg-file (being about 1.3 MB) downloads in about 47 seconds.. so no time enough to see a crash.. Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: disconnection
Christophe wrote: >Mon anglais est si dégue ? ;-) > > Non, je pouvais le déchifrer. >Ok, je reprends depuis le début. >La connection avec le modem fonctionne impeccable, y compris la >reconnection automatique lors de la perte du bail IP. >Quelquefois lors d'un download, la liaison freeze: >- j'ai toujours une adresse IP (ifconfig ppp0, ping Ok) >- mais je n'accède à plus rien (pas de ping sur tout le reste) >C'est comme si il y avait une déconnection, pas chez moi mais chez mon >fournisseur? >Je lance "/etc/init.d/speedtouch restart" pour me reconnecter et c'est à >nouveau bon. > >- mon modem est green vert >- j'utilise les drivers de Benoit (sourceforge) > > Quelle version?? beta2? Ou quoi? >- mon provider est belgacon skynet >- je suis sous ClarkConnect, basé sur une RedHat 7.3. >- j'ai cherché (vraiment bien cherché) et n'ai rien trouvé dans les logs. > > Est-ce que tu trouves rien du tout dans ton syslog? Peut-être le logging n'est pas activé? Parce que tu as 'debug' & 'kdebug 1' dans ton fichier adsl, tu trouve quelque chose dans to logs alors?? >Ma config est bonne (puisque le reste du temps, ça tourne bien), voici >néanmoins le contenu des fichiers principaux: > ># cat /etc/ppp/peers/adsl >debug >kdebug 1 >ktune >local >noipdefault >defaultroute >pty "/usr/sbin/pppoa3 -c -m 1 -vpi 8 -vci 35 -e 1" >sync >user [EMAIL PROTECTED] (xxx étant mon login) >noauth >novj >noaccomp >nopcomp >noccp >nocrtscts >holdoff 4 >maxfail 25 >usepeerdns >persist > ># cat /etc/modules.conf >alias parport_lowlevel parport_pc >alias eth0 8139too >alias usb-controller usb-uhci >alias char-major-108 ppp_generic >alias /dev/ppp ppp_generic >alias tty-ldisc-3 ppp_async >alias tty-ldisc-13 n_hdlc >alias tty-ldisc-14 ppp_synctty >alias ppp-compress-21 bsd_comp >alias ppp-compress-24 ppp_deflate >alias ppp-compress-26 ppp_deflate > ># cat /etc/ppp/options >usepeerdns >noipdefault >lock >noauth > ># cat /etc/speedtouch.conf >LOAD_NHDLC=1 >DEFAULT_USBINTERFACE=usb-uhci >MICROCODE=/usr/sbin/mgmt.o >VERBOSE=2 >CONFIGURED=1 > > ># ifconfig ppp0 >ppp0 Link encap:Point-to-Point Protocol > inet addr:217.136.5.230 P-t-P:217.136.5.1 Mask:255.255.255.255 > UP POINTOPOINT RUNNING NOARP MULTICAST MTU:1500 Metric:1 > RX packets:169 errors:0 dropped:0 overruns:0 frame:0 > TX packets:128 errors:0 dropped:0 overruns:0 carrier:0 > collisions:0 txqueuelen:3 > RX bytes:36818 (35.9 Kb) TX bytes:6311 (6.1 Kb) > >Si ce problème ne se produisait que chez moi, ça serait encore >vivable. Mais plusieurs ASBL dans lequelles je travaille ont la même >connection et le même problème, et pour eux c'est bcp plus em..bêtant. > > Combien de gens?? Une dizaine? Plus? Et tous avec des probs? Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: disconnection
Christophe! Please specify: - your modem type (green? purple?) - the software you're using - the content of your fichier 'adsl' - what provider are you connecting to? Et en plus: peut-être tu es plus fluide en français. heureusement pour toi y a beaucoup de tes compatriots ici, alors explique tes problèmes en français, si tu veut... Ok At 22:50 13/08/2003, you wrote: > Christophe Massez wrote: > >> maybe it's work fine in holland, but believe me, here it's not working. >> > Come on! We are trying to help you!! Your problem > smells familiar... > I asked you a question: what download-speed should you have?? > Answer it please.. > > Ok Of course it's depend: usually it's about 300 k, but on this server it's max 10 k ! I've this disconnection problem before (when I dl an iso file for example), append between 15 and 40 min. But it's not always the case: 2 day ago I dl 4 iso full speed (200 k average) without any problem. It's really a mystere - And I promise you, it's not because I smoke too much Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Internet Speed
Check your syslog on pppxxx-messages and then search the mail-archive Jay Scott wrote: >Hi > >I can get my speedtouch 330 modem to work on my slackware 9.0 distro OK but i >have a problem with internet speeds. > >When I'm in windows i downloaded a test file and was getting about 58KB >download speed but when in linux downloading the same files only gets about >15KB. > >Does anyone have an idea why this happens or how i can solve it ? > >Thanks > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Help alcatel speedtouch keeps turning yellow!
Without pieces of your syslog (around disaster time) no one will be able to help you... So: publish or perish Ok Ångel wrote: >Can anyone please help me? >My Alcatel Speedtouch modem goes yellow and boots me off the internet. I've changed >the power settings on the usb the way that my ISP told me to, but it still keeps >happening, I'm getting really tired of it now, usually does it when I'm in the middle >of doing something and it takes me an age to get back online. > >Thank you. > > >Ångel >- >"Are you still wasting your time with spam?... >There is a solution!" > >Protected by GIANT Company's Spam Inspector >The most powerful anti-spam software available. >http://www.giantcompany.com > > > > >--- >Outgoing mail is certified Virus Free. >Checked by AVG anti-virus system (http://www.grisoft.com). >Version: 6.0.498 / Virus Database: 297 - Release Date: 08/07/2003 >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: AW: Re: ping impossible
Could you please publish a piece of your syslog, i.e. the part where you start teh speedtouch-stuff? Maybe someone else will spot an error/problem. wito wrote: >yes I agree to your opinion: but where in the hell is my "higher level >problem"? Where is a possibility to set wrong configuration info? >### >/etc/chap-secrets >seems to be OK because I see the confirmation in the syslog file and I >get (little) connection to my ISP >### ># /etc/ppp/options ># >noauth >usepeerdns >lock >noipdefault >defaultroute ># > >### >the pppd parameter script >/etc/ppp/peers/myadsl >#debug >#kdebug 1 >noipdefault >defaultroute >pty "/usr/sbin/pppoa3 -m 1 -v 1 -c -e 1 -vpi 8 -vci 48" >sync >user "xx" >noaccomp >nopcomp >noccp >novj >persist >holdoff 4 >maxfail 25 >usepeerdns > >### >the startscript: >modprobe ppp_generic >modprobe ppp_synctty >modprobe n_hdlc ># modprobe usbcore ># usb-uhci >modem_run -f /var/opt/speedtouch/userdriver/mgmt.o -m -s >pppd call myadsl >sleep 5 >ifconfig ppp0 > >### >the related resolv.conf entries in /etc and /etc/ppp resp. >lrwxrwxrwx1 root root 20 Jul 2 19:59 resolv.conv -> >/etc/ppp/resolv.conf >-rw-r--r--1 root root 46 Jul 15 06:39 ppp/resolv.conf > >### >/etc/ppp/resolv.conf >nameserver 195.3.96.67 >nameserver 195.3.96.68 > >That's my configuration. Of course I tried other parameters in the >/etc/ppp/options - but without success. And I'm sure: 2 weeks ago the system >was working fine with this configuration. >Can you discover any conspicous constellation? > >-Ursprungliche Nachricht- >Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] >Auftrag von Ok Overbeek (mz) >Gesendet: Montag, 14. Juli 2003 23:32 >An: [EMAIL PROTECTED] >Betreff: [speedtouch] Re: ping impossible > > > >Sorry Wito, but I think you're pinging at the wrong address here :-) > >This group's business is about getting the speedtouch working and >not about the intimate knowledge of ping. BTW most people use >ping as a tool (or doorbell, if you wish) to see if someone is home >so to speak. I always accepted it 'as is' and never was interested in >the 'how', though having heard of echo-requests etc. It seems a >waste of time for you to dive into these realms, while your >connection problem should be easily solved on a higher level. > From then on, before you know it, you will be pinging the >whole world (wow!). > >Ok > > >wito wrote: > > > >>the first function call in the ping's source is a call to >>"gethostbyname()" - and returns null. In the manual pages of >> >> >gethostbyname() > > >>is a cross reference to "named(8)". I guess that means "name daemon" I >>cannot find on my system neither a manual entry for "named" nor such a file >>nor process ("ps -ef|grep name"). >>My question: do I need this process?? And in the case I need it - where can >>I get it from ? >> >> >> >> > > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se disinscrire : >mailto:[EMAIL PROTECTED] > > > > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: ping impossible
Sorry Wito, but I think you're pinging at the wrong address here :-) This group's business is about getting the speedtouch working and not about the intimate knowledge of ping. BTW most people use ping as a tool (or doorbell, if you wish) to see if someone is home so to speak. I always accepted it 'as is' and never was interested in the 'how', though having heard of echo-requests etc. It seems a waste of time for you to dive into these realms, while your connection problem should be easily solved on a higher level. From then on, before you know it, you will be pinging the whole world (wow!). Ok wito wrote: >the first function call in the ping's source is a call to >"gethostbyname()" - and returns null. In the manual pages of gethostbyname() >is a cross reference to "named(8)". I guess that means "name daemon" I >cannot find on my system neither a manual entry for "named" nor such a file >nor process ("ps -ef|grep name"). >My question: do I need this process?? And in the case I need it - where can >I get it from ? > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: ping impossible
wito wrote: >telnet 213.229.60.15 80 works fine; > So you got contact with the 'outside world', that's okay. > I got a html site from >"captain.inode.at" > nice >Surprisingly "ping 213.229.60.15 80" works fine too. > fine > But "ping >captain.inode.at" doesn't work. > you got a DNS-problem on hand; check the contents of /etc/resolv.conf (or the link); there must be something wrong there... > >I tried "telnet 64.58.79.230" (yahoo.com) --- without success > Of course not, why would someone let you open a telnet session to them? > >I have a standallone PC; there shouldn't be a firewall. > Reconsider this! You're in for possible trouble on your 'standalone PC'; the 'enemy' knows your ip-address.. > >-Ursprungliche Nachricht- >Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] >Auftrag von Willi Mann >Gesendet: Samstag, 12. Juli 2003 10:33 >An: [EMAIL PROTECTED] >Betreff: [speedtouch] Re: AW: Re: AW: Re: AW: Re: ping impossible > > >What happens if you execute > >telnet 213.229.60.15 80 > >and type > >GET / > >? > >Willi > >wito wrote: > > >>this is the "route -n" output >> >>Kernel IP routing table >>Destination Gateway Genmask Flags Metric RefUse >>Iface >>172.19.93.137 0.0.0.0 255.255.255.255 UH0 00 >> >> >ppp0 > > >>0.0.0.0 172.19.93.137 0.0.0.0 UG0 00 >> >> >ppp0 > > >> >> > > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se disinscrire : >mailto:[EMAIL PROTECTED] > > > > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: AW: Re: AW: Re: AW: Re: ping impossible
Can't see any errors there...everything should work properly. Maybe someone else has an idea?? good luck Ok wito wrote: >this is the "route -n" output > >Kernel IP routing table >Destination Gateway Genmask Flags Metric RefUse >Iface >172.19.93.137 0.0.0.0 255.255.255.255 UH0 00 ppp0 >0.0.0.0 172.19.93.137 0.0.0.0 UG0 00 ppp0 > >-Ursprüngliche Nachricht- >Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] >Auftrag von Ok Overbeek (mz) >Gesendet: Freitag, 11. Juli 2003 15:06 >An: [EMAIL PROTECTED] >Betreff: [speedtouch] Re: AW: Re: AW: Re: ping impossible > > > >And the output of 'route'?? >How does that look? > >wito wrote: > > > >>no, nothing OK. the "ifconfig" output looks OK but ping cannot ping >> >>-Ursprüngliche Nachricht- >>Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] >>Auftrag von Ok Overbeek (mz) >>Gesendet: Freitag, 11. Juli 2003 14:50 >>An: [EMAIL PROTECTED] >>Betreff: [speedtouch] Re: AW: Re: ping impossible >> >> >> >>What doe you mean by 'this is my mistake'? >>Is everything okay now? Network running? >> >> >> >> >>wito wrote: >> >> >> >> >> >>>thanksforanswer, >>>this is my mistake: the output of "ifconfig" is that: >>>loLink encap:Local Loopback >>>inet addr:127.0.0.1 Mask:255.0.0.0 >>>UP LOOPBACK RUNNING MTU:16436 Metric:1 >>>RX packets:8 errors:0 dropped:0 overruns:0 frame:0 >>>TX packets:8 errors:0 dropped:0 overruns:0 carrier:0 >>>collisions:0 txqueuelen:0 >>>RX bytes:560 (560.0 b) TX bytes:560 (560.0 b) >>> >>>ppp0 Link encap:Point-to-Point Protocol >>>inet addr:62.47.180.101 P-t-P:172.19.93.137 >>> >>> >>> >>> >>Mask:255.255.255.255 >> >> >> >> >>>UP POINTOPOINT RUNNING NOARP MULTICAST MTU:1500 Metric:1 >>>RX packets:186 errors:0 dropped:0 overruns:0 frame:0 >>>TX packets:113 errors:0 dropped:0 overruns:0 carrier:0 >>>collisions:0 txqueuelen:3 >>>RX bytes:11317 (11.0 KiB) TX bytes:8957 (8.7 KiB) >>> >>>And my second mistake: I thought a complete Debian distro contains >>> >>> >packages > > >>>AND the related source files on CDs?!?! isn't? >>> >>> >>>-Ursprüngliche Nachricht- >>>Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] >>>Auftrag von Ok Overbeek (mz) >>>Gesendet: Freitag, 11. Juli 2003 09:22 >>>An: [EMAIL PROTECTED] >>>Betreff: [speedtouch] Re: ping impossible >>> >>> >>> >>>A little search on ping leads to http://ftp.arl.mil/~mike/ping.html by >>>the original creator (source included)! >>>And just for my curiosity: what does the output of 'ifconfig' look like? >>> >>>Ok >>> >>>wito wrote: >>> >>> >>> >>> >>> >>> >>> >>>>I’ve had a working speedtouch – pppoa3 connection. >>>>After re-installing Woody & Sarge, installing GNOME and re-compiling the >>>>kernel 2.4.20-6, the system works fine BUT the connection doesn’t work >>>> >>>> >at > > >>>>all. >>>> >>>>In order to avoid Mr. Gomez’ prompt note: Read the FAQ….. I assure that I >>>>did so. I have the same ppp-configuration as before the re-installation, >>>> >>>> >>>> >>>> >>>> >>>> >>>the >>> >>> >>> >>> >>> >>> >>>>same options, a good /etc/resolv.conf file linked to /etc/ppp/resolv.conv >>>>etc. (I hope so) >>>> >>>>The big difference between the old and the new system installation: GNOME >>>> >>>> >>>> >>>> >>>> >>>> >>>is >>> >>> >>> >>> >>> >>> >>>>working well now. >>>> >>>>The behaviour of my connection is as follows: >>>>1) the syslog entries look good >>>>2) modem_run seems to be OK >>>>3) pppoa3 runs in 4 or 5 tasks >>>>4) u
[speedtouch] Re: AW: Re: AW: Re: ping impossible
And the output of 'route'?? How does that look? wito wrote: >no, nothing OK. the "ifconfig" output looks OK but ping cannot ping > >-Ursprüngliche Nachricht- >Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] >Auftrag von Ok Overbeek (mz) >Gesendet: Freitag, 11. Juli 2003 14:50 >An: [EMAIL PROTECTED] >Betreff: [speedtouch] Re: AW: Re: ping impossible > > > >What doe you mean by 'this is my mistake'? >Is everything okay now? Network running? > > > > >wito wrote: > > > >>thanksforanswer, >>this is my mistake: the output of "ifconfig" is that: >>loLink encap:Local Loopback >> inet addr:127.0.0.1 Mask:255.0.0.0 >> UP LOOPBACK RUNNING MTU:16436 Metric:1 >> RX packets:8 errors:0 dropped:0 overruns:0 frame:0 >> TX packets:8 errors:0 dropped:0 overruns:0 carrier:0 >> collisions:0 txqueuelen:0 >> RX bytes:560 (560.0 b) TX bytes:560 (560.0 b) >> >>ppp0 Link encap:Point-to-Point Protocol >> inet addr:62.47.180.101 P-t-P:172.19.93.137 >> >> >Mask:255.255.255.255 > > >> UP POINTOPOINT RUNNING NOARP MULTICAST MTU:1500 Metric:1 >> RX packets:186 errors:0 dropped:0 overruns:0 frame:0 >> TX packets:113 errors:0 dropped:0 overruns:0 carrier:0 >> collisions:0 txqueuelen:3 >> RX bytes:11317 (11.0 KiB) TX bytes:8957 (8.7 KiB) >> >>And my second mistake: I thought a complete Debian distro contains packages >>AND the related source files on CDs?!?! isn't? >> >> >>-Ursprüngliche Nachricht- >>Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] >>Auftrag von Ok Overbeek (mz) >>Gesendet: Freitag, 11. Juli 2003 09:22 >>An: [EMAIL PROTECTED] >>Betreff: [speedtouch] Re: ping impossible >> >> >> >>A little search on ping leads to http://ftp.arl.mil/~mike/ping.html by >>the original creator (source included)! >>And just for my curiosity: what does the output of 'ifconfig' look like? >> >>Ok >> >>wito wrote: >> >> >> >> >> >>>I’ve had a working speedtouch – pppoa3 connection. >>>After re-installing Woody & Sarge, installing GNOME and re-compiling the >>>kernel 2.4.20-6, the system works fine BUT the connection doesn’t work at >>>all. >>> >>>In order to avoid Mr. Gomez’ prompt note: Read the FAQ….. I assure that I >>>did so. I have the same ppp-configuration as before the re-installation, >>> >>> >>> >>> >>the >> >> >> >> >>>same options, a good /etc/resolv.conf file linked to /etc/ppp/resolv.conv >>>etc. (I hope so) >>> >>>The big difference between the old and the new system installation: GNOME >>> >>> >>> >>> >>is >> >> >> >> >>>working well now. >>> >>>The behaviour of my connection is as follows: >>>1) the syslog entries look good >>>2) modem_run seems to be OK >>>3) pppoa3 runs in 4 or 5 tasks >>>4) using the debug options I can see: pppd is living >>>5) the registration (chap) to my ISP is OK >>>6) pppd does recognize the nameserver declarations in my resolv.conf file >>>7) “ifconfig” and “route –n” both deliver good results >>>8) All seems to be OK – I cannot find any suspicious problem line in >>> >>> >>> >>> >>syslog… >> >> >> >> >>>9) I know 4 IP addresses in my PC’s environment: >>> 2 nameserver IP’s (defined by myself in resolv.conv) and >>> 2 IP’s given to me by “route –n” (local IP and gateway-IP?) >>>10) I can ping this 4 IP’s – this works fine >>>11) But I cannot ping anything else: >>> neither symbolic names (www.linux.org) nor the appropriate IP-addresses >>>12) “nslookup” resp. “host” return connection timeout in all (in all) >>> >>> >cases > > >>>It looks like the connection between my PC, my modem (and propably to my >>>ISP??) is good – but behind my ISP the line is interrupted or so…. >>> >>>I found a task in the speedtouch mailing list’s archive from March 2003 >>>describing the same situation: no answers exist to this request. So I >>> >>> >>> >>> >>guess >> >> >> >> >>>nobody can offe
[speedtouch] Re: AW: Re: ping impossible
What doe you mean by 'this is my mistake'? Is everything okay now? Network running? wito wrote: >thanksforanswer, >this is my mistake: the output of "ifconfig" is that: >loLink encap:Local Loopback > inet addr:127.0.0.1 Mask:255.0.0.0 > UP LOOPBACK RUNNING MTU:16436 Metric:1 > RX packets:8 errors:0 dropped:0 overruns:0 frame:0 > TX packets:8 errors:0 dropped:0 overruns:0 carrier:0 > collisions:0 txqueuelen:0 > RX bytes:560 (560.0 b) TX bytes:560 (560.0 b) > >ppp0 Link encap:Point-to-Point Protocol > inet addr:62.47.180.101 P-t-P:172.19.93.137 Mask:255.255.255.255 > UP POINTOPOINT RUNNING NOARP MULTICAST MTU:1500 Metric:1 > RX packets:186 errors:0 dropped:0 overruns:0 frame:0 > TX packets:113 errors:0 dropped:0 overruns:0 carrier:0 > collisions:0 txqueuelen:3 > RX bytes:11317 (11.0 KiB) TX bytes:8957 (8.7 KiB) > >And my second mistake: I thought a complete Debian distro contains packages >AND the related source files on CDs?!?! isn't? > > >-----Ursprüngliche Nachricht- >Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] >Auftrag von Ok Overbeek (mz) >Gesendet: Freitag, 11. Juli 2003 09:22 >An: [EMAIL PROTECTED] >Betreff: [speedtouch] Re: ping impossible > > > >A little search on ping leads to http://ftp.arl.mil/~mike/ping.html by >the original creator (source included)! >And just for my curiosity: what does the output of 'ifconfig' look like? > >Ok > >wito wrote: > > > >>I’ve had a working speedtouch – pppoa3 connection. >>After re-installing Woody & Sarge, installing GNOME and re-compiling the >>kernel 2.4.20-6, the system works fine BUT the connection doesn’t work at >>all. >> >>In order to avoid Mr. Gomez’ prompt note: Read the FAQ….. I assure that I >>did so. I have the same ppp-configuration as before the re-installation, >> >> >the > > >>same options, a good /etc/resolv.conf file linked to /etc/ppp/resolv.conv >>etc. (I hope so) >> >>The big difference between the old and the new system installation: GNOME >> >> >is > > >>working well now. >> >>The behaviour of my connection is as follows: >>1)the syslog entries look good >>2)modem_run seems to be OK >>3)pppoa3 runs in 4 or 5 tasks >>4)using the debug options I can see: pppd is living >>5)the registration (chap) to my ISP is OK >>6)pppd does recognize the nameserver declarations in my resolv.conf file >>7)“ifconfig” and “route –n” both deliver good results >>8)All seems to be OK – I cannot find any suspicious problem line in >> >> >syslog… > > >>9)I know 4 IP addresses in my PC’s environment: >> 2 nameserver IP’s (defined by myself in resolv.conv) and >> 2 IP’s given to me by “route –n” (local IP and gateway-IP?) >>10) I can ping this 4 IP’s – this works fine >>11) But I cannot ping anything else: >> neither symbolic names (www.linux.org) nor the appropriate IP-addresses >>12) “nslookup” resp. “host” return connection timeout in all (in all) cases >> >>It looks like the connection between my PC, my modem (and propably to my >>ISP??) is good – but behind my ISP the line is interrupted or so…. >> >>I found a task in the speedtouch mailing list’s archive from March 2003 >>describing the same situation: no answers exist to this request. So I >> >> >guess > > >>nobody can offer a explanation / solution to this / my problem. >>I found an other task from 14.th June 2003 with a similar problem: but the >>people discuss in Dutch - and so I will never find aout the solution. >> >>I don’t understand the system’s behaviour - because I don’t understand the >>way the “ping” process does work. I don’t know neither their tasks nor the >>communication flow between “ping”, “pppd” and “pppoa3”. >> >>And so I tried to get the source files for “ping” etc - and this is my next >>problem and I hope someone can help me here: >>I have 7 resp. 8 CD’s for Woody & Sarge. >>I know /etc/apt/sources.list >>Using “dselect” & “dpkg –l” I discovered “netlink” as ping’s home-package – >>but where can I get the appropriated source files? >>I guess at least 1 of 8 CDs should cover the source files – but I'm unable >>to find them >> >>So I'm sitting here behind a huge wall and hope someone give me a hint >> >> >where > > >>I could get “ping”-sources from? >>Thank you for attention >> >> >> >>Liste de diffusion modem ALCATEL SpeedTouch USB >>Pour se désinscrire : >> >> >mailto:[EMAIL PROTECTED] > > >> >> >> >> >> > > > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : >mailto:[EMAIL PROTECTED] > > > > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: ping impossible
A little search on ping leads to http://ftp.arl.mil/~mike/ping.html by the original creator (source included)! And just for my curiosity: what does the output of 'ifconfig' look like? Ok wito wrote: >I’ve had a working speedtouch – pppoa3 connection. >After re-installing Woody & Sarge, installing GNOME and re-compiling the >kernel 2.4.20-6, the system works fine BUT the connection doesn’t work at >all. > >In order to avoid Mr. Gomez’ prompt note: Read the FAQ….. I assure that I >did so. I have the same ppp-configuration as before the re-installation, the >same options, a good /etc/resolv.conf file linked to /etc/ppp/resolv.conv >etc. (I hope so) > >The big difference between the old and the new system installation: GNOME is >working well now. > >The behaviour of my connection is as follows: >1) the syslog entries look good >2) modem_run seems to be OK >3) pppoa3 runs in 4 or 5 tasks >4) using the debug options I can see: pppd is living >5) the registration (chap) to my ISP is OK >6) pppd does recognize the nameserver declarations in my resolv.conf file >7) “ifconfig” and “route –n” both deliver good results >8) All seems to be OK – I cannot find any suspicious problem line in syslog… >9) I know 4 IP addresses in my PC’s environment: > 2 nameserver IP’s (defined by myself in resolv.conv) and > 2 IP’s given to me by “route –n” (local IP and gateway-IP?) >10)I can ping this 4 IP’s – this works fine >11)But I cannot ping anything else: > neither symbolic names (www.linux.org) nor the appropriate IP-addresses >12)“nslookup” resp. “host” return connection timeout in all (in all) cases > >It looks like the connection between my PC, my modem (and propably to my >ISP??) is good – but behind my ISP the line is interrupted or so…. > >I found a task in the speedtouch mailing list’s archive from March 2003 >describing the same situation: no answers exist to this request. So I guess >nobody can offer a explanation / solution to this / my problem. >I found an other task from 14.th June 2003 with a similar problem: but the >people discuss in Dutch - and so I will never find aout the solution. > >I don’t understand the system’s behaviour - because I don’t understand the >way the “ping” process does work. I don’t know neither their tasks nor the >communication flow between “ping”, “pppd” and “pppoa3”. > >And so I tried to get the source files for “ping” etc - and this is my next >problem and I hope someone can help me here: >I have 7 resp. 8 CD’s for Woody & Sarge. >I know /etc/apt/sources.list >Using “dselect” & “dpkg –l” I discovered “netlink” as ping’s home-package – >but where can I get the appropriated source files? >I guess at least 1 of 8 CDs should cover the source files – but I'm unable >to find them > >So I'm sitting here behind a huge wall and hope someone give me a hint where >I could get “ping”-sources from? >Thank you for attention > > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: pppd problem
Do you have user "root" literally in your adsl-file??? Try changing that to your login-name Ok Dimitrov Peter wrote: > > >>Hi Peter, the problem is that there are two different drivers for the >> >> >modem. > > >>One comes as a kernel module, the other as a user space program. You >>are trying to run the user space driver with the kernel module loaded. >> >> >Sorry, > > >>it won't work! They are fighting over the modem (the kernel module won, >>but you told pppd to use the user space driver). So first you need to >> >> >decide > > >>which driver you want to use. If it is the user space driver, follow the >>instructions at >>http://speedtouch.sourceforge.net/ >>If it is the kernel driver, go to >>http://www.linux-usb.org/SpeedTouch/ >> >> > >Hmm. I've mixed the two method...because in the second howto it is said that >"the driver itself consists of two different parts. A kernel part and a user >space part. " >But now it's getting clear!:) >The only thing what I had to do to use only the user space driver is to >remove the speedtch modul. After then I got the following result: > >Jul 4 18:33:06 atron kernel: usb.c: deregistering driver speedtch >Jul 4 18:33:10 atron modprobe: modprobe: Can't locate module char-major-6 >Jul 4 18:33:42 atron modprobe: modprobe: Can't locate module char-major-6 >Jul 4 18:34:46 atron last message repeated 2 times >Jul 4 18:35:14 atron pppd[701]: pppd 2.4.1 started by root, uid 0 >Jul 4 18:35:14 atron pppoa3[702]: pppoa3 version 1.2-beta1 started by root >(uid 0) >Jul 4 18:35:14 atron pppoa3[702]: Control thread ready >Jul 4 18:35:14 atron pppd[701]: using channel 1 >Jul 4 18:35:14 atron pppd[701]: Using interface ppp0 >Jul 4 18:35:14 atron pppd[701]: Connect: ppp0 <--> /dev/pts/3 >Jul 4 18:35:14 atron kernel: HDLC line discipline: version $Revision: 3.3 >$, maxframe=4096 >Jul 4 18:35:14 atron kernel: N_HDLC line discipline registered. >Jul 4 18:35:15 atron kernel: usb.c: usbdevfs driver claimed interface >cfe37978 >Jul 4 18:35:15 atron pppoa3[717]: host --> pppoa3 --> modem stream ready >Jul 4 18:35:15 atron pppoa3[718]: modem --> pppoa3 --> host stream ready >Jul 4 18:35:15 atron pppd[701]: sent [LCP ConfReq id=0x1 >] >Jul 4 18:35:18 atron modprobe: modprobe: Can't locate module char-major-6 >Jul 4 18:35:18 atron pppd[701]: sent [LCP ConfReq id=0x1 >] >Jul 4 18:35:21 atron pppd[701]: sent [LCP ConfReq id=0x1 >] >Jul 4 18:35:24 atron pppd[701]: sent [LCP ConfReq id=0x1 >] >Jul 4 18:35:43 atron last message repeated 6 times >Jul 4 18:35:46 atron pppd[701]: LCP: timeout sending Config-Requests >Jul 4 18:35:46 atron pppd[701]: Connection terminated. >Jul 4 18:35:46 atron pppoa3[717]: Error reading from source device >Jul 4 18:35:46 atron pppoa3[702]: Woken by a sem_post event -> Exiting >Jul 4 18:35:46 atron pppoa3[702]: Write to usb Canceled >Jul 4 18:35:46 atron pppoa3[702]: Exiting >Jul 4 18:35:46 atron pppd[701]: using channel 2 >Jul 4 18:35:46 atron pppd[701]: Using interface ppp0 >Jul 4 18:35:46 atron pppd[701]: Connect: ppp0 <--> /dev/pts/4 >Jul 4 18:35:46 atron pppoa3[733]: pppoa3 version 1.2-beta1 started by root >(uid 0) >Jul 4 18:35:46 atron pppd[701]: Script /usr/local/sbin/pppoa3 -m 1 -c -vpi >8 -vci 35 finished (pid 702), status = 0xff >Jul 4 18:35:46 atron pppoa3[733]: Control thread ready >Jul 4 18:35:46 atron kernel: usb.c: usbdevfs driver claimed interface >cfe37978 >Jul 4 18:35:46 atron pppoa3[736]: host --> pppoa3 --> modem stream ready >Jul 4 18:35:46 atron pppoa3[737]: modem --> pppoa3 --> host stream ready >Jul 4 18:35:47 atron pppd[701]: sent [LCP ConfReq id=0x2 >] >Jul 4 18:35:50 atron pppd[701]: sent [LCP ConfReq id=0x2 >] >Jul 4 18:35:50 atron modprobe: modprobe: Can't locate module char-major-6 >Jul 4 18:35:53 atron pppd[701]: sent [LCP ConfReq id=0x2 >] >Jul 4 18:36:14 atron last message repeated 7 times >Jul 4 18:36:17 atron pppd[701]: LCP: timeout sending Config-Requests >Jul 4 18:36:17 atron pppd[701]: Connection terminated. >Jul 4 18:36:17 atron pppoa3[736]: Error reading from source device >Jul 4 18:36:17 atron pppoa3[733]: Woken by a sem_post event -> Exiting >Jul 4 18:36:17 atron pppoa3[733]: Write to usb Canceled >Jul 4 18:36:17 atron pppoa3[733]: Exiting >[...] > >Now I feel that the finish is closer, but still there's something wrong. >What can it be? >Misconfiguration of config files? >-- >/etc/ppp/options: >noauth >usepeerdns >lock >noipdefault >-- >/etc/ppp/peers/adsl ># ># This file could be rename but its place is under /etc/ppp/peers ># To connect to Internet using this configuration file ># pppd call adsl, where "adsl" stands for the name of this file ># > >debug >kdebug 1 >noipdefault >defaultroute >pty "/usr/local/sbin/pppoa3 -m 1 -c -vpi 8 -vci 35" >sync >user "root" >noauth >noaccomp >nopcomp >noccp >novj >holdoff 4 >persist >maxfail 25 >usepeerdns >-- >( vpi/vci checked it is 8/35 in vnet-hungary) > >chap-secrets: >"my
[speedtouch] Re: New beta available
Edouard Gomez wrote: >Hello, > >Now that i finished school, i have some time to spend on this project, a >new beta release is available. > > Congratulations! Or did they kick you out. :-) >Sorry i did not keep track of all changes. If you want a precise >changelog, cvs is the solution... > >Btw afaik there are these changes: > - Smarter junk bytes detection/skipping > - Firmware identification > - other bugfixes >( - perhaps a change in the way the modem gets initialized) > >I know i missed at least two patches that were helping the CRC >errors... please post them again to me. > > I sent them a long time ago, and I don't really feel like making updates to your new sources again. The little omission in atm.c (regarding the congestion-bit) is still there, and I can tell you: I get tons of 'em, leading to tons of CRC-errors. And the length-error in pppoa3 is still there.. >Thanks and good testing/using. > > > I tried it (already) to no avail: lost my connection I think of unsubscribing Ok O. Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: RedHat9 Problem
Hey you two, Jon & Deano! This guy, Yad, obviously does not know what to do to get his connection running. So, instead of explaining everything about this skippable errmsg (btw mentioned several times in the mail-archive, PLUS the solution), help him on his way, please. Ok deano wrote: >I get the same error message too, Jon, but it doesn't seem to affect >anything. I read a couple of posts which suggested changing the mount >options for the USB filesystem, but I still got similar errors when I tried >changing things. > >As it doesn't seem to hurt me anywhere I elected to leave it alone! > >Best regards >Deano > >- Original Message - >From: "jon" <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]> >Sent: Friday, June 27, 2003 5:14 PM >Subject: [speedtouch] Re: RedHat9 Problem > > > > >>Hi >> >>I still get this message (once) during start up when modem_run executes. >> >> >Not > > >>sure what it means but it doesnt stop me connecting to BTopenworld. >> >>Jon >> >> >> >> >>Hello, >> >>being relatively new to Linux I decided to go with the installation of >>RedHat9 - all went really well, but now that I am trying to install my >> >> >ADSL > > >>Speedtouch USB modem connected to BTOpenworld things are a different >> >> >story. > > >>Trying the walkthrough on: >> >>webconexion.net/speedtouch/index.php >> >>though it did state it was for RedHat8 - I had no success. On rebooting >> >> >when > > >>I get to ADSL connection I receive this message: >> >>USB_control/bulk_msg: timeout >>usbdevfs: USBDEVFS_BULK failed deev 2 ep 0x85 len 512 ret -110 >> >>and being not altogether linux savvy can't really make head or tail of >> >> >this! > > >>When using lsmod I receive back: >> >>usb_uhci (unused) >>usbcore [usbnet hid usb_uhci] so I am usb_uhci. I have the USB >> >> >version > > >>of the speedtouch! Standard with the BTOpenworld ISP home plug 'n play. >> >> >(BT > > >>even states that it's only compatible with windows - though there are >>reportsand source projects on making this work with Linux - and so here I >> >> >am > > >>plodding along wearily). >> >>I have had the thing whirring away quite the thing now for over a year on >> >> >ME > > >>and then XP - though have gone and created a mutant hybrid dual-boot XP / >>RedHat9 system. - really wanted to try Linux as am fed up with Windows >> >> >doing > > >>it's own thing! >> >>I knew there would have to be some fiddling to make everything work, but >>thismodem is beginning to try me! >> >>Still no further ahead as what I was - and there are only a few specific >>routers that I can plug this modem into - but I really don't want to have >> >> >to > > >>shell out for more hardware, when what I have could work! "Could" being >> >> >the > > >>word. >> >>Anyone else got any ideas, sympathy. . . . >> >>Thank you for any reply, >> >>Regards, >>Yad. >> >>-- >> >> >-- > > >>Looking for cheaper internet access? Find loads of great offers here![1] >> >>--- Links --- >> 1 http://g.msn.com/8HMVENUK/2755??PS= >> >>Liste de diffusion modem ALCATEL SpeedTouch USB >>Pour se désinscrire : >> mailto:[EMAIL PROTECTED] >> >> >>Liste de diffusion modem ALCATEL SpeedTouch USB >>Pour se désinscrire : >> >> >mailto:[EMAIL PROTECTED] > > >> >> > > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Testers fore.........
Sure, Deano, you're right; I did not want to hurt your feelings in any way. Of course, if another firmware-version works for you: all the better & lucky you! But I tried all of them, and I kept getting errors plus shitty performance. Part of it I blamed (and still blame) on my ISP. I just repaired two big flaws in pppoa3 and I got great performance now.but still some errors. Ok deano wrote: >Yeah. Whatever you say. I use one firmware, I get CRC errors and shitty >performance. I use a different one and they stop and my performance goes >great. That's all the testing I need, mate, and it's a test that takes >minutes, not weeks, to complete. > >Best wishes, >Deano >- Original Message - >From: "Ok Overbeek (mz)" <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]> >Sent: Thursday, June 26, 2003 12:39 PM >Subject: [speedtouch] Re: Testers fore. > > > > >>Nonsense (sorry to say)! >>There are (at least) two severe errors in the software and >>I took 'em out and sent the sources to Edouard G. He did >>not spread them yet. >>I will send the updated ones to Tim, if he really wants them >>(please yell again, Tim!), but he does not experience any >>CRC-errors (real or fake), sohe will not be able >>to test them. >> >>In the meantime there are only three people more or >>less (I think: less) busy with some form of testing; >>I got no news from them (yet). >> >>And yes, the firmware you use has its influence on what you >>receive; I tested a few of them and they all have their >>peculiarities... >>And so is the 'infamous' software-buffering: switching it on >>leads indeed to a form of buffering in the modem (I think), >>leading to much larger receive-chunks.. >>Still working on this, but I got to earn some money >>in the meantime. >> >>Ok >> >>deano wrote: >> >> >> >>>I don't think your problem is with ppp at all, it's more likely the >>>microcode you're using as your modem is kicking out the errors, not the >>>pppd. What are you using? Try using something different 8) >>> >>>Rgds Deano >>> >>>- Original Message - >>>From: "Tim Woodall" <[EMAIL PROTECTED]> >>>To: <[EMAIL PROTECTED]> >>>Sent: Thursday, June 26, 2003 11:45 AM >>>Subject: [speedtouch] Re: Testers fore. >>> >>> >>> >>> >>> >>> >>>>On Wed, 18 Jun 2003, Ok Overbeek (mz) wrote: >>>> >>>> >>>> >>>> >>>> >>>>>To those with persisting CRC-errors! >>>>>Who is in for a test of an updated version of pppoa3? >>>>>This version will cure your ailments >>>>>On your request I will send you the source on your >>>>>private address. >>>>> >>>>> >>>>> >>>>> >>>>> >>>>Any more developments on this? I don't have CRC errors but I would be >>>>interested in seeing what has been changed. >>>> >>>>Regards, >>>> >>>>Tim. >>>> >>>>-- >>>>God said, "div D = rho, div B = 0, curl E = - @B/@t, curl H = J + >>>> >>>> >@D/@t," > > >>>>and there was light. >>>> >>>>http://tjw.hn.org/ http://www.locofungus.btinternet.co.uk/ >>>> >>>> >>>> >>>>Liste de diffusion modem ALCATEL SpeedTouch USB >>>>Pour se désinscrire : >>>> >>>> >>>> >>>> >>>mailto:[EMAIL PROTECTED] >>> >>> >>> >>> >>>> >>>> >>> >>>Liste de diffusion modem ALCATEL SpeedTouch USB >>>Pour se désinscrire : >>> >>> >mailto:[EMAIL PROTECTED] > > >>> >>> >>> >>> >>> >>> >> >> >>Liste de diffusion modem ALCATEL SpeedTouch USB >>Pour se désinscrire : >> >> >mailto:[EMAIL PROTECTED] > > >> >> > > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Testers fore.........
Nonsense (sorry to say)! There are (at least) two severe errors in the software and I took 'em out and sent the sources to Edouard G. He did not spread them yet. I will send the updated ones to Tim, if he really wants them (please yell again, Tim!), but he does not experience any CRC-errors (real or fake), sohe will not be able to test them. In the meantime there are only three people more or less (I think: less) busy with some form of testing; I got no news from them (yet). And yes, the firmware you use has its influence on what you receive; I tested a few of them and they all have their peculiarities... And so is the 'infamous' software-buffering: switching it on leads indeed to a form of buffering in the modem (I think), leading to much larger receive-chunks.. Still working on this, but I got to earn some money in the meantime. Ok deano wrote: >I don't think your problem is with ppp at all, it's more likely the >microcode you're using as your modem is kicking out the errors, not the >pppd. What are you using? Try using something different 8) > >Rgds Deano > >- Original Message - >From: "Tim Woodall" <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]> >Sent: Thursday, June 26, 2003 11:45 AM >Subject: [speedtouch] Re: Testers fore. > > > > >>On Wed, 18 Jun 2003, Ok Overbeek (mz) wrote: >> >> >> >>>To those with persisting CRC-errors! >>>Who is in for a test of an updated version of pppoa3? >>>This version will cure your ailments >>>On your request I will send you the source on your >>>private address. >>> >>> >>> >>Any more developments on this? I don't have CRC errors but I would be >>interested in seeing what has been changed. >> >>Regards, >> >>Tim. >> >>-- >>God said, "div D = rho, div B = 0, curl E = - @B/@t, curl H = J + @D/@t," >>and there was light. >> >> http://tjw.hn.org/ http://www.locofungus.btinternet.co.uk/ >> >> >> >>Liste de diffusion modem ALCATEL SpeedTouch USB >>Pour se désinscrire : >> >> >mailto:[EMAIL PROTECTED] > > >> >> > > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Where are the firmwares?
Did I say somewhere, that I would make that page known to the public?? I'm just creating a page for E.Gomez (on his request) and give him the address. Others, like you, can get it on request... Allright? Ok Duncan Sands wrote: >On Saturday 21 June 2003 10:05, Ok Overbeek (mz) wrote: > > >>Thanks for all your help, guys; right now >>I got a whole bunch of firmware-files and >>I will put them onto some download-page >>in due time (next week or so). I, at least, will >>NOT be reengineering these files, so I'm sure >>I am at the right side of the law by doing this. >> >> > >Why are you so sure? Also, you are not just putting yourself >at risk, you are also putting at risk those who sent you firmware. >Did they know you were planning to put them on a web page? > >Ciao, > >Duncan. > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re :Where are the firmwares?
Thanks for all your help, guys; right now I got a whole bunch of firmware-files and I will put them onto some download-page in due time (next week or so). I, at least, will NOT be reengineering these files, so I'm sure I am at the right side of the law by doing this. What do I have for the time being? The whole list, that is circulating on the net, plus an extra linux mgmt.o from Graig Whytock. So it seems there are maybe even more than the ones I got. Anyone using a firmware-file with differing md5sum, than the ones hereunder? Please send it 'alcaudsl.sys' 7d0e028a8e3901bc0b5b569c575203ef size 585408 3423810ba8d43ec7cdd01dd83698762b size 588720 aae9dd2d6ad69878d7899b24fa40cb08 size 588720 b1bc2524451b8b238fca773d8642f60a size 589776 7c1943b05623d77207e8a6eda04d42fe size 590416 d77a03513c8abddc6f95395515f2973e size 591408 aefca4891a64fd6f76d517406abd9407 size 735568 e3a564dde82b7fdc92a3128d80418b24 size 735568 8080b5ea17a763bbce6c92bbc6ceefe8 size 743136 d6652432d103b4228ffad7a754a374b5 size 748544 'firmware.bin' adae14d607b8caa6acc253feb1d82705 size 671653 'KQD6P2.eni' ed70254b584fec3f0b5277d0550b39a1 size 677641 'linux mgmt.o' b35276ce6871cc2ba8c23e50a87043ab size 536860 a1c06174a808ab72a186085c2e319264 size 534720 0ee210ea42613cf43c72310672aae6c6 size 535400 ce3582cc9c3b967baa0e918f2708075d size 535856 Ok Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re :Where are the firmwares?
Please dothat makes it complete.. TIA Ok Alain Danet wrote: >OK >I confirm : the 7d0e028a8e3901bc0b5b569c575203ef firmware (comming from >the BTO CDROM?) is used with a speedtouch ADSL modem. One of my friends >uses it with its green/blue Ray Manta alcatel modem. I don't know if >this firmware is compatible with the purple Speedtouch ST 330. >If you are still interested by this version, I can send it to your >personal mailbox. > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] RE :Where are the firmwares?
Thanks to Gilles I am now the **very** proud owner of a whole lot of firmware-files (8 of win-taste and 3 with linux-flavour). I'm still missing a few; so, if someone of you owns one with the following characteristics alcaudsl.sys windows version 1.3.1 (BTO CDROM?) md5sum 7d0e028a8e3901bc0b5b569c575203ef alcaudsl.sys windows version 1.3.4 md5sum 3423810ba8d43ec7cdd01dd83698762b mgmt.o linux original version? md5sum b35276ce6871cc2ba8c23e50a87043ab mgmt.o linux version 1.3.3 md5sum 0ee210ea42613cf43c72310672aae6c6 please send it to me. Ok Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] RE :Where are the firmwares?
Those two I already am the proud owner of.. Pas besoin de ça, mais merci. Ok Alain Danet wrote: >OK, >I have the following two version : > >alcaudsl.sys ( taille=743 136 octets et md5 = >8080b5ea17a763bbce6c92bbc6ceefe8) Company : THOMSON multimedia Product >Name : Speedtouch USB, Version : 200.7.0.0 coming from the Wanadoo Pack >Extense CDROM (modem ST330 USB purple) > > >Received from Dodo ( taille=671 653 octets et md5sum = >adae14d607b8caa6acc253feb1d82705). Neither identification nor version. >The only thing I found several times when analysing the binary is the >"alcatel" character string. > >Tell me if you want to receive one or both of them. > >Rgds > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Where are the firmwares?
Please do send them (on my personal address). Do you have the version numbers too? Waiting & TIA, Ok Gilles Espinasse wrote: >I can send you directly those I have. >I have pick some alcaudsl.sys in http://www.hifocus.net/index.php3 > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Where are the firmwares?
Can I find all 'known' versions of the firmware somewhere on the internet? I mean the files themselves, not only their md5sum's.. At the moment I got 2 of them: One is an alcaudsl.sys, size 743136, md5sum 8080b5ea17a763bbce6c92bbc6ceefe8 , the other is the 'famous' firmware.bin, size 671653, md5sum adae14d607b8caa6acc253feb1d82705 Where are those others hangin' out? Ok Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Testers fore.........
To those with persisting CRC-errors! Who is in for a test of an updated version of pppoa3? This version will cure your ailments On your request I will send you the source on your private address. Ok Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: RE : Re: RE : Re: Tout va bien
Quand tu auras du temps, crie! Ok Alain Danet wrote: >Je n'ai pas trop le temps en ce moment d'autant plus que je me demande >si je ne vais pas tout réinstaller mon système Linux car j'ai détecté >depuis quelques jour des passages en mode promiscuous de mon port eth0 >que je n'avais pas avant et que je ne m'explique pas. > >-Message d'origine- >De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] De >la part de Ok Overbeek (mz) >Envoyé : mardi 17 juin 2003 21:09 >À : [EMAIL PROTECTED] >Objet : [speedtouch] Re: RE : Re: Tout va bien > > >Hé, Alain! > >Est-ce que tu as un peu de temps libre à ce moment? >Est-ce que tu veux aussi essayer les nouveaux logiciels >pour moi, stp? >Ça doit travailler avec alcaudsl.sys aussi, je jure! > >Alors? > >Ok > > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : >mailto:[EMAIL PROTECTED] > > > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: RE : Re: Tout va bien
Hé, Alain! Est-ce que tu as un peu de temps libre à ce moment? Est-ce que tu veux aussi essayer les nouveaux logiciels pour moi, stp? Ça doit travailler avec alcaudsl.sys aussi, je jure! Alors? Ok Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Tout va bien
Okay, je les envoye à [EMAIL PROTECTED] .. Ça peut durer, j'ai toujours des problèmes à envoyer des choses aux gens @wanadoo.fr. On verra. Ok dodo wrote: >En semaine, j'ai pas le temps, mais le week-end, pourquoi pas. > >Le Mardi 17 Juin 2003 19:16, vous avez écrit : > > >>Alors, je crois que je te peux faire même plus content; mais >>il faut un petit effort de ta côté, si tu veux. >>Je peux t'envoyer un nouveau pppoa3.c et un nouveau atm.c, >>puis tu fais un essai avec eux. Après je veux savoir la >>quantité des erreurs >>D'accord? Ou pas? >> >>Ok >> >>dodo wrote: >> >> Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Tout va bien
Alors, je crois que je te peux faire même plus content; mais il faut un petit effort de ta côté, si tu veux. Je peux t'envoyer un nouveau pppoa3.c et un nouveau atm.c, puis tu fais un essai avec eux. Après je veux savoir la quantité des erreurs D'accord? Ou pas? Ok dodo wrote: >Très content je suis. >Voilà un exemple d'erreurs CRC, capturées en ce moment même: > >Jun 17 18:45:14 Pentium4 pppoa3[1915]: CRC error in an AAL5 frame >Jun 17 18:48:31 Pentium4 pppoa3[1915]: CRC error in an AAL5 frame >Jun 17 18:53:08 Pentium4 pppoa3[1915]: CRC error in an AAL5 frame >Jun 17 19:03:05 Pentium4 pppoa3[1915]: CRC error in an AAL5 frame > >Mais le débit reste très bon, rien à voir avec les problèmes que j'avais avant >(les erreurs CRC étaient beaucoup plus nombreuses). > >Il fait bon chez toi, ici, c'est à peine supportable. Même au coeur de l'été >il ne fait pas si chaud d'habitude ! > > >Le Mardi 17 Juin 2003 18:54, vous avez écrit : > > >>Alors tu es encore assez content... >>Ce qui m'intéresse: >>Ces 'quelques erreurs', c'est reproducible?? >>Et Alain, est-ce qu'il a aussi des erreurs en mêmes circonstances? >> >>Température extérieure: 20° >>Vitesse du vent: très faible de l'ouest >>Pression atmosphérique: 1 atmosphère (à peu près) >> >> >>Ok >> >>dodo wrote: >> >> >>>Le Lundi 16 Juin 2003 23:14, vous avez écrit : >>> >>> Hé, Dodo! Réveille-toi! Ça va toujours bien là-bas? Plus d'erreurs CRC?? J'attends des nouvelles.. Ok Liste de diffusion modem ALCATEL SpeedTouch USB >>>Salut Ok ! >>>Comme Alain, tout est Ok, si on peut dire. >>>J'ai toujours quelques erreurs CRC quand je fais de gros téléchargements >>>mais le débit reste très bon. Même si je repasse momentanément sous >>>Window$ et que je reviens sous Linux, pas de problème. >>> >>>Température extérieure: 33° >>>Vitesse du vent: 33 km/h d'Ouest >>>Pression atmosphérique: 1010 hP >>>Le temps est à l'orage du côté de Marseille >>> >>>@+, >>>Dodo >>> >>> >>>Liste de diffusion modem ALCATEL SpeedTouch USB >>>Pour se désinscrire : >>>mailto:[EMAIL PROTECTED] >>> >>> >>Liste de diffusion modem ALCATEL SpeedTouch USB >>Pour se désinscrire : >>mailto:[EMAIL PROTECTED] >> >> > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: RE : Re: Tout va bien
Peut-être tu fais pas de gros téléchargements?? Et la temperature à Rennes?? Hm? Y a du vent? Ok Alain Danet wrote: >De mon coté, je n'ai plus eu la moindre erreur depuis la mise en place >du firmware fournis par Dodo. >Je ne suis pas toujours sous Linux (et oui dual boot oblige!) mais je >l'ai utilisé sans arrêt depuis trois jours sans la moindre erreur CRC > >-Message d'origine- >De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] De >la part de Ok Overbeek (mz) >Envoyé : mardi 17 juin 2003 18:55 >À : [EMAIL PROTECTED] >Objet : [speedtouch] Re: Tout va bien > > >Alors tu es encore assez content... >Ce qui m'intéresse: >Ces 'quelques erreurs', c'est reproducible?? >Et Alain, est-ce qu'il a aussi des erreurs en mêmes circonstances? > >Température extérieure: 20° >Vitesse du vent: très faible de l'ouest >Pression atmosphérique: 1 atmosphère (à peu près) > > >Ok > >dodo wrote: > > > >>Le Lundi 16 Juin 2003 23:14, vous avez écrit : >> >> >> >> >>>Hé, Dodo! >>> >>>Réveille-toi! >>>Ça va toujours bien là-bas? >>>Plus d'erreurs CRC?? >>> >>>J'attends des nouvelles.. >>> >>>Ok >>> >>> >>> >>>Liste de diffusion modem ALCATEL SpeedTouch USB >>> >>> >>> >>> >>Salut Ok ! >>Comme Alain, tout est Ok, si on peut dire. >>J'ai toujours quelques erreurs CRC quand je fais de gros >> >> >téléchargements mais > > >>le débit reste très bon. Même si je repasse momentanément sous Window$ >> >> >et que > > >>je reviens sous Linux, pas de problème. >> >>Température extérieure: 33° >>Vitesse du vent: 33 km/h d'Ouest >>Pression atmosphérique: 1010 hP >>Le temps est à l'orage du côté de Marseille >> >>@+, >>Dodo >> >> >>Liste de diffusion modem ALCATEL SpeedTouch USB >>Pour se désinscrire : >> >> >mailto:[EMAIL PROTECTED] > > >> >> >> >> >> >> >> > > > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : >mailto:[EMAIL PROTECTED] > > > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Tout va bien
Alors tu es encore assez content... Ce qui m'intéresse: Ces 'quelques erreurs', c'est reproducible?? Et Alain, est-ce qu'il a aussi des erreurs en mêmes circonstances? Température extérieure: 20° Vitesse du vent: très faible de l'ouest Pression atmosphérique: 1 atmosphère (à peu près) Ok dodo wrote: >Le Lundi 16 Juin 2003 23:14, vous avez écrit : > > >>Hé, Dodo! >> >>Réveille-toi! >>Ça va toujours bien là-bas? >>Plus d'erreurs CRC?? >> >>J'attends des nouvelles.. >> >>Ok >> >> >> >>Liste de diffusion modem ALCATEL SpeedTouch USB >> >> > >Salut Ok ! >Comme Alain, tout est Ok, si on peut dire. >J'ai toujours quelques erreurs CRC quand je fais de gros téléchargements mais >le débit reste très bon. Même si je repasse momentanément sous Window$ et que >je reviens sous Linux, pas de problème. > >Température extérieure: 33° >Vitesse du vent: 33 km/h d'Ouest >Pression atmosphérique: 1010 hP >Le temps est à l'orage du côté de Marseille > >@+, >Dodo > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Tout va bien
Hé, Dodo! Réveille-toi! Ça va toujours bien là-bas? Plus d'erreurs CRC?? J'attends des nouvelles.. Ok Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: LCP errors when connecting with SpeedTouch
Check out all occurrences of 'LCP' in the mail-archive and come back, when you don't find a solution.. Ok Venkatesulu Prema-MGI0516 wrote: >Hi, > >I am running MontaVista Linux and I am trying to connect an Alcatel USB >Modem (SpeedTouch 330). I have followed the "SpeedTouchUSB-HOWTO using >Benoit Papillault's OpenSource Drivers".I am getting pretty close but I >cannot get a successful connection.When I look in /var/log/messages I >see the following. > >Jan 1 00:00:31 172 modem_run[159]: ADSL synchronization has been obtained >Jan 1 00:00:31 172 modem_run[159]: ADSL line is up (768 kbit/s down | 256 >kbit/s up) >Jan 1 00:00:32 172 pppd[182]: pppd 2.4.1 started by root, uid 0 >Jan 1 00:00:32 172 pppd[182]: Using interface ppp0 >Jan 1 00:00:32 172 pppd[182]: Connect: ppp0 <--> /dev/pts/0 >Jan 1 00:01:03 172 pppd[182]: LCP: timeout sending Config-Requests >Jan 1 00:01:03 172 pppd[182]: Connection terminated. > > >When I type ifconfig -a, I see the following: > >ppp0 Link encap:Point-to-Point Protocol >POINTOPOINT NOARP MULTICAST MTU:1500 Metric:1 >RX packets:22 errors:0 dropped:0 overruns:0 frame:0 >TX packets: 0 errors:0 dropped:0 overruns:0 carrier:0 >collisions: 0 txquelen:3 >Rx bytes: 478 (478.0 b) Tx bytes: 0 (0.0 b) > >I have looked at previous emails and they say that this can happen when vpi >and vci are set incorrectly. I have verified that my settings are correct >vpi is 0 and vci is 35, but I still cannot get a connection. > >Does anyone have any suggestions as to how I can get a connection and access >the internet? > >Thanks. >Prema > > > > > > > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Speedtouch adsl
Gerard Visser wrote: >Meneer, >Allereerst waardeer ik het dat u regelmatig mensen blijft voorzien van >antwoorden en aanwijzingen. > Dat wil ik zelf ook graag als ik iets weten wil.. >Ik lees de antwoorden op de berichten wel degelijk maar wellicht begrijp ik >de verstrekte informatie soms niet. >Het is begrijpelijk dat het helpen van mensen die niet thuis zijn in deze >materie lastig is omdat ze vaak hetzelfde vragen en regelmatig naar de >overbekende weg. > Er is zowel op internet (zie bijvoorbeeld de opmerkingen van Jonathan) als in de boekwinkel genoeg ondersteuning te vinden voor Linux-gebruikers. Het probleem (of juist voordeel!) is gelegen in het feit, dat Linux nou eenmaal een 'help-yourself' systeem is..er zijn dus nooit kant en klare oplossingen , laat staan complete documentatie, maar 'men' doet zijn best. Er zijn blijkbaar overal hobbyisten of semi-profs te vinden, die wel iets willen bijdragen aan Linux (en alle sub-onderdeeltjes, zoals het speedtouch-gedoe). Zo werkt u zelf met Ximian Evolution als meel-client, maar er zijn er nog wel een paar honderd; en als u dat interesseert en u daar tijd aan wilt besteden, kunt u aan de software een bijdrage leveren: sources zijn altijd beschikbaar en als u een prachtige oplossing heeft voor een lopend probleempje, dient u dat gewoon in bij de 'beheerders' van de programmatuur. Dat is toch weer even andere koek dan de spullen van Microsuf (of ook IBM!); da's altijd slikken of stikken en updates komen het volgende jaar wel weer 'es...ja, maar wel eerst betalen! >Ik heb gelezen dat u in de automatisering hebt gewerkt en dat is duidelijk >uit uw antwoorden te merken. U tracht de mensen zelf dingen te laten >begrijpen uit de vaak cryptische antwoorden die worden gegeven op hun >vragen. Ik heb zelf jaren als software mgr bij IBM gewerkt. > Ik zat/zit nou eenmaal meer in de systeemprogrammering & netwerken >Naar mijn mening ontbreekt het de meeste mensen aan elementaire kennis van >het geen ze gaan installeren en of uitvoeren. Voor mij gaat dit wat linux >betreft zeker ook op. > U wilt toch niet beweren, dat de gemiddelde gebruiker ook maar ENIG benul heeft van wat-ie doet, als-ie iets van Microsuf installeert?? >Voor de meesten moet internet werken en mail dient verzonden en ontvangen te >kunnen worden. En dat is het dan. > Maa, als dat het enige is, wat u wilt: gebruik dan geen Linux!! Neem dan de spullen van Microsuf of, beter nog: koop een Mac. >Wat het dns in resolv.conf doet, wanneer het aangeroepen etc wordt vind ik >interessant. Ik zou het interessant vinden om het principe van deze >communicatie te begrijpen. >Welke info in deze file moet worden gezet is nergens naar mijn weten precies >aangegeven. De informatie van de (mijn) provider bevatte ze echter niet. >Er is feitelijk "bijna" niemand die een verwijzing of hint geeft tav te >raadplegen documentatie of literatuur. > > > Boekjes kopen en lezen.of Jonathan bellen ;-) Overigens ligt er ook wel het een en ander bij 'de Slegte' in de ramsj; ik zag daar laatst 'Linux in 24 uur' liggen voor een paar euro; is, geloof ik, wel een aardig boekje > >Gegroet en bedankt, > >gerard visser > > > Van hetzelfde; overigens weet ik nu al, wat uw volgende vraag gaat worden, maar dat vertel ik nog niet :-) Ok O > >- Original Message - >From: "Ok Overbeek (mz)" <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]> >Sent: Sunday, June 15, 2003 9:42 AM >Subject: [speedtouch] Re: Speedtouch adsl > > > > >>U leest uw berichten niet.. >>Ik heb u laten pingen naar 216.239.33.100 en dat lukte; dit betekent >>dat u gewoon verbinding naar buiten hebt, alleen uw /etc/resolv.conf >>bevat nog foutjes (denk ik). >>Het ip-adres van www.hccnet.nl is 62.251.0.16; als u dit pingt, zult >>u zien dat dat ook lukt. >> >>Ok >> >> >> >>Gerard Visser wrote: >> >> >> >>>Who can provide a solution? >>>Due to the met problems i reinstalled red hat linux 8.0 and the >>> >>> >speedtouch > > >>>business. >>>After having set up the system i have exactly the same problems as >>> >>> >before. > > >>>The system reached a connection to my isp. (two seady green indicators) >>> >>>The problem is that i can browse the web and i can't send ir receive >>> >>> >email. > > >>>I have teh feeling that i have to put the userid and password of my >>> >>> >s
[speedtouch] Re: Speedtouch adsl
U leest uw berichten niet.. Ik heb u laten pingen naar 216.239.33.100 en dat lukte; dit betekent dat u gewoon verbinding naar buiten hebt, alleen uw /etc/resolv.conf bevat nog foutjes (denk ik). Het ip-adres van www.hccnet.nl is 62.251.0.16; als u dit pingt, zult u zien dat dat ook lukt. Ok Gerard Visser wrote: >Who can provide a solution? >Due to the met problems i reinstalled red hat linux 8.0 and the speedtouch >business. >After having set up the system i have exactly the same problems as before. >The system reached a connection to my isp. (two seady green indicators) > >The problem is that i can browse the web and i can't send ir receive email. >I have teh feeling that i have to put the userid and password of my service >provider somewhere. I put the adsl userid and pasword in the file >/etc/ppp/peers/adsl and the the /etc/ppp/chap-secrets and pap-secrets files. > >The dns of my isp i can ping but i can't ping the adress like www,hccnet.nl >Is it possible that i did not install all the necessary software?.. > >Syslog output > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Fw: speedtouchmodem
Ok Overbeek (mz) wrote: >Probeert u eens: > >ping 216.239.33.100 > >Geeft dat nog steeds stilte? > > > dat gaf dus geen stilte.. U heeft nog een DNS-probleem Laat u de inhoud van file /etc/resolv.conf eens zien Daar moet o.a. een regeltje staan met: nameserver xxx.xxx.xxx.xxx waarbij xxx etc een nameserver van uw provider is Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Fw: speedtouchmodem
Probeert u eens: ping 216.239.33.100 Geeft dat nog steeds stilte? Ok Gerard Visser wrote: >Hierbij de gevraagde informatie > > >--- > >[EMAIL PROTECTED] root]# ifconfig > >lo Link encap:Local Loopback > >inet addr:127.0.0.1 Mask:255.0.0.0 > >UP LOOPBACK RUNNING MTU:16436 Metric:1 > >RX packets:18 errors:0 dropped:0 overruns:0 frame:0 > >TX packets:18 errors:0 dropped:0 overruns:0 carrier:0 > >collisions:0 txqueuelen:0 > >RX bytes:1396 (1.3 Kb) TX bytes:1396 (1.3 Kb) > >ppp0 Link encap:Point-to-Point Protocol > >inet addr:62.251.69.61 P-t-P:195.190.240.103 Mask:255.255.255.255 > >UP POINTOPOINT RUNNING NOARP MULTICAST MTU:1500 Metric:1 > >RX packets:3 errors:0 dropped:0 overruns:0 frame:0 > >TX packets:3 errors:0 dropped:0 overruns:0 carrier:0 > >collisions:0 txqueuelen:3 > >RX bytes:54 (54.0 b) TX bytes:54 (54.0 b) > > >-- > >[EMAIL PROTECTED] root]# route > >Kernel IP routing table > >Destination Gateway Genmask Flags Metric Ref Use Iface > >195.190.240.103 * 255.255.255.255 UH 0 0 0 ppp0 > >127.0.0.0 * 255.0.0.0 U 0 0 0 lo > >default 195.190.240.103 0.0.0.0 UG 0 0 0 ppp0 > >[EMAIL PROTECTED] root]# > >- Original Message - >From: "Ok Overbeek (mz)" <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]> >Sent: Thursday, June 12, 2003 8:53 AM >Subject: [speedtouch] Re: Fw: speedtouchmodem > > > > >>Laat u eens het resultaat zien van: >>'ifconfig' en 'route' (beide als root uit te voeren) >> >> >d > > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Fw: speedtouchmodem
Laat u eens het resultaat zien van: 'ifconfig' en 'route' (beide als root uit te voeren) Ok Gerard Visser wrote: >De verbinding blijft prima staan. >Het probleem blijft de bereikbaarheid van de provider. > >ping www.hccnet.net slaagt niet. >ping 62.251.69.61 werkt prima. > >Het probleem is de link tussen die twee. >gerard. >----- Original Message - >From: "Ok Overbeek (mz)" <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]> >Sent: Sunday, June 08, 2003 4:43 PM >Subject: [speedtouch] Re: Fw: speedtouchmodem > > > > >>Waarschijnlijk blijft de verbinding niet staan..misschien >>omdat u nog niet (succecvol) ingelogd bent. Daarom vraag >>ik wat er nog meer in de syslog staat >>Lees anders eerst nog eens goed in de how-to's, bijv.: >> >>http://vdmjoris.be/web/linux/speedtouch/index.html >> >>Ok >> >>Gerard Visser wrote: >> >> >> >>>Mijnheer, >>> >>>Wat ik mij voorstel is dat ik net als met o.e. en de i.e. een verbinding >>>opbouw en dan communiseer met het buitenleven. >>>Met isdn maakte ik een netwerkverbinding maar met adsl is de verbinding >>> >>> >al > > >>>gerealiseerd. Dus het is mij onduidelijk wat ik zou moeten proberen/doen. >>>Waar kan ik lezen hoe ik in dit geval de browser en het email programma >>> >>> >kan > > >>>laten communiseren via de adsl verbinding.. >>>- Original Message - >>>From: "Ok Overbeek (mz)" <[EMAIL PROTECTED]> >>>To: <[EMAIL PROTECTED]> >>>Sent: Sunday, June 08, 2003 3:51 PM >>>Subject: [speedtouch] Re: Fw: speedtouchmodem >>> >>> >>> >>> >>> >>> >>>>Jun 8 15:11:56 localhost pppd[1182]: local IP address 62.251.69.61 >>>>Jun 8 15:11:56 localhost pppd[1182]: remote IP address 195.190.240.103 >>>>Jun 8 15:11:56 localhost pppd[1182]: primary DNS address 62.251.0.6 >>>>Jun 8 15:11:56 localhost pppd[1182]: secondary DNS address 62.251.0.7 >>>> >>>> >>>>U bent verbonden..wat gebeurt er daarna in de syslog?? >>>>En hoe weet u dat er geen verbinding is; wat probeert u dan? >>>> >>>> >>>> >>>> >>>> >>> >>>Liste de diffusion modem ALCATEL SpeedTouch USB >>>Pour se désinscrire : >>> >>> >mailto:[EMAIL PROTECTED] > > >>> >>> >>> >>> >>> >>> >> >> >>Liste de diffusion modem ALCATEL SpeedTouch USB >>Pour se désinscrire : >> >> >mailto:[EMAIL PROTECTED] > > >> >> >> > > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Fw: speedtouchmodem
Waarschijnlijk blijft de verbinding niet staan..misschien omdat u nog niet (succecvol) ingelogd bent. Daarom vraag ik wat er nog meer in de syslog staat Lees anders eerst nog eens goed in de how-to's, bijv.: http://vdmjoris.be/web/linux/speedtouch/index.html Ok Gerard Visser wrote: >Mijnheer, > >Wat ik mij voorstel is dat ik net als met o.e. en de i.e. een verbinding >opbouw en dan communiseer met het buitenleven. >Met isdn maakte ik een netwerkverbinding maar met adsl is de verbinding al >gerealiseerd. Dus het is mij onduidelijk wat ik zou moeten proberen/doen. >Waar kan ik lezen hoe ik in dit geval de browser en het email programma kan >laten communiseren via de adsl verbinding.. >- Original Message - >From: "Ok Overbeek (mz)" <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]> >Sent: Sunday, June 08, 2003 3:51 PM >Subject: [speedtouch] Re: Fw: speedtouchmodem > > > > >>Jun 8 15:11:56 localhost pppd[1182]: local IP address 62.251.69.61 >>Jun 8 15:11:56 localhost pppd[1182]: remote IP address 195.190.240.103 >>Jun 8 15:11:56 localhost pppd[1182]: primary DNS address 62.251.0.6 >>Jun 8 15:11:56 localhost pppd[1182]: secondary DNS address 62.251.0.7 >> >> >>U bent verbonden..wat gebeurt er daarna in de syslog?? >>En hoe weet u dat er geen verbinding is; wat probeert u dan? >> >> >> > > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Fw: speedtouchmodem
Jun 8 15:11:56 localhost pppd[1182]: local IP address 62.251.69.61 Jun 8 15:11:56 localhost pppd[1182]: remote IP address 195.190.240.103 Jun 8 15:11:56 localhost pppd[1182]: primary DNS address 62.251.0.6 Jun 8 15:11:56 localhost pppd[1182]: secondary DNS address 62.251.0.7 U bent verbonden..wat gebeurt er daarna in de syslog?? En hoe weet u dat er geen verbinding is; wat probeert u dan? Ok Gerard Visser wrote: >Luxanians, >Ik heb de suggstie uitgevoerd en "alcaudsl.sys" aangebracht. >Na startadsl >Beide lampjes branden permanent "groen" op het modem. >Ik krijg de volgende reaktie terug op startADSL en in het sys/msglog zie >hieronder. >Wat is nu de situatie? >Is het nu zo dat het zou moeten werken? Zowel de mailserververs als mozilla >geven qua communictie niet thuis. >Welke instellingen moet ik nu nog maken? >***terminal window* >[EMAIL PROTECTED] root]# ./startadsl > >ppp0 Link encap:Point-to-Point Protocol > >inet addr:62.251.69.61 P-t-P:195.190.240.103 Mask:255.255.255.255 > >UP POINTOPOINT RUNNING NOARP MULTICAST MTU:1500 Metric:1 > >RX packets:3 errors:0 dropped:0 overruns:0 frame:0 > >TX packets:3 errors:0 dropped:0 overruns:0 carrier:0 > >collisions:0 txqueuelen:3 > >RX bytes:54 (54.0 b) TX bytes:54 (54.0 b) > >[EMAIL PROTECTED] root]# > >*SYSLOG >Jun 8 15:11:30 localhost kernel: CSLIP: code copyright 1989 Regents of the >University of California > >Jun 8 15:11:30 localhost kernel: PPP generic driver version 2.4.2 > >Jun 8 15:11:30 localhost kernel: HDLC line discipline: version $Revision: >3.3 $, maxframe=4096 > >Jun 8 15:11:30 localhost kernel: N_HDLC line discipline registered. > >Jun 8 15:11:30 localhost modem_run[1179]: modem_run version 1.2-beta1 >started by root uid 0 > >Jun 8 15:11:32 localhost kernel: usb_control/bulk_msg: timeout > >Jun 8 15:11:32 localhost kernel: usbdevfs: USBDEVFS_BULK failed dev 6 ep >0x85 len 512 ret -110 > >Jun 8 15:11:54 localhost modem_run[1179]: ADSL synchronization has been >obtained > >Jun 8 15:11:54 localhost modem_run[1179]: ADSL line is up (256 kbit/s down | >64 kbit/s up) > >Jun 8 15:11:54 localhost pppd[1182]: pppd 2.4.1 started by root, uid 0 > >Jun 8 15:11:54 localhost pppd[1182]: Using interface ppp0 > >Jun 8 15:11:54 localhost pppd[1182]: Connect: ppp0 <--> /dev/pts/3 > >Jun 8 15:11:54 localhost pppoa3[1184]: pppoa3 version 1.2-beta1 started by >root (uid 0) > >Jun 8 15:11:54 localhost pppoa3[1184]: Control thread ready > >Jun 8 15:11:54 localhost pppoa3[1190]: host --> pppoa3 --> modem stream >ready > >Jun 8 15:11:54 localhost pppoa3[1191]: modem --> pppoa3 --> host stream >ready > >Jun 8 15:11:54 localhost /etc/hotplug/net.agent: assuming ppp0 is already up > >Jun 8 15:11:56 localhost pppd[1182]: local IP address 62.251.69.61 > >Jun 8 15:11:56 localhost pppd[1182]: remote IP address 195.190.240.103 > >Jun 8 15:11:56 localhost pppd[1182]: primary DNS address 62.251.0.6 > >Jun 8 15:11:56 localhost pppd[1182]: secondary DNS address 62.251.0.7 > >***- > Original Message - >From: "Jonathan (Don Johnny)" <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]> >Sent: Thursday, June 07, 2001 1:21 PM >Subject: [speedtouch] Re: Fw: speedtouchmodem > > > > >>installeer gewoon de software van speedtouch.sourceforge.net >>en pak daarna de microcode van je modem uit je windows (waarschijnlijk: >>c:\windows\system32\alcaudsl.sys of in system ipv system32 ;-) en dan zou >>alles gewoon moeten werken >> >> > > > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Archive gone?
The mail-archive seemed to have had a 'slight' technical disaster and is completely off the air. Look at www.mail-archive.com (the main-page) itself to see the status. Ok Tim Woodall wrote: >Does anyone know what has happened to the mailing list archive? > >I am having some problems talking someone setting up a system with >a frog with a serial number that ends in 02. (I set the machine up with >my 05 frog and it worked for me. Username and password have been changed >but I'm pretty sure they are correct. Anyone with a btclick account got >any tips?) > >modem_run completes successfully and ADSL sync is obtained but pppd only >gets as far as starting pppoa3 and then there is no further info. > >(I haven't yet tried turning on pppoa3 logging as I am trying to debug >this over the telephone at the moment. Maybe I'm going to have to pay a >visit :-( ) > >I'm sure I remember something like this from years ago but I can't find >the list archive to look for any solutions. > >Anyone got any ideas? (Either how to solve my problem or where to find >the list archive) > >Regards, > >Tim. > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Tout va bien
Et pour ceux qui comprennent mal l'anglais, je traduis (à peu près): En considérant la température exterieure, tu dois habiter à Marseille (ou dans les environs). Bon courage là bas, tout va bien. Est-ce que tu peux nous donner des nouvelles tous les jours (à six heures du soir par exemple) pendant deux semaines? D'accord? Merci, Ok Ok Overbeek (mz) wrote: >Hé, Dodo! >Considering the outside temperature, you're living in >Marseille (or nearby). >Keep spirits high out there, ev'rything going okay. > >Could you keep us informed everyday around this time >for two weeks or so? > >Thank you, > >Ok > >dodo wrote: > > > >>Modèle ST330 pourpre >>Une seule erreur CRC à signaler aujourd'hui, à 16h40. >>Vitesse de croisière: 63 ko/s >>Température extérieure: 27° >> >>Rien à signaler >> >> >> >>Liste de diffusion modem ALCATEL SpeedTouch USB >>Pour se désinscrire : mailto:[EMAIL PROTECTED] >> >> >> >> >> >> >> >> > > > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Tout va bien
Hé, Dodo! Considering the outside temperature, you're living in Marseille (or nearby). Keep spirits high out there, ev'rything going okay. Could you keep us informed everyday around this time for two weeks or so? Thank you, Ok dodo wrote: >Modèle ST330 pourpre >Une seule erreur CRC à signaler aujourd'hui, à 16h40. >Vitesse de croisière: 63 ko/s >Température extérieure: 27° > >Rien à signaler > > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Les meilleurs choses ont une fin
Moi, je connais pas le pack extense de wanadoo; j'habite les Pays Bas, alors.. Mais tu dois m'expliquer une chose, si tu veux: La vitesse de 'download' est normalement donné pas en kilo-octets/sec mais en kilo-bits/sec. Alors la vitesse idéale maximale de download est 512/8 = 64 K octet/sec. Mais: j'ai dit 'idéale', car la situation sur l'internet est très d'idéale. L'obstruction des autres (des gens et des machines) donne des dégradations de 10 à 20%, et regulièrement plus que ça... Par example: moi, j'ai une connection de 256 Kb/sec de download, ça veut dire a peu près 32 Ko/sec. Jamais, mais réellement j'ai vu cette vitesse, ni sous Linux, ni sous Windows. Ma vitesse maximale est de 26,9 Ko/s Pourquoi ai-je dit tout ça? Parce que tu parle d'une vitesse surhumaine de 63 Ko/sec! Tu dois admettre: c'est pas possible, hein? Alors, qu'est-ce que tu a fait? Pas vidé la cache de ton browser? Peutêtre ton wanadoo mets des choses dans son 'cache'? Ciao, Ok dodo wrote: >512 ko en download, en upload, je crois que c'est 128 ko. C'est le pack >extense de wanadoo. > > >Le Jeudi 29 Mai 2003 20:58, vous avez écrit : > > >>Hi Dodo! >> >>Just to satisfy my curiosity: >>What type of connection did your isp sell you? >>I mean, how many Kb up and down?? >> >>Ok >> >>dodo wrote: >> >> >>>Cause today, I downloaded at 63 ko/s and 2 days ago, it was only 10-12 >>>Ko/s ! So, i don't know if it is the firmware or if it's because I have >>>unplugged the modem but, now it works fine. And it seems I'm not alone in >>>this case. The only thing I am sure, it's when I rebooted under Window$, >>>the modem didn't work anymore. >>> >>>Liste de diffusion modem ALCATEL SpeedTouch USB >>>Pour se désinscrire : >>>mailto:[EMAIL PROTECTED] >>> >>> >>Liste de diffusion modem ALCATEL SpeedTouch USB >>Pour se désinscrire : >>mailto:[EMAIL PROTECTED] >> >> > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Les meilleurs choses ont une fin
Hi Dodo! Just to satisfy my curiosity: What type of connection did your isp sell you? I mean, how many Kb up and down?? Ok dodo wrote: >Cause today, I downloaded at 63 ko/s and 2 days ago, it was only 10-12 Ko/s ! >So, i don't know if it is the firmware or if it's because I have unplugged the >modem but, now it works fine. And it seems I'm not alone in this case. >The only thing I am sure, it's when I rebooted under Window$, the modem didn't >work anymore. > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Les meilleurs choses ont une fin
Enough miracles today, I think... Of course I also tried this firmware.bin from that site and it did not bring any improvement (compared to the windhoze alcudsl.sys I tried; size 743136). I think you were just lucky yesterday, dodo, it being a quiet internet-day, because a lot of people were on the road to overfilled places, where they could bother each other on their 4-day holiday. I just sent a new pppoa3 to Edouard and he will take care of spreading it (I hope). This will solve a lot of your troubles (I hope again). Good luck, Ok dodo wrote: >Le Jeudi 29 Mai 2003 17:27, vous avez écrit : > > >>dodo ([EMAIL PROTECTED]) wrote: >> >> >>>The problem has been resolved with another version of the firmware >>> >>> >>Pourrait tu me dire si le firmware disponible sur le site du driver >>fonctionne correctement avec le stusb 330 ? >> >>http://speedtouch.sourceforge.net/files/firmware.bin >> >>Merci. >> >> > >Il y a tellement de versions qu'en plus je renomme que je ne sais plus trop où >j'en suis et quelle est la version que j'ai actuellement. >En tout cas, c'est bien un firmware.bin qui fait 671653 octets > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: RE : Miracle !
dodo wrote: >Oui, ça tombe bien :-) >Enfin, j'espère qu'on finira tous par y arriver. >Regardez ça si c'est pas beau : > >[EMAIL PROTECTED] SiteWeb]# tail -f /var/log/messages|grep CRC >May 28 17:57:07 Pentium4 pppoa3[2674]: CRC error in an AAL5 frame >May 28 22:05:20 Pentium4 pppoa3[2674]: CRC error in an AAL5 frame > > Oh my god, you have been (shop)lifted on ascension-day! You are still running 'pppoa3', while the program in the Hi-Focus bundle is called 'pppoeci'.. As a matter of fact I tried to get pppoeci running, but couldn't; it knows a lot of usb-modems, but not the speedtouch (alas). Somehow something changed at your isp without you knowing it.. Ok >2 erreurs de CRC en 5 heures, le rêve :-) > > >Le Mercredi 28 Mai 2003 22:49, vous avez écrit : > > >>Puis c'est un jour de miracle demain, n'est ce pas?? >> >> >> >>Liste de diffusion modem ALCATEL SpeedTouch USB >>Pour se désinscrire : >>mailto:[EMAIL PROTECTED] >> >> > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: RE : Miracle !
Puis c'est un jour de miracle demain, n'est ce pas?? Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: RE : Miracle !
Gilles Espinasse wrote: >Je ne sais pas exactement comment est le script standard parce que je >n'utilise pas mais étant donné les limites dans la manoeuvre du modem, c'est >toujours assez semblable. >Si tu ne débranches pas le modem et que modem_run reste actif, le firmware >n'est pas rechargé même si on change le mgmt.o. Si on arrête modem_run >firmware chargé, on est dans une voie sans issue ou il faut soit faire un >reset de l'usb soit débrancher le modem. > > > Alors: ça marche encore après avoir fait un 'reboot'? Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Solving CRC-errors: help again!
I saw you mentioning this before, but my knowledge of usb-management (let alone asynchronous urbs is small); where can I find info on this? Plus the fact, that I promised to try the kernel-mode progs... Ah yes, it keeps me from regular work.. Ciao too, Ok Duncan Sands wrote: >>What I do at the moment is: >>get from usb >>write into pipe >>get from usb >>write into pipe >>etc. >>I can't get any faster that that (prio is -20) >> >> > >Yes you can: submit urbs asynchronously. >Then the processor can get on with the write >into the pipe business while the USB hub is >(at the same time! <== note this!) busy >DMAing new data into the urb. You will need >more than one buffer for the urbs though. > >Ciao, > >Duncan. > > >Liste de diffusion modem ALCATEL SpeedTouch USB >Pour se désinscrire : mailto:[EMAIL PROTECTED] > > > > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Solving CRC-errors: help again!
It looks like glued together frames, I remember seeing a filler-cell with a normal pti of 0. According to what I find on internet, this should be negotiable with the isp, when a connection is up. I read something about the qos and the setting of a Maximum Burst Size...does that ring 1 or more bells at your end? And: about the 330 sending its data too fast. What I do at the moment is: get from usb write into pipe get from usb write into pipe etc. I can't get any faster that that (prio is -20) Ok PS I did not use your old stuff, sorry. Tim Woodall wrote: >On Wed, 28 May 2003, Ok Overbeek (mz) wrote: > > > >>Don't look at the CRC-stuff; it could never interfere... >>It is the size of the block I get (straight from the incoming >>urb)!! >> >> >> >> >Ok. I've got an idea - no guarantees though. > >Given the size of your reads, multiple frames are being sent over the >USB link back to back. 3392 is the maximum read size we do. > >Now maybe the 330 is sending data before the second frame is complete, so >you are getting one complete and one incomplete frame. > >I don't think we handle joining the next USB read to the last USB read >unless only complete frames are being read. > >Regards, > >Tim. > > > > >>>On Wed, 28 May 2003, Ok Overbeek (mz) wrote: >>> >>> >>> >>> >>> >>>>Still hacking along, guys; I made a simple >>>>pipe-version for the usb-read-part, but >>>>that gave no difference. >>>>In the meantime I found something else though: >>>>I always get a CRC-error, when the amount of >>>>data as read from the modem is abnormally (??) >>>>large, i.e. larger than 1696.. >>>> >>>>The regular sort of data-chunk I get is 53 bytes >>>>(1 cell) or 159 bytes (3 cells) and from time to >>>>time something larger, but these top em all: >>>> >>>> >>>>ATM cells read from usb (3339 bytes long) >>>>ATM cells read from usb (1855 bytes long) >>>>ATM cells read from usb (2120 bytes long) >>>>ATM cells read from usb (2597 bytes long) >>>>ATM cells read from usb (3339 bytes long) >>>>ATM cells read from usb (2650 bytes long) >>>> >>>>Questions: >>>>Is it normal? >>>> >>>> >>>> >>>> >>>Don't know. >>> >>> >>> >>> >>> >>>>If no, what can I do about it? >>>> >>>> >>>> >>>> >>>> >>>Try disabling software buffering? >>> >>>Anything over 1696 is definitely[1] two IP frames being joined back to back. >>>Maybe there is a bug in the code when this happens. >>> >>>Regards, >>> >>>Tim. >>> >>>p.s. I seem to recall the CRC check is done at the end of the buffer read >>> >>> >>>from the USB. If two frames have been joined then we are probably doing the >> >> >>>CRC wrong. I'll have a look in a minute >>> >>>[1] Ok, not definitely but does anyone know of an isp with an MTU >1500? :-) >>> >>> >>> >>> >> >> >>Liste de diffusion modem ALCATEL SpeedTouch USB >>Pour se désinscrire : mailto:[EMAIL PROTECTED] >> >> >> >> >> > > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Solving CRC-errors: help again!
Don't look at the CRC-stuff; it could never interfere... It is the size of the block I get (straight from the incoming urb)!! Tim Woodall wrote: >On Wed, 28 May 2003, Ok Overbeek (mz) wrote: > > > >>Still hacking along, guys; I made a simple >>pipe-version for the usb-read-part, but >>that gave no difference. >>In the meantime I found something else though: >>I always get a CRC-error, when the amount of >>data as read from the modem is abnormally (??) >>large, i.e. larger than 1696.. >> >>The regular sort of data-chunk I get is 53 bytes >>(1 cell) or 159 bytes (3 cells) and from time to >>time something larger, but these top em all: >> >> >>ATM cells read from usb (3339 bytes long) >>ATM cells read from usb (1855 bytes long) >>ATM cells read from usb (2120 bytes long) >>ATM cells read from usb (2597 bytes long) >>ATM cells read from usb (3339 bytes long) >>ATM cells read from usb (2650 bytes long) >> >>Questions: >>Is it normal? >> >> > >Don't know. > > > >>If no, what can I do about it? >> >> >> >Try disabling software buffering? > >Anything over 1696 is definitely[1] two IP frames being joined back to back. >Maybe there is a bug in the code when this happens. > >Regards, > >Tim. > >p.s. I seem to recall the CRC check is done at the end of the buffer read >from the USB. If two frames have been joined then we are probably doing the >CRC wrong. I'll have a look in a minute > >[1] Ok, not definitely but does anyone know of an isp with an MTU >1500? :-) > > Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Solving CRC-errors: help again!
Still hacking along, guys; I made a simple pipe-version for the usb-read-part, but that gave no difference. In the meantime I found something else though: I always get a CRC-error, when the amount of data as read from the modem is abnormally (??) large, i.e. larger than 1696.. The regular sort of data-chunk I get is 53 bytes (1 cell) or 159 bytes (3 cells) and from time to time something larger, but these top em all: ATM cells read from usb (3339 bytes long) ATM cells read from usb (1855 bytes long) ATM cells read from usb (2120 bytes long) ATM cells read from usb (2597 bytes long) ATM cells read from usb (3339 bytes long) ATM cells read from usb (2650 bytes long) Questions: Is it normal? If no, what can I do about it? Ok Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Error reading usb urb
Piero Filippin wrote: >WinXP is not SO agile ;) I tested my speedtouch with LATEST drivers >under windows XP. > >1) I get the same numbers of disconnection (I've called my ISP for >assistance) >2) Winxp keep to say me I'm connected for a lot of time... Even if >cannot send or receive packet. >3) If when I see that connection is gone and try to stop ip, Windows XP >simply hangs, cpu go 100%, >programs start to crash and I must hard reset my pc In linux i can >do automatic reconnection in >a minute with crontab, without any problem... > >So I thing Linux vs Windows 1-0 > > > Yeah, yeah, sure..cron-ning for a reconnection.. But, as this smells of a (electro)mechanical problem, I would like to ask again: Are you REALLY SURE, that no one hassled up your telephone connection somewhere down the line; I mean, have "they" been busy in the street somewhere or in the building, where you're staying (your cabling near the computer may be correct, but there is more than just a USB-cable...)? Please check it out and, if negative, have a nice fight with your ISP... Ok Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Error reading usb urb
Piero Filippin wrote: >Cabling are the same. >From Windows I got a disconnection in 24 hors, but then pc crashed >(that's why I use linux as inetrnet server on my lan - 3 months without >a reboot) > >It seems that pppoa3 stops when it receive an error on USB (my VIA >chipset is famous for it's buggy USB support), instead of try again >(I've seen a lot of other people log, but "error reading usr urb" is >NEVER the first error, but appears after other errors) > > > Did you take a look at the amount of USB-errors, while using winxp? You can see that in 'dragdiag'; maybe you can get an idea of the reason of your problems..and winxp may be more agile in solving the temporary disconnections (sigh). Ok Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: Error reading usb urb
Piero Filippin wrote: >What's can be the problem? Can be a my IPS problem? I'm now testing >speedtouch on a winxp and i get some disconnect, but I find REALLY >strange my ISP decided to have problems EXACTLY when I upgraded. > > > Hi Piero! Did you check your cabling? Did you change it lately? Or maybe (o no, that must be: surely) someone else did? Good luck, Ok Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]
[speedtouch] Re: How do I set up my Speedtouch
Paul Hudson wrote: >I still have an issue and some questions though. > >1) In my syslog i'm getting the output ' pppoa3 [] : CRC error in AAL5 >frame'. >I'm assuming something needs tweaking. > I'm still having CRC-errors but performance is okay. Did YOU get rid of'em? > >2) Each time I log on I have to run the modem_run and pppd call commands to >get a connection and I also need to be logged on as root. Can this be setup >in a start-up file and available from any user account ? > > Have a look a hot/cold-plugging; for me that runs fine (start automatically at system-start and whenever I pull & re-insert the plug >3) How can I disconnect the line if I want ? > Either: - pull the plug, or - kill all pppd/pppoa3 tasks > >4) Can anyone point me to information about setting up my firewall ? > Have a look at shorewall, though I'm not sure it'll work under your Linux. > > >Paul > > > > Ok Liste de diffusion modem ALCATEL SpeedTouch USB Pour se désinscrire : mailto:[EMAIL PROTECTED]