; STATIC IP ADDRESS script for some Tech connections ; ; Sets up a static IP address SLIP connection on the ; Virginia Tech campus. You may also need the file on ; my home page to set up a Win95 32 bit connection. ; Please see http://www.vt.edu:10021/K/kewells/wells.html ; for the file needed to "trick" Win95 into thinking you ; have a modem if you are on campus. Please email me ; at kewells@vt.edu with any suggestions or improvements ; (C) Kevin Wells 1995. This script may be freely ; distributed & modified as long as there is no charge ; for its use. Replace "slip" with "ppp" for a ppp ; connection. proc main transmit "" waitfor "DISP" transmit "C VTTELNET" waitfor "COMP" transmit "" delay 1 transmit "" delay 1 transmit "" delay 1 transmit "" delay 1 transmit "" waitfor "name:" delay 1 transmit $USERID transmit "" waitfor "word:" transmit $PASSWORD transmit "" waitfor "TermServ>" transmit "SLIP 128.173.my.ipaddress" waitfor "word:" transmit $PASSWORD transmit "" waitfor "system." endproc