# Login EXAMPLE script which might be used as as replacement
# for the 'terminal' statement in the dial script
loginName="******"       # your terminal login name
loginPpass="******"      # your terminal login pasword
wait 60 ">>>"            # wait for signon
send "cslip{13}"         # tell the server we want cslip
wait 30 "Login:"         # wait for Login prompt 
send loginname+{13}      # send login name
wait 10 "Password:"      # wait for login Password
send loginPass+{13}      # send password
wait 10 "Address is"     # capture "your Address is" string  
my_ip=$input 10          # IP number must follow immediately
wait 10 "SLIP"           # wait until server has switched to SLIP                   
print "my_ip=" my_ip     # show the IP
end                      # back to main script
