Hi
I'm very happy to bring back to (i386 Mac) life this very old but still working Alcatel USB Speedtouch ADSL modems (mine is a blue manta ray model) . You will find in this post a port of the well know Opensource Alcatel Speedtouch USB Driver for OSX (Tiger) . The driver is working in user mode. It's composed in two parts, the firmware loader and a PPPoA module working over the standard OSX pppd. There's no gui integration for the moment, so configuration and connexion
is actually made by hand using a Terminal with root access
Your Provider need to support PPPoA for connexion, PPPoE doesn't work now
This Driver is published under GNU OpenSource license
further informormation on those programs can be found here
http://www.penguin-soft.com/penguin/man/8/modem_run.html
http://www.iie.uni.lodz.pl/cgi-bin/man/man2html?8+pppoa3
otherwhise google can help
---------------
The current release have to two major differences with the BSD or linux releases
1 - Modem_run is no longuer doing the ADSL line state monitoring
2 - PPPoa3 only run in async mode (-a)
3 - pppoa3 is only working in PPPoA
Due to the second and third point the overall throughput of the driver is a bit more than a half of the sync mode (compared with linux)
---------------
Regarding the NEEDED firmware file check google to locate the appropriate one for your modem (due to incompatible modems and firmware I cannot include this file for all the modems)
ut this project is about 10 years old,
so very good documentations already exist in all languages
therefore you can have a look here
http://www.linux-usb.org/SpeedTouch/ubuntu/index.html
----------
To install it unpack the pppoa3.zip and modem_run.zip and from a terminal copy them in /usr/sbin
chmod 755 and chown root:wheel modem_run pppoa3
uncompact your firmware file in /etc
Create if it doesn't exist the directory /etc/ppp/peers
create a file called ppp0 in it
copy the following line in ppp0
--
escape 0x7d
pty "sudo /usr/sbin/pppoa3 -a -p -c -vci 35 -vpi 8 -f /var/log/pppoa3.log"
user xxxxxxx@xxxxxx.fr
password xxxxxxxxxxx
debug
logfile /var/log/ppp/ppp.log
noipdefault
noauth
usepeerdns
defaultroute
lcp-echo-interval 10
lcp-echo-failure 10
lcp-max-failure 3
maxfail 1
holdoff 4
--
Replace the username and the password fields with yours. Check the VCI and VPI pppoa3 pa
ameters to match your providers' one
here is a short and incomplete list of vci's and vpi's
vpi.vci =
8.48 for Netherlands
8.35 for France
8.67 for France (bis)
8.35 for Belgium
8.35 for Italy
0.38 for UK
--------
** to load your firmware type something like this
modem_run -s -v 1 -f /etc/YourFirmwareFile
** to run your ppp connexion type
pppd call ppp0
sometime the driver doesn't work on the first time so it's necessary to kill -9 pppoa3 and modem_run before retrying
The source Code will be shorty availlable on sourceforce
:-)
Enjoy
ps : execuse me for my english and the lack of very detailled instructions, installables packages ... but this project is very old and google will troubleshoot and fix many misses or issues