Two things.<br>
First, ensure you have PPP configured.<br>
Type `pppd' at the command prompt and see if you get garbage on the screen (it stops after a bit). If you do then go to second step, if not you will need to install PPP and recompile the kernel.<br>
<br>
Second, I got this from someone after trying to connect unsuccessfully for three days, it worked first try.<br>
<br>
This is what I used from my ISP and it worked good. Now all I have to<br>
do is type ppp-on and boom, Im connected!!!<br>
<br>
System Requirement : PPP Daemon (pppd-2.1.2 or higher)<br>
You will need to create the following files to<br>
connect to us: <br>
<br>
/usr/sbin/ppp-on <br>
/etc/ppp/options <br>
/etc/ppp/ppp-dialer <br>
/etc/ppp/pap-secrets<br>
<br>
/usr/sbin/ppp-on:<br>
#!/bin/sh<br>
echo "Enter the number to dial: "<br>
read NUMBER<br>
<br>
export NUMBER<br>
/usr/sbin/pppd<br>
<br>
<br>
/etc/ppp/options:<br>
lock<br>
domain wt.net<br>
ipcp-accept-local<br>
ipcp-accept-remote<br>
connect /etc/ppp/ppp-dialer<br>
crtscts<br>
defaultroute<br>
debug<br>
modem<br>
/dev/ttyS3<br>
#Change /dev/ttyS3 to your modem port<br>
# /dev/ttyS0 is COM1:<br>
# /dev/ttyS1 is COM2:<br>
# /dev/ttyS2 is COM3:<br>
# /dev/ttyS3 is COM4:<br>
38400<br>
noipdefault<br>
#Change bogus to your username<br>
user bogus <br>
<br>
<br>
/etc/ppp/ppp-dialer:<br>
#!/bin/sh<br>
# Some of the following lines contain<br>
# ' and " for quoting. Please note <br>
# that both are made with the ' symbol<br>
# Please do not use the "Shift<br>
# apostrophe" Key to make the " symbol<br>
# Just hit the ' key twice.<br>
# The OK "ADTD $NUMBER" \ line<br>
# DOES use the Shift apostrophe key<br>
# for the quotes<br>
<br>
<br>
/usr/sbin/chat -v \<br>
ABORT BUSY \<br>
ABORT 'NO CARRIER' \<br>
TIMEOUT 60 \<br>
'' ATZ \<br>
OK 'AT+FCLASS=0' \<br>
OK 'AT&F&C1&D2' \<br>
OK "ATDT $NUMBER" \<br>
CONNECT<br>
<br>
/etc/ppp/pap-secrets:<br>
# Change "bogus" to your username and<br>
# "bogus_password" to your password in clear text<br>
<br>
bogus * bogus_passwd <br>
<br>
/etc/resolv.conf:<br>
domain wt.net<br>
nameserver 205.230.159.9<br>
nameserver 205.230.159.7<br>
<br>
Connecting to us:<br>
Make sure some file permission is set<br>
correctly by executing the following command:<br>
$ chmod a+x /etc/ppp/ppp-dialer /usr/sbin/ppp-on<br>
<br>
Make sure you have<br>
/usr/sbin/pppd and<br>
/usr/sbin/chat binary<br>
executables.<br>
<br>
Then type in the following:<br>
$ /usr/sbin/ppp-on<br>
Enter the phone number to dial:<br>
713-843-6878<br>
<br>
To Check to see if you are connected:<br>
$ tail /var/log/messages<br>
(you will see messages from the pppd)<br>
<br>
Goodluck!<br>
<br>
<br>
Have Fun

<br>
Sterling