home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 June
/
SIMTEL_0692.cdr
/
msdos
/
pibterm
/
pibt41e3.arc
/
NOSVE.SCR
< prev
next >
Wrap
Text File
|
1988-02-26
|
3KB
|
67 lines
***************************************************************************
* 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|"
*