home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!spool.mu.edu!uwm.edu!psuvax1!psuvm!hdk
- Organization: Penn State University
- Date: Wed, 16 Dec 1992 14:52:35 EST
- From: H. D. Knoble <HDK@psuvm.psu.edu>
- Message-ID: <92351.145235HDK@psuvm.psu.edu>
- Newsgroups: comp.protocols.tcp-ip.ibmpc
- Subject: Re: kermit + ethernet, pc - sun Date: 16 Dec 1992 10:06 PDT
- Distribution: world Keywords: kermit,ethernet,sun,ibm
- References: <16DEC199210122099@eql.caltech.edu>
- Lines: 42
-
- Following is a somewhat general MS-Kermit DOS .BAT file and .INI file that
- in effect issues TELNET to HostName. The file VT300.INI is part of the
- file /kermit/bin/msvibm.zip on the anonymous FTP Columbia Server at
- WATSUN.CC.COLUMBIA.EDU. On the SUN you may wish to also add the following
- to your SUN profile:
- set term vt320
- stty decctlq intr "^C" erase "^H"
- where the character just before C and H is the ASCII Character (94) Caret.
- This may help for some SUN functions. The SET TERM is necessary if you
- are going to use the (full-screen) vi editor. You could set term vt100
- instead if vt320 isn't recognized. The files PSUTCP.BAT and PSUTCP.INI
- follow:
-
- @Echo off
- REM PSUTCP.BAT
- REM DOS Batch file to use to show use of MS-Kermit 3.12 with TCP/IP
- REM running over 'class 1' device using a Clarkson packet driver, IBMTOKEN.
- REM R. L. Divany, RLD@PSUVM PSU/CSSL/ECE 09/04/91 Version 1.00
- ibmtoken 0x61 0
- REM Set default HostName if one is not supplied as 1st argument.
- set host=%1
- if "%1" == "" set host=psusun1
- REM Invoke MS-Kermit to Telnet to %host%.
- msvibm -f psutcp.ini, Do telnet %host%, stay
- set host=
- REM End PSUTCP.BAT
-
- ; PSUTCP.INI
- ; R. L. Divany, H. D. Knoble - Penn State University
- ;if exist mskermit.pch if equal \v(version) 312 patch; install patch.
- def telnet SET TCP/IP HOST \%1, SET PORT TCP/IP, connect
- SET TERM VT320; Note this supports full color.
- SET TCP/IP ADDRESS 128.118.50.86 ;This is your host e.g. HDK in 214C
- SET TCP/IP GATEWAY 128.118.50.1 ;This is your Router
- SET TCP/IP PRIMARY-NAMESERVER 128.118.25.3 ;This is nameserver 1.
- SET TCP/IP SECONDARY-NAMESERVER 130.203.3.2 ; and nameserver 2.
- SET TCP/IP DOMAIN PSU.EDU ;tacked on to HostNames.
- SET TCP/IP SUBNETMASK 255.255.255.0 ;Get this right.
- SET DISPLAY 8
- SET TERMINAL COLOR 0, 37, 44
- take vt300.ini ;map keys for a VTxxx.
- ; End of PSUTCP.INI
-