home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 100-199 / ff114.lzh / Vt100 / Logon < prev    next >
Text File  |  1987-11-22  |  843b  |  57 lines

  1. DIAL:
  2.     DELAY 3
  3.     SEND "ATdt555-1221^M"
  4.     ON "CONNECT" GOTO CONN
  5.     DELAY 20
  6.     SEND " "
  7.     DELAY 1
  8. #
  9.     SEND "ATdt555-1222^M"
  10.     ON "CONNECT" GOTO CONN
  11.     DELAY 20
  12.     SEND " "
  13.     DELAY 1
  14. #
  15.     SEND "ATdt555-1223^M"
  16.     ON "CONNECT" GOTO CONN
  17.     DELAY 20
  18.     SEND " "
  19.     DELAY 1
  20. #
  21.     SEND "ATdt555-1224^M"
  22.     ON "CONNECT" GOTO CONN
  23.     DELAY 20
  24.     SEND " "
  25.     DELAY 1
  26.     GOTO DIAL
  27. #
  28. CONN:
  29. #   Send CRs till I get a login: prompt.
  30.     SEND ^M
  31.     ON "login:" GOTO LOGIN
  32.     DELAY 3
  33.     GOTO CONN
  34. LOGIN:
  35. #  Send my username and my "password", reply to first prompt.
  36.     SEND "acs^M"
  37.     WAIT "assword:"
  38.     SEND "mypass^M"
  39.     WAIT "#?"
  40.     SEND "1^M"
  41.     WAIT "=> "
  42. #  Go to the source directory and send EVERYTHING then get off.
  43.     SEND "cd vt100src/rel2.7^M"
  44.     WAIT "=> "
  45.     SEND "wermit^M"
  46.     WAIT "mit>"
  47.     SEND "send *^M"
  48.     KR
  49.     DELAY 5
  50.     SEND "ex^M"
  51.     WAIT "=> "
  52.     SEND "logoff^M"
  53.     WAIT "NO CARRIER"
  54.     SEND "ATH^M"
  55.     EXIT VT100
  56.  
  57.