Hi,
I just installed Linux Slackware 3.1 on my PC. Everything is
working properly except for the modem. Here I have:
Packard Bell "Legend Supreme 1605" PC with
- Pentium 150 MHz
- 16MB RAM
- 33,600 bps modem: Sound 111 336 SP ??? (dont know exactly
what the type)
The problem:
Modem cannot dial (no dial tone from the modem -- this works
with WIN95). The following are two scripts I used for ppp
connection:
FILENAME: dial
#!/bin/sh
#modem is set up as com1
setserial /dev/cua0 spd_vhi
#Create the file dial.is.it.there.
echo "dummy" > ~/dial.is.it.there
#redial calls pppd
redial &
FILENAME: redial
#!/bin/sh
while test -e ~/dial.is.it.there
do
/usr/sbin/pppd connect 'chat -v ABORT BUSY "" atz OK atdt8888888
CONNECT "" ogin: myname word: mypassword oice: ppp' /dev/modem
38400 -detach debug crtscts modem defaultroute :128.128.1.11
netmask 255.255.255.0
done
NOTES:
8888888, myname and mypassword are not the real entries.
The command inside the do..done is one line.
Anybody can figure out what causes this problem??
Thanks in advance.
Julio Manik