home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / archives / msk314.pkz / MSCUSTOM.INI < prev    next >
Text File  |  1995-01-18  |  4KB  |  102 lines

  1. GOTO GO ; FILE MSCUSTOM.INI
  2. ;
  3. ; SAMPLE individual customization file for MS-DOS Kermit 3.14.
  4. ; Make any desired changes, and then store this file in the same directory
  5. ; as your MSKERMIT.INI initialization file.
  6. ;
  7. ; Author: Christine M. Gianone, Sep 1992
  8. ; Revised: Jun 1993 for version 3.13
  9. ; Revised: Jan 1995 for version 3.14
  10. ;
  11. :GO
  12. if < \v(version) 314 -
  13.   stop 1 -
  14.   This MSCUSTOM.INI file may be used only with MS-DOS Kermit 3.14 or later.
  15.  
  16. echo Executing SAMPLE MS-DOS Kermit customization file, \v(cmdfile)...
  17. echo Please edit this file to suit your needs and preferences.
  18.  
  19. COMMENT - Autodownload and autoupload are disabled by default, see KERMIT.UPD.
  20. ;
  21. check term
  22. if fail forward XFER
  23. ec
  24. ec Auto-upload and -download disabled.
  25. ec Use SET TERMINAL APC ON to enable.
  26. ec
  27. ; set terminal apc on        ; Uncomment to enable this feature.
  28.  
  29. :XFER
  30. COMMENT - Sample file transfer preferences.
  31. ;
  32. set block 3            ; 16-bit CRC for strong error checking.
  33. set window 4            ; 4 Window slots.
  34. set receive packet-length 2000    ; Packet length is governed by receiver.
  35. set control prefix all          ; Prefix all control characters.
  36.  
  37. ; Macros for transferring files in text and binary mode...
  38. ;
  39. define bsend binary, send \%1 \%2  ; SEND in binary mode
  40. define tsend text,   send \%1 \%2  ; SEND in text mode
  41. define bget  binary, get \%1  ; GET in binary mode
  42. define tget  text,   get \%1  ; GET in text mode
  43.  
  44. COMMENT - TCP/IP network configuration.
  45. ;
  46. check tcp
  47. if fail forward notcp
  48.  
  49. ; If your site has a BOOTP server and your PC is registered in it, the only
  50. ; command you need here is the following SET TCP/IP ADDRESS BOOTP command.
  51. ; You will also need the SET TCP/IP DOMAIN command if your BOOTP server is
  52. ; not at RFC1395 level and/or does not provide your PC's hostname (substitute
  53. ; your PC's real hostname for FOO.BAR.EDU).
  54. ;
  55. set tcp address BOOTP                 ; BOOTP will tell me my IP address
  56. ; SET TCP/IP DOMAIN FOO.BAR.EDU       ; My network's domain name
  57.  
  58. ; Otherwise, to use TCP/IP connections, replace the dummy values below with
  59. ; appropriate values for your network (DON'T MAKE THEM UP! - consult your
  60. ; network manager) and uncomment the SET TCP/IP commands.
  61. ;
  62. ; SET TCP/IP ADDRESS 123.123.123.123  ; My PC's numeric IP address
  63. ; SET TCP/IP SUBNETMASK 255.255.255.0 ; My physical network's subnet mask
  64. ; SET TCP/IP DOMAIN FOO.BAR.EDU       ; My PC's fully qualified domain name
  65. ; SET TCP/IP GATEWAY 123.123.123.1    ; My network gateway's IP address
  66. ; SET TCP/IP PRIMARY-NAMESERVER 123.123.123.2   ; Primary nameserver's address
  67. ; SET TCP/IP SECONDARY-NAMESERVER 123.123.123.3 ; fallback nameserver address
  68. ; SET TCP/IP BROADCAST 255.255.255.255 ; My network's broadcast address
  69.  
  70. ; Sample macro that shows how to use the session manager to access
  71. ; a particular host, called MYHOST.  Make one of these for each host you
  72. ; commonly access.  The first time you type "myhost" you'll get a new
  73. ; connection (and a session number), and subsequent times, the same session
  74. ; will be continued.  This allows for easy session-switching from the
  75. ; MS-Kermit> prompt.  You can also use Alt-n (\KnextSession) to toggle among
  76. ; sessions while in CONNECT mode. The TELNET macro is defined in MSKERMIT.INI.
  77. ;
  78. define myhost -
  79.  telnet myhost 23 vt320,-
  80.  if success assign myhost telnet \v(session)
  81.  
  82. :NOTCP
  83. ;
  84. ; Add your own macro definitions, key settings, color selections, etc, here,
  85. ; for example:
  86.  
  87. set modem hayes        ; Change this to your modem type, see MODEMS\READ.ME.
  88. ; set printer nul    ; Uncomment this if you do NOT have a printer.
  89. set port 1              ; Change if desired.  If COM3 or 4, read KERMIT.BWR.
  90. set speed 9600          ; Change if desired.
  91. set flow xon/xoff       ; Change to RTS/CTS if modem is configured for this.
  92. check term
  93. if fail end 0
  94. set term type vt320     ; Change this if desired.
  95. set term bytesize 7     ; Change to 8 if desired.
  96. set term color 0 34 47  ; Terminal screen fore- and background colors.
  97. set term under 0 33 47  ; Underscore simulation colors.
  98.  
  99. ; take \v(inidir)keyboard\vt300.ini ; Uncomment for full VT320 key mappings.
  100.  
  101. ; (End of MSCUSTOM.INI)
  102.