home *** CD-ROM | disk | FTP | other *** search
- ***************************************************************************
- * N O S V E . S C R --- Script for connecting to Cyber NOS/VE system *
- ***************************************************************************
- * *
- * Script: NosVe.Scr *
- * *
- * Purpose: Connects to Cyber NOS/VE system. Designed for use as *
- * attached script in dialing directory. *
- * *
- * Invocation: *
- * *
- * Execute "NosVe" *
- * *
- * Remarks: *
- * *
- * Change the values of "username" and "password" to those of *
- * your own NOS/VE account. *
- * *
- ***************************************************************************
- *
- * Send CRs to wake up autobaud
- Repeat
- *
- SText "|"
- * Wait on parity message, indicating
- * baud rate/parity detected
- WaitString "arity" 4
- *
- Until ( WaitFound OR ( NOT Connected ) )
- *
- * If carrier dropped, quit script.
- If ( NOT Connected ) Then
- Exit
- Endif
- * Now wait for "operating system" prompt
- WaitString "ting system"
- * Indicate to CDCNET that we want
- * a NOS/VE session. For NOS, we
- * would send "CREC NOS" instead.
- WaitQuiet 20
- SText "crec ve|"
- * Wait for username prompt
- WaitString "User:"
- * Send user name and password --
- * PUT YOURS HERE.
- SText "username,password|"
- *
- * Wait for control statement prompt
- WaitString "/"
- WaitQuiet 30
- * Set VT100 emulation in PibTerm.
- SetParam 'VC' '0'
- SetParam 'AK' '0'
- * Load NOS/VE function keys
- Key 'cdcnos.fnc'
- * Set backspace if not already set.
- SetParam 'BS' '^H'
- SetParam 'DE' ''
- * Tell NOS/VE we're a VT100.
- * These commands may already be in
- * your PROLOG file, but it doesn't
- * hurt to re-issue them.
- *
- SText "chata tm=vt100 tc=vt100|"
- WaitString "/"
- SText "chais screen|"
- *