hello just installed slackware 3.0 linux by ftp and am having quite a hard time connecting
tomy isp/was wondering if anybody out there who knows linux's insane config for ppp
could help me out... heres the shell script im trying to use
it connects then just dies in about 2 seconds(i get a screen full of garbage
and pppd never detachs)
#!/bin/bash
PHONE="462-1636"
LOGIN="lip"
PASSWD=""
PORT="/dev/cua3"
if [ "$PASSWD"=""
then
stty -echo
echo -e "enter password"
read PASSWD
stty echo
fi
export PASSWD
pppd connect 'chat "" ATDT '$PHONE' ogin: '$LOGIN' word: '$PASSWD
$PORT mtu 1500 debug lock modem crtscts defaultroute
heres my rc.inet1 file
HOSTNAME=`cat /etc/HOSTNAME`
# Attach the loopback device.
/sbin/ifconfig lo 127.0.0.1
/sbin/route add -net 127.0.0.0
IPADDR="198.70.177.122"
NETMASK="255.255.255.0"
NETWORK="198.70.177.0"
BROADCAST="198.70.177.255"<---- (what is this address?)?????
#GATEWAY="198.70.177.253"
# /sbin/ifconfig eth0 ${IPADDR} netmask ${NETMASK} broadcast ${BROADCAST}
/sbin/ifconfig eth0 ${IPADDR} broadcast ${BROADCAST} netmask ${NETMASK}
# /sbin/ifconfig eth0 ${IPADDR} netmask ${NETMASK}
/sbin/route add -net ${NETWORK} netmask ${NETMASK}
/sbin/route add default gw ${GATEWAY} metric 1
# End of rc.inet1
all my nameservers are defined corretly
if anybody can help me out or point me in the right direction id appreciate it
thanks sid lipkin