> I've been reading HOWTO's and FAQ's and newsgroups all day (the last 2
> days if you want to get technical) and still can't get a satisfactory
> connection to my ISP.
> I use Caldera Networking Desktop. If anyone has any help for me please
> I've attached my config files. Please help
[
dip-script 1K ]
# dip-script -- used with RHS netcfg for SLIP, CSLIP, and PPP
#
# Version: 0.1
#
# Author: Fred N. van Kempen
# Modified: Marc Ewing for Red Hat Software
main:
port modem
reset
# You may need to send some modem set-up string here
wait CONNECT 45
if $errlvl != 0 goto error
# You may need to change \n to \r\n
login:
# You may not need this sleep
sleep 3
# You'll need to set this "ogin:" to match the login
# string of the host you are dailing
wait ogin: 10
if $errlvl != 0 goto error
if $errlvl != 0 goto error
# Same here, for the password
wait ord: 10
if $errlvl != 0 goto error
if $errlvl != 0 goto error
loggedin:
default
done:
print CONNECTED to $remote with address $rmtip
exit
error:
[
ifcfg-eth0 < 1K ]
#!/bin/sh
#>>>Device type: ethernet
#>>>Variable declarations:
DEVICE=eth0
IPADDR=10.0.0.2
NETMASK=255.255.255.0
NETWORK=10.0.0.0
BROADCAST=10.0.0.255
ONBOOT=yes
#>>>End variable declarations
[
ifcfg-ppp < 1K ]
#!/bin/sh
#>>>Device type: ppp
#>>>Variable declarations:
DEVICE=cua1
IPADDR=0.0.0.0
DIPSCRIPT=/etc/dip-script
REMIP=0.0.0.0
SPEED=115200
PHONE=2937812
LOGIN=username
PASSWORD=passwd
CONNECT=ster%
CTYPE=ppp
ONBOOT=no
DEDICATED=yes
#>>>End variable declarations
[
ifdown-ppp < 1K ]
#!/bin/sh
PATH=/sbin:/usr/sbin:/bin:/usr/bin
. $1
ifconfig ${DEVICE} down
#kill `cat /var/run/$DEVICE.pid`
[
ifup-ppp < 1K ]
#!/bin/sh
PATH=/sbin:/usr/sbin:/bin:/usr/bin
. $1
if [ "foo$2" = "fooboot" -a ${ONBOOT} = "no" ]
then
exit
fi
dip /tmp/dip.$$
rm /tmp/dip.$$
sleep 5
if [ "$DEDICATED" = "yes" ]; then
watch-ppp $DEVICE &
fi
[
options < 1K ]
/dev/cua1
115200
crtscts
modem
lock
asyncmap 0
defaultroute
+pap