hi,
does anyone know what driver will work with the ICL etherteam32 eisa card?
regards,
john.
hi,
i am having a few problems with dialling out.. more to the point, i cannot
get this script to work... the system is a pentium pro 180, 32 megs running
linux pro4.0 2.0.33 kernel (have updated the system to use 2.0.0)
the script goes like this;
#!/bin/sh
# A script to establish a dial-up PPP connection
# Shell variable with remote end's IP address
RMTIP="203.98.6.1"
# If PPP link exists, then exit
/sbin/ifconfig | grep $RMTIP >/dev/null && exit 0
# Other shell variables
# Set LOCIP to "" if your IP address is dynamically assigned
LOCIP=""
PHONE="5296193"
DEVICE="/dev/cua0"
SPEED="38400"
PPP_LOGINNAME="usrname"
PPP_PASSWORD="passwd"
/usr/sbin/pppd connect "/usr/sbin/chat \
ABORT \"NO CARRIER\" ABORT BUSY ABORT \"NO DIAL TONE\" \
\"\" ATZ OK ATE1M1V1X4L3S0=)\&c1Q0DT$PHONE CONNECT \"\" \
ogin:--ogin: $PPP_LOGINNAME word: $PPP_PASSWORD" \
crtscts modem defaultroute $LOCIP:$RMTIP $DEVICE $SPEED
# End of script
why doesnt it work?
any help would be greatly appreciated.
regards,
john.