home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR31 / KERM313.ZIP / MSCUSTOM.INI < prev    next >
Text File  |  1993-08-03  |  3KB  |  77 lines

  1. COMMENT - File Mscustom.ini.
  2. echo Starting Coastal's Kermit Customization  930802\13
  3.  
  4. COMMENT - Macro for telnet
  5. ; TELNET macro for making TCP/IP connections.
  6. ; "TELNET <ip-host-name-or-address>" makes a new TCP/IP connection.
  7. ; "TELNET" (by itelf) resumes the current TCP/IP connection.
  8. ;   \%1 = IP host name or address
  9. ;   \%2 = TCP port
  10. ;   \%3 = terminal type (optional)
  11. ;
  12. define telnet -
  13.   set flow none,-
  14.   set port tcp \%1 \%2,-
  15.   if def \%3 set term type \%3,-
  16.   pause 0, if succ c  
  17.  
  18. COMMENT - Speed Options w/auto connect
  19. define 576 set port 1, set speed 57600, connect
  20. define 384 set port 1, set speed 38400, connect
  21. define 192 set port 1, set speed 19200, connect
  22. define 96 set port 1, set speed 9600, connect
  23. define 24 set port 1, set speed 2400, connect
  24. echo Type 576, 384, 192, 96 , or 24 to connect at X100 speed.
  25.  
  26. COMMENT - Terminal emulation settings.  Modify to suit your environment.
  27. set display 8                   ; in the 8-bit environment
  28. set terminal display 8
  29. set terminal color 0 37 44      ; Terminal color is white on blue
  30. set mode-line on                ; for line on bottom of screen
  31. set terminal graphics VGA       ; AUTO-SENSING is default
  32.  
  33. COMMENT - File transfer settings
  34. set window 8                    ; Use sliding windows
  35. set file type binary            ; default for xfers
  36.  
  37. COMMENT - Define macros
  38. define bye hangup, exit
  39. define terminalS hangup, quit
  40. set key \1418 {\kterminalS}     ; key to log out and go away (Ctrl-F12)
  41. set key \2444 \kdos             ; 'pushes' to DOS (Alt-F12)
  42.  
  43. COMMENT - Define keymaping
  44. if not exist mskeymap.ini goto nokeycap
  45. set key scan \270 \8           ; backspace is CTRL-H
  46. take mskeymap.ini
  47. :nokeycap
  48.  
  49. COMMENT - Define anything soap specific
  50. if eq "\$(SOAP)" "" goto nosoap
  51. echo Starting special SOAP Customization  930802\13
  52. set port 1                      ; Set COM port to 1 or 2
  53. set speed 9600                  ; Transmission speed
  54. set parity none                 ; No parity 8 bits
  55. set flow none                   ; Let TCP/IP manage flow control.
  56. ;if not eq "\$(SLIP)" "YES" goto eof
  57. ;echo Starting special SLIP Customization  930802\13
  58. ;COMMENT set up port to use int 14h
  59. ;set port bios1
  60. :connect
  61. :quit
  62. ;goto eof
  63. ;echo SLIP
  64. :nosoap
  65.  
  66. COMMENT - Define anything local to the workstation for remote use 
  67. if not exist c:\kermit\mstcpip.ini goto nocfile
  68. take c:\kermit\mstcpip.ini
  69. goto notcpip
  70. :nocfile
  71. if not exist mstcpip.ini goto notcpip
  72. take mstcpip.ini
  73. :notcpip
  74.  
  75. COMMENT - End of file
  76. :eof
  77.