home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / archives / msr313src.zip / mscustom.ini < prev    next >
Text File  |  1994-02-03  |  4KB  |  101 lines

  1. ; FILE MSCUSTOM.INI.
  2. ;
  3. ; Sample individual customization file for MS-DOS Kermit 3.11 or 3.12.
  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, September 1992.
  8. ; Revised: June 1993.
  9. ;
  10. echo Customizations...
  11.  
  12. COMMENT - Serial communication settings
  13.  
  14. set port 1            ; Use COM1 (this is the default anyway)
  15. do vax                ; Set parameters for talking to a VAX
  16.                 ; (these are Kermit's defaults anyway)
  17.  
  18. ; The following commands are commented out, shown as samples only.
  19. ; Replace with settings appropriate for your connection.
  20. ;
  21. ; set speed 9600                ; Transmission speed
  22. ; set parity even        ; Even parity, 7 data bits
  23. ;
  24. ; If the remote host or service does NOT use parity, you should use the
  25. ; following two settings:
  26. ;
  27. ; set parity none
  28. ; set terminal display 8
  29.  
  30. COMMENT - Printing
  31. ;
  32. ; Uncomment the following command if you don't have a printer.  That is,
  33. ; remove the semicolon from the left margin.  This command prevents
  34. ; host-initiated printing operations from hanging your PC.  If desired, you
  35. ; can also have print operations directed to a file (replace "nul" by a file
  36. ; name, for example "set printer c:\logs\printer.log").
  37. ;
  38. ; set printer nul
  39.  
  40. COMMENT - TCP/IP network configuration.
  41. ;
  42. ; To use TCP/IP connections, replace the dummy values below with appropriate
  43. ; values for your network (consult your network manager) and uncomment the SET
  44. ; TCP/IP commands.  Better yet, just SET TCP/IP ADDRESS BOOTP, period.
  45. ;
  46. ; SET TCP/IP ADDRESS 123.123.123.123  ; My PC's numeric IP address
  47. ; SET TCP/IP SUBNETMASK 255.255.255.0 ; My physical network's subnet mask
  48. ; SET TCP/IP DOMAIN FOO.BAR.EDU       ; My network's domain name
  49. ; SET TCP/IP GATEWAY 123.123.123.1    ; My network gateway's IP address
  50. ; SET TCP/IP PRIMARY-NAMESERVER 123.123.123.2   ; Primary nameserver's address
  51. ; SET TCP/IP SECONDARY-NAMESERVER 123.123.123.3 ; fallback nameserver address
  52. ; SET TCP/IP BROADCAST 255.255.255.255 ; My network's broadcast address
  53.  
  54. ; TELNET macro for making TCP/IP connections.
  55. ; "TELNET <ip-host-name-or-address>" makes a new TCP/IP connection.
  56. ; "TELNET" (by itelf) resumes the current TCP/IP connection.
  57. ;   \%1 = IP host name or address
  58. ;   \%2 = TCP port
  59. ;   \%3 = terminal type (optional)
  60. ;
  61. define telnet -
  62.   set flow none,-
  63.   set port tcp \%1 \%2,-
  64.   if def \%3 set term type \%3,-
  65.   pause 0, if succ c  
  66.  
  67. COMMENT - Key definitions.  Uncomment these if desired, and/or add your own.
  68. ;
  69. ; set key \96 \27        ; Exchange ESC and
  70. ; set key \27 \96        ; accent-grave keys during terminal emulation.
  71.  
  72. COMMENT - Default terminal emulation screen color is blue on white.
  73. ;
  74. ; Uncomment and change to suit your tastes.
  75. ; See pages 81-82 of "Using MS-DOS Kermit" for color information.
  76. ;
  77. ; set terminal color 0 34 47    ; Terminal color is blue on white.
  78.  
  79. COMMENT - File transfer preferences.
  80. ;
  81. ;;; Uncomment and/or change to suit your needs.
  82. ;
  83. ; set block 3            ; Block check 3 = 16-bit CRC.
  84. ; set window 2            ; 2 Window slots.
  85. ; set receive packet-length 1000 ; Packet length is governed by receiver.
  86.  
  87. ; Macros for transferring files in text and binary mode...
  88. ;
  89. define bsend set file type binary,  send \%1 \%2  ; SEND in binary mode
  90. define tsend set file type text,    send \%1 \%2  ; SEND in text mode
  91. define bget remote set file type binary, get \%1  ; GET in binary mode
  92. define tget remote set file type text,   get \%1  ; GET in text mode
  93.  
  94. COMMENT - Character set preferences.  Change to suit your needs.
  95. ;
  96. ; set terminal character-set latin1 ; Remote host's character set
  97. ; set transfer character-set latin1 ; File transfer character set
  98. ; set file character-set cp850      ; PC's local character set 
  99.  
  100. echo
  101.