home *** CD-ROM | disk | FTP | other *** search
/ Everyones Internet / EV1NET.ISO / pc / data / 1051.scp < prev    next >
Encoding:
Text File  |  1998-08-12  |  650 b   |  45 lines

  1.  
  2. ;
  3. ; This is a script file that demonstrates how
  4. ; to establish a PPP connection with Internet Access Houston as of
  5. ; 12/30/95.
  6. ;
  7. ; A script file must have a 'main' procedure.
  8. ; All script execution starts with this 'main'
  9. ; procedure.
  10. ;
  11.  
  12.  
  13. ; Main entry point to script
  14. ;
  15. proc main
  16.  
  17.    delay 1
  18.    transmit "^M"
  19.    transmit "^M"
  20.  
  21.  
  22.    ; Wait for the login prompt before entering
  23.    ; the user ID
  24.  
  25.    waitfor "sername>"
  26.    transmit $USERID
  27.    transmit "^M"
  28.  
  29.    ; Enter the password
  30.  
  31.    waitfor "assword>"
  32.    transmit $PASSWORD
  33.    transmit "^M"
  34.  
  35.    waitfor "eys:"
  36.    transmit "1"
  37.    transmit "^M"
  38.  
  39.  
  40.  
  41. endproc
  42.  
  43.  
  44.  
  45.