home *** CD-ROM | disk | FTP | other *** search
- ; This is the script to login to your internet provider.
- ; It MUST be modified correctly to login to your provider and
- ; initiate a SLIP/PPP session.
-
- START
-
- DEBUG ON
- HANGUP
- SEND
- WAIT 1
- SEND ATZ
- WAIT 5 OK
-
- ; Replace the phone number below with the number of your provider
- SEND ATH1H0D 555-1212
- WAIT 35 CONNECT
- PRINT Login
-
- ; Replace 'username' with your login name
- WAIT 30 in:
- SEND username
-
- ; Replace 'password' with your login password
- WAIT 15 ord:
- SEND password
-
- ; If you do not have to select what service to run from a shell or
- ; menu, you can probably delete the next two lines
- WAIT 20 $
- SEND SLIP
- PRINT Ok
-
- ; If you have a static IP address or are using the PPP protocol you can
- ; probably delete the following line, otherwise this function searches
- ; for your IP address
- FINDIP
-
- ; The "END" line is required to tell TxDIALER that the script was
- ; successfully completed
- END
-