home *** CD-ROM | disk | FTP | other *** search
-
- ;
- ; This is a script file that demonstrates how
- ; to establish a PPP connection with Internet Access Houston as of
- ; 12/30/95.
- ;
- ; A script file must have a 'main' procedure.
- ; All script execution starts with this 'main'
- ; procedure.
- ;
-
-
- ; Main entry point to script
- ;
- proc main
-
- delay 1
- transmit "^M"
- transmit "^M"
-
-
- ; Wait for the login prompt before entering
- ; the user ID
-
- waitfor "sername>"
- transmit $USERID
- transmit "^M"
-
- ; Enter the password
-
- waitfor "assword>"
- transmit $PASSWORD
- transmit "^M"
-
- waitfor "eys:"
- transmit "1"
- transmit "^M"
-
-
-
- endproc
-
-
-
-