home *** CD-ROM | disk | FTP | other *** search
- ; iPass Dial-Up Networking Script
- ;
- ; Copyright (C) 1997-2000 iPass Inc.
- ;
- ; Do not edit this script. Connection to the
- ; remote access point requires this script.
- ;
- ; Future auto-updates of this script will not
- ; occur when editions are made to this script.
- ;
- ; REV: SZ/2-03-97
- ; Main entry point to script
- ;
- proc main
- integer nTries = 3
- delay 2
- while nTries > 0 do
- transmit "...^M"
- waitfor "SITA NETWORK" then DoLogin until 5
- nTries = nTries -1
- endwhile
- ; timed out
- goto Abort
- DoLogin:
- delay 2
- transmit "NUI 37830001^M"
- waitfor "password"
- delay 2
- transmit "98Z8VJ^M"
- waitfor "active"
- delay 1
- transmit "9001252001^M"
- waitfor "connected"
- goto Done
- Abort:
- ; allow manual completion
- set screen keyboard on
- halt
- Done:
- endproc
-