home *** CD-ROM | disk | FTP | other *** search
/ Beijing Paradise BBS Backup / PARADISE.ISO / software / BBSDOORW / TXMAIL11.ZIP / LOGIN.CMD < prev    next >
Encoding:
Text File  |  1996-07-18  |  1022 b   |  41 lines

  1. ; This is the script to login to your internet provider.
  2. ; It MUST be modified correctly to login to your provider and
  3. ; initiate a SLIP/PPP session.
  4.  
  5. START
  6.  
  7.   DEBUG      ON
  8.   HANGUP
  9.   SEND
  10.   WAIT     1
  11.   SEND       ATZ
  12.   WAIT     5 OK
  13.  
  14. ; Replace the phone number below with the number of your provider
  15.   SEND       ATH1H0D 555-1212
  16.   WAIT    35 CONNECT
  17.   PRINT      Login
  18.  
  19. ; Replace 'username' with your login name
  20.   WAIT    30 in:
  21.   SEND       username
  22.  
  23. ; Replace 'password' with your login password
  24.   WAIT    15 ord:
  25.   SEND       password
  26.  
  27. ; If you do not have to select what service to run from a shell or
  28. ; menu, you can probably delete the next two lines
  29.   WAIT    20 $
  30.   SEND       SLIP
  31.   PRINT      Ok
  32.  
  33. ; If you have a static IP address or are using the PPP protocol you can
  34. ; probably delete the following line, otherwise this function searches
  35. ; for your IP address
  36.   FINDIP
  37.  
  38. ; The "END" line is required to tell TxDIALER that the script was 
  39. ; successfully completed
  40. END
  41.