I used my same dial-ppp script I've been using for months now,
in slackware 2.3, but when I run it in slackware '96, it complains
about all of the keywords in the chat strings.
Can anyone spot the problem here - or even better yet, is there a
way to do this with expect??
Here is the script:
#!/bin/sh
PHONE="778-7893"
LOCIP="205.0.0.1"
DEVICE="/dev/cua1"
RMTIP="0.0.0.0"
SPEED="9600"
PPP_LOGINNAME="my_username"
PPP_PASSWORD="my_password"
/usr/lib/ppp/pppd connect "/usr/lib/ppp/chat \
ABORT \"NO CARRIER\" ABORT BUSY ABORT \"NO DIAL TONE\" \
\"\" ATZ OK ATE1M1V1X4L3S0=0\&c1q0DT$PHONE CONNECT \"\" \
ogin:--ogin: $PPP_LOGINNAME word: $PPP_PASSWORD" \
crtscts modem defaultroute $LOCIP:$RMTIP $DEVICE $SPEED
Thanks in advance,
Chris.