home *** CD-ROM | disk | FTP | other *** search
- ;
- ; This is a script file that demonstrates how
- ; to establish a PPP connection with ECHO.
- ;
- ; You must configure your Windows 95 Dial-Up Networking
- ; folder as per instructions given in the Help files.
- ;
- ; Then using the utility DSCRPT which is available on the CD Rom
- ; version of Windows 95 or on Echo in /echo/utils/pc/dscrpt.exe
- ; (which is a self extracting exe), assign the file echoppp.scp
- ; to your ECHO Dial-Up folder.
- ;
- ;
- ;
- ;
-
-
- ; Main entry point to script
- ;
- proc main
-
- ; Delay for 3 seconds first to allow host time
- ; to send initial characters.
-
- delay 3
- transmit "^M"
-
- ; Wait for the login prompt before entering
- ; the user ID
-
- waitfor "echonyc login:"
- transmit $USERID
- transmit "^M"
-
- ; Enter the password
-
- waitfor "Password:"
- transmit $PASSWORD
- transmit "^M"
-
-
- waitfor "Service?"
-
- transmit "ppp^M" ; Choose PPP connection
-
- endproc
-