home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / archives / msr313src.zip / msiibm.doc < prev    next >
Text File  |  1988-12-21  |  5KB  |  106 lines

  1. This is the key to MSKERMIT.INI, the initialization file for Kermit Version
  2. 2.31 and later on the IBM-PC for use at Columbia University with the CUCCA
  3. systems.  Before using it, you should look at it, and make any customizations
  4. to suit your situation.  The file is kept in the Kermit distribution as
  5. MSIIBM.INI, so if you have a copy of it under that name, you should rename to
  6. MSKERMIT.INI and store on your PC somewhere in your DOS PATH, or on your
  7. current disk and directory.  And be sure you have a copy of the latest version
  8. of the MS-DOS Kermit User Guide for reference.
  9.  
  10. This initialization file defines several classes of useful macros:
  11.  
  12. 1. Logging into CUCCA systems through direct IBM/Rolm CBX connections.
  13. 2. Dialing up the CBX.
  14. 3. Setting up the PC's function keys for use with the CUCCA 3270 emulators.
  15. 4. Setting screen foreground and background colors (if you have color).
  16.  
  17. Here is an explanation of each:
  18.  
  19. 1. For logging in to the various systems through the PACX:
  20.  
  21. To log in to:      Through:     Type:          Remarks:
  22.  
  23.  CUNIXA             CBX          do xcunixa
  24.  CUNIXB             CBX          do xcunixb
  25.  CUNIXC             CBX          do xcunixc
  26.  CUNIXD             CBX          do xcunixd
  27.  
  28.  CUVMB (linemode)   CBX          do xcuvmb        through COMTEN.
  29.  CUVMB (fullscreen) CBX          do xsimb         3270 protocol emulator.
  30.  CLIO  (fullscreen) CBX          do xclio
  31.  
  32. In order to use these macros, you should edit the MSKERMIT.INI file to contain
  33. your actual user IDs on these systems:
  34.  
  35. 1. Replace "XYZCU" in the line "def \%c XYZCU" with your actual CMS ID, if any.
  36. 2. Replace "xyz" in the line "def \%u xyz" with your actual UNIX ID, if any.
  37.  
  38. When you use these macros, they will get you through the PACX or CBX, through
  39. any other front ends (COMTEN or 7171), and give the appropriate login command
  40. for the selected system, and then connect you to that system, at which point
  41. you should type your password to complete the login process.  You should not
  42. put your password in the MSKERMIT.INI file, since someone might discover it
  43. there and get access to your files.
  44.  
  45. 2. A sample macro is also given for dialing up the CBX from a Hayes modem,
  46.    and then logging into CUNIXC, "do hxc".  You can adapt this one to
  47.    other systems as well.
  48.  
  49. 3. Macros are defined for various color combinations you can use if you have
  50.    a color monitor and adapter on your PC.  The colors are only effective
  51.    during CONNECT mode.  You can experiment with them and create others too:
  52.  
  53. "do sky"   - blue on white
  54. "do ocean" - white on blue
  55. "do sea"   - green on blue
  56. "do bw"    - black on white
  57. "do gb"    - green on black
  58. "do amy"   - pink on purple (Amy's favorite colors)
  59.  
  60. 4. If you are accessing the IBM mainframes in full-screen (3270) mode, i.e.
  61. you are using CLIO, SIMB, etc, a special macro, "do simk", is automatically
  62. invoked to set up your PC's function keys for use with Columbia's 3270
  63. simulators, as shown below.  To restore the keys to their default VT100
  64. definitions, give the Kermit command "do nosimk", or equivalently "set key
  65. clear".
  66.                                         
  67. 3270 Function   Keystrokes on IBMPC     Control Sequence
  68.  
  69.  Backspace       Delete (Rubout)         Control-H, Control-B
  70.  PF1-PF10        F1-F10                  Escape 1-Escape 0
  71.  PF11-PF20       Shift F1 - Shift F10    Escape Q,W,E,R,T,Y,U,I,O.P
  72.  PF21-PF24       Alt F1 - Alt F4         Escape A,S,D,I
  73.  Insert          Insert (under 0)        Control-X
  74.  Cursor Up       Up Cursor (under 8)     Control-P
  75.  Cursor Left     Left Cursor (under 4)   Control-H
  76.  Cursor Right    Right Cursor (under 6)  Control-E
  77.  Cursor Down     Down Cursor (under 2)   Control-N
  78.  Delete Char     Delete (under point)    Control-D
  79.  
  80. Other 3270 Functions:   Type:
  81.  
  82.  Newline                 Control-A
  83.  Tab                     Tab or Control-I
  84.  BackTab                 Escape-Tab or Escape-Control-I
  85.  Clear                   Control-L
  86.  Erase Input             Control-U
  87.  Erase EOF               Control-K
  88.  Reset                   Control-Z
  89.  Enter                   Return or Control-M
  90.  PA1                     Control-C
  91.  PA2                     Control-W
  92.  PA3                     Control-O
  93.  Redisplay Screen        Control-T
  94.  Simulator Reset         Control-R
  95.  Suspend Output (XOFF)   Control-S
  96.  Resume Output (XON)     Control-Q
  97.  Input Buffer Flush      Control-E
  98.  
  99. If you are interested in writing MS-DOS Kermit scripts or macros, you should
  100. look at the MSKERMIT.INI file for examples, in conjunction with the MS-DOS
  101. Kermit User Guide.
  102.  
  103. Send suggestions, improvements, fixes, to kermit@CUNIXC.
  104.  
  105. - C. Gianone, CUCCA, October 1988
  106.