home *** CD-ROM | disk | FTP | other *** search
- ; This is a script file that demonstrates how
- ; to establish a PPP connection with a host
- ; that uses a menu system.
- ;
- ; A script file must have a 'main' procedure.
- ; All script execution starts with this 'main'
- ; procedure.
- ;
-
-
- ; Main entry point to script
- ;
- proc main
-
- ; Change these variables to customize for your
- ; specific Internet service provider
-
-
-
- waitfor "sername:"
- transmit $USERID
- transmit "^M"
-
- waitfor "assword:"
- transmit $PASSWORD
- transmit "^M"
-
- waitfor ">"
- transmit "ppp^M"
-
- endproc
-