#!/bin/bash
#
# Note: You have to change your user/password settings
# where noted (there are three places)
# 

exec pppd connect \
'chat -v \
TIMEOUT 45 \
"" ATZ \
OK ATDT7535000 \
ABORT "NO CARRIER" \
ABORT BUSY \
ABORT "NO DIALTONE" \
ABORT WAITING \
TIMEOUT 45 \
"ogin:" "<<<<<Your user name here>>>>" \
"word:" "<<<<<Your password here>>>>"' \
     -detach crtscts modem defaultroute \
     user <<<<<Your user name here>>>> \
     /dev/modem 38400 lock
