home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / archives / ckv200.zip / ckvins.txt < prev    next >
Text File  |  2001-12-14  |  77KB  |  1,713 lines

  1.  
  2.                 C-Kermit 8.0 Installation Instructions for VMS
  3.                                        
  4.    [ [1]Contents ] [ [2]C-Kermit ] [ [3]Kermit Home ]
  5.    
  6.       As of C-Kermit version: 8.0.200, 12 Dec 2001
  7.       This file last updated: Wed Dec 12 09:46:22 2001 (New York City
  8.    time)
  9.    
  10.      IF YOU ARE READING A PLAIN-TEXT version of this document, note that
  11.      this file is a plain-text dump of a Web page. You can visit the
  12.      original (and possibly more up-to-date) Web page here:
  13.      
  14.   [4]http://www.columbia.edu/kermit/ckvins.html
  15.  
  16.    Authors:
  17.           F. da Cruz, C. Gianone, M. Evarts, Columbia University, New
  18.           York, NY.
  19.           Terry Kennedy, Saint Peters College, Jersey City, NJ.
  20.           And: Peter Mossel, James Sturdevant, Richard Gilbert, Sebastian
  21.           Bazley.
  22.     ________________________________________________________________________
  23.   
  24.   CONTENTS
  25.   
  26.   1. [5]QUICKSTART GUIDE
  27.   2. [6]BOOTSTRAPPING
  28.   3. [7]CONFIGURING VMS FOR BEST RESULTS WITH KERMIT
  29.      3.1. [8]TERMINAL BUFFER SIZE
  30.      3.2. [9]USER QUOTAS AND PRIVILEGES
  31.      3.3. [10]CONFIGURING SERIAL COMMUNICATION PORTS
  32.      3.4. [11]CONFIGURING LAT DEVICES
  33.      3.5. [12]THE VIRTUAL TERMINAL DRIVER
  34.      3.6. [13]CAPTIVE ACCOUNTS AND RESTRICTED ACCESS
  35.   4. [14]DECODING VMS C-KERMIT HEX FILES
  36.   5. [15]INSTALLING VMS C-KERMIT
  37.   6. [16]USING MODEMS
  38.   7. [17]BUILDING VMS C-KERMIT FROM THE SOURCE CODE
  39.      7.1. [18]PROGRAMMING TIPS
  40.      7.2. [19]VMS TCP/IP NETWORKING SUPPORT FOR C-KERMIT
  41.   8. [20]CASE STUDY: ALPHA SETUP AND TEST RESULTS
  42.   9. [21]MAKING AND USING VMSINSTAL KITS)
  43.     ________________________________________________________________________
  44.   
  45.   1. QUICKSTART GUIDE
  46.   
  47.    To install VMS C-Kermit on VAX/(Open)VMS 5.0 or later, and Alpha
  48.    OpenVMS (all versions), please follow the instructions in the next
  49.    three major sections of this file. Section 3, [22]Configuring VMS for
  50.    Best Results with Kermit, contains important information needed to
  51.    achieve solid performance from C-Kermit. Please read it and follow the
  52.    suggestions or give it to your system manager. Section 4, [23]Decoding
  53.    VMS C-Kermit Hex Files, explains the process required to create an
  54.    executable image from the "text-only" HEX files. These HEX files are
  55.    distributed on the ANSI tapes from Columbia University and are decoded
  56.    using an assembly-language program which is also provided. If you have
  57.    received VMS C-Kermit on TK50 tape in BACKUP format, then you already
  58.    have binary executable files included on the tape. Section 5,
  59.    [24]Installing VMS C-Kermit, gives step-by-step instructions for
  60.    making C-Kermit available and fully configured for your users.
  61.    
  62.    If you are running a version of VMS *prior* to 5.0, or need to
  63.    customize the C-Kermit sources, please refer to [25]Section 5.
  64.    
  65.    [ [26]Contents ] [ [27]C-Kermit ] [ [28]Kermit Home ]
  66.     ________________________________________________________________________
  67.   
  68.   2. BOOTSTRAPPING
  69.   
  70.    In many cases, you can get C-Kermit onto your VMS system using FTP, an
  71.    old version of Kermit that is already there, or some other existing
  72.    file transfer method, or by copying it from magnetic tape, diskette,
  73.    or CDROM.
  74.    
  75.    In case none of those methods are available to you, here is a method
  76.    to "bootstrap" C-Kermit onto a VAX system from another computer. It
  77.    uses the older and smaller "Kermit-32" program (which runs only on
  78.    VAXes, not Alphas) to load the newer and larger C-Kermit program.
  79.    
  80.    Suppose, for example, you have a PC with DOS, Windows, or some form of
  81.    UNIX such as Linux, which has FTP capability, and the PC is connected
  82.    to your VAX through its serial port (directly, with a null modem
  83.    cable, or else through a modem), and the PC already has its own Kermit
  84.    program installed (MS-DOS Kermit, Kermit 95, or C-Kermit, depending on
  85.    the OS). Here are specific instructions you can try; this example
  86.    assumes the PC has Linux and C-Kermit:
  87.    
  88.     1. Get the files vmsmit.hex and vmsdeh.mar with anonymous ftp in text
  89.        mode onto your PC from:
  90.  
  91.   [29]ftp://kermit.columbia.edu/kermit/b
  92.        Also get the appropriate version of VMS C-Kermit on your PC from
  93.        the C-Kermit website:
  94.  
  95.   [30]http://www.columbia.edu/kermit/ckermit.html
  96.  
  97.  
  98.  
  99.      Use C-Kermit on Linux to log in to VMS:
  100.  
  101.   set line /dev/ttyS0 ; or whatever
  102.   set speed 19200
  103.   set flow xon/xoff
  104.   set transmit eof \26
  105.   connect
  106.     2. Log in to VMS, SET DEFAULT to the desired directory, and then give
  107.        the following commands at the VMS prompt:
  108.  
  109.   set terminal /ttsync /hostsync
  110.     3. Give the following command at the VMS prompt:
  111.  
  112.   create vmsmit.hex
  113.     4. Escape back to C-Kermit on Linux with Ctrl-\ C.
  114.     5. Tell C-Kermit to:
  115.  
  116.   transmit vmsmit.hex
  117.     6. Repeat steps 4-6 for VMSDEH.MAR.
  118.     7. Now you should have VMSMIT.HEX and VMSDEH.MAR in your VMS
  119.        directory. Give the following commands to VMS:
  120.  
  121.   macro vmsdeh
  122.   link vmsdeh
  123.   run vmsdeh
  124.     8. When VMSDEH prompts for a filename, type "vmsmit.hex".
  125.     9. When VMSDEH is finished, it prompts you for another filename. Just
  126.        press the Enter (Return) key.
  127.    10. Now VMSMIT.EXE should be in your directory. To run it, type:
  128.  
  129.   run vmsmit
  130.        at the VMS prompt.
  131.    11. Use this program to transfer the appropriate version of C-Kermit
  132.        to VMS, and then you will have a modern, fast, up-to-date version
  133.        of Kermit.
  134.        
  135.    WARNING: You can't use Kermit-32 ("Bliss Kermit") to receive a VMS
  136.    binary program. If you have to use Kermit-32 to get C-Kermit onto your
  137.    VAX, you'll need to transfer a hex-encoded version of the binary,
  138.    rather than the straight binary, and then "dehexify" the result as
  139.    shown above. This is because Kermit-32 stores incoming binary files in
  140.    a format that is not appropriate for VMS executables (variable 510
  141.    instead of fixed 512).
  142.    
  143.    [ [31]Contents ] [ [32]C-Kermit ] [ [33]Kermit Home ]
  144.     ________________________________________________________________________
  145.   
  146.   3. CONFIGURING VMS FOR BEST RESULTS WITH KERMIT
  147.   
  148.   3.1. Terminal Buffer Size
  149.   
  150.    VMS is shipped with default installation parameters designed to
  151.    function on all possible configurations. Some of these parameters have
  152.    not been changed since the "average" VMS system was a VAX-11/780 with
  153.    1Mb of memory.
  154.    
  155.    The main parameter that affects Kermit is the terminal type-ahead
  156.    buffer size, which applies to serial terminal devices (with the TT or
  157.    TX prefix). There are two possible values in VMS - the "normal" size
  158.    and the "alternate" size. The defaults for these are 78 and 200 bytes,
  159.    respectively. If more data arrives at the terminal driver than these
  160.    buffers can hold (which is a likely occurrence during file transfer),
  161.    it will be discarded and file transfers will be slowed down or
  162.    terminated by errors.
  163.    
  164.    This is most frequently seen when receiving files on a slow VAX,
  165.    particularly when using long packets and/or sliding windows. File
  166.    reception requires larger system buffers (to hold arriving packets),
  167.    and the speed of the VAX controls how quickly Kermit can empty them.
  168.    
  169.    The recommended minimum size for each of these buffers is the number
  170.    shown as "Buffer size" by the C-Kermit SHOW PROTOCOL command, which is
  171.    the total amount of memory allocated by C-Kermit for packet buffers
  172.    (window slots times packet length). VMS C-Kermit is shipped with a
  173.    buffer size of 9065, which can be altered by the user with a SET
  174.    BUFFERS command.
  175.    
  176.    To change the values of the VMS typeahead buffer sizes, you should
  177.    edit the file SYS$SYSTEM:MODPARAMS.DAT. Determine the new values you
  178.    want to use and add lines like the following to the end of the
  179.    MODPARAMS.DAT file:
  180.    
  181.   MIN_TTY_TYPAHDSZ = new_value_for_regular      ! For VMS C-Kermit
  182.   MIN_TTY_ALTYPAHD = new_value_for_alternate    ! For VMS C-Kermit
  183.  
  184.    for example:
  185.    
  186.   MIN_TTY_TYPAHDSZ = 2064
  187.   MIN_TTY_ALTYPAHD = 2064
  188.  
  189.    The TTY_ALTYPAHD size should be at least as great as the TTY_TYPAHDSZ.
  190.    Digital recommends a value of 2064 or greater for TTY_ALTYPAHD if you
  191.    are running VMS V5.5 or higher, or if you are running the optional
  192.    LATmaster code under VMS V5.4-1, -2, or -3.
  193.    
  194.    You should also examine this file to be sure there aren't any other
  195.    definitions for TTY_TYPAHDSZ or TTY_ALTYPAHD. If there are, you'll get
  196.    warning messages in the next step.
  197.    
  198.      You may wish to simply set TTY_TYPAHDSZ=TTY_ALTYPAHD=2064, since
  199.      most common VMS "TTY ports" these days are actually LAT or TCP/IP
  200.      devices, which cannot easily be configured to use the alternate
  201.      buffer. Also, it takes a privileged user or program to set a port
  202.      to use the alternate buffer, and since we do not recommend
  203.      installing Kermit with privileges, this would restrict Kermit
  204.      access to privileged users.
  205.      
  206.      Let's consider a medium-sized VAX with perhaps 64 "ports" (either
  207.      serial ports or LAT or TCP/IP network ports). This system probably
  208.      has at least 16 megabytes of memory. Configuring TTY_TYPAHDSZ to
  209.      2064 will take up 64 * 2064 bytes of memory, or 132096 bytes. This
  210.      is less than 1 per cent of available memory. Most systems would
  211.      have more than 16Mb of memory for 64 simultaneous users, lowering
  212.      the percentage even further.
  213.      
  214.    In some cases, it might also be necessary to increase your system's
  215.    MAXBUF parameter. It should be somewhat longer than the longest packet
  216.    you want Kermit to be able to send or receive, to allow for SYS$QIO
  217.    overhead (the bigger the value, the more overhead). DEC currently
  218.    recommends 2300, which should be sufficient for 2K (2048-byte)
  219.    packets. If you want to use C-Kermit's maximum packet length, 9024,
  220.    then your MAXBUF should be set to about 12000. Do this in the
  221.    SYS$SYSTEM:MODPARAMS.DAT file:
  222.    
  223.   MIN_MAXBUF=xxxx
  224.  
  225.    You should also ensure that PQL_MBYTLM is at least MAXBUF + 2300;
  226.    otherwise, at least on early 5.x VMS releases (reportedly), the system
  227.    can crash.
  228.    
  229.    To have these changes take effect, run the "AUTOGEN" procedure:
  230.    
  231.   @SYS$UPDATE:AUTOGEN GETDATA SETPARAMS
  232.  
  233.    or:
  234.    
  235.   @SYS$UPDATE:AUTOGEN SAVPARAMS SETPARAMS
  236.  
  237.    or:
  238.    
  239.   @SYS$UPDATE:AUTOGEN SAVPARAMS GENPARAMS FEEDBACK
  240.   DIFFERENCE/OUTPUT=DIFF.DAT/PARALLEL SETPARAMS.DAT
  241.   EDIT/TPU DIFF.DAT ! Check out what Autogen is going to do to me.
  242.   @SYS$UPDATE:AUTOGEN SETPARAMS REBOOT
  243.  
  244.    (Read about AUTOGEN in the VMS Guide to System Management)
  245.    
  246.    This incorporates the new buffer sizes into the system configuration,
  247.    and they will take effect the next time the system is reloaded.
  248.    
  249.    To examine your system parameters:
  250.    
  251.   run sys$system:sysgen
  252.   SYSGEN> use current
  253.   SYSGEN> show maxbuf                (should be at least 2064)
  254.   SYSGEN> show virtualpagecnt        (should be at least 50000)
  255.   SYSGEN> show /tty                  (TTY_ALTYPAHD should be at least 2064)
  256.  
  257.    In an emergency, or for testing purposes, you can also change your
  258.    MIN_MAXBUF value "on the fly":
  259.    
  260.   $ run sys$system:sysgen
  261.   SYSGEN> set maxbuf 2300
  262.   SYSGEN> write active
  263.   SYSGEN> exit
  264.  
  265.    This operation should be used with caution, and should probably NOT be
  266.    used with values greater than about 3000. The AUTOGEN procedure is
  267.    safer because it understands the relationships among the major
  268.    parameters.
  269.    
  270.    NOTE: Although it is still recommended that you make your MAXBUF
  271.    setting large enough for Kermit packets, it is (as of C-Kermit edit
  272.    190) no longer strictly necessary. C-Kermit's packet writer now
  273.    recovers from MAXBUF and quota-exceeded errors automatically by
  274.    backing off and retransmitting the packet in appropriate-size chunks
  275.    (size determined by trial and error). But this involves a small amount
  276.    of additional overhead, so it's still best to have adequate MAXBUF and
  277.    quotas.
  278.    
  279.   3.2. User Quotas and Privileges
  280.   
  281.    C-Kermit communications are also affected by the user's BYTLM quota
  282.    and possibly also the process page quota (PGFLQUO). Also the BIOLM
  283.    quota (should be at least 10 or 20).
  284.    
  285.    In modern versions of VMS, the default BYTLM quota is 8192, which
  286.    should normally be adequate. If C-Kermit users experience error
  287.    messages informing them that a quota was exceeded during terminal
  288.    emulation or file transfer, the system manager should increase the
  289.    user's BYTLM and/or process page quota. To find out the user's quotas,
  290.    the system manager should:
  291.    
  292.   set default sys$system
  293.   run authorize
  294.   UAF> show <username>
  295.  
  296.    Then look for the relevant quotas and adjust them as required. The
  297.    BYTLM quota should be somewhat greater than the product of Kermit's
  298.    window size and packet size, for example, 8192 for 4 window slots and
  299.    2000-byte-packets. PGFLQUO should be 20,000 or higher.
  300.    
  301.    If users will be using C-Kermit's PUSH command or issuing REMOTE
  302.    commands (such as REMOTE DIR) to the VMS C-Kermit server, the user
  303.    will need to have the ability to create subprocesses (AUTHORIZE
  304.    parameter PRCLM). If Kermit will itself be invoked as a subprocess
  305.    (for example, from within a menu system) this should be considered as
  306.    well. Kermit uses local mailboxes for remote command execution, so
  307.    users will also need the TMPMBX privilege if these commands are to be
  308.    used.
  309.    
  310.   3.3. Configuring Serial Communication Ports
  311.   
  312.    If your system has a port that is frequently used for file transfers
  313.    (for example, with a modem), you should have your system manager
  314.    enable the alternate type-ahead buffer, and direct memory access, by
  315.    placing the command:
  316.    
  317.   $ SET TERMINAL ddcu:/PERMANENT/ALTYPEAHD/DMA
  318.  
  319.    in the system-wide startup command file, where ddcu: is the name of
  320.    the device, for each such device. If DMA is not enabled, Kermit will
  321.    run more slowly and use a lot more CPU time. (Note: DMA is only
  322.    available on certain types of devices; e.g. TX but not TT or LTA).
  323.    
  324.    If the device is connected to a modem, and is to be used for dialing
  325.    out, also include the /MODEM qualifier:
  326.    
  327.   $ SET TERMINAL ddcu:/PERMANENT/ALTYPEAHD/DMA/MODEM
  328.  
  329.    The modem must also be configured to make DSR follow CD. In modems
  330.    that use the Hayes AT command set, the command is AT&S1. If you can't
  331.    configure your modem this way, then VMS will hang up on it during the
  332.    dialing process, preventing you from completing calls (C-Kermit's DIAL
  333.    command will make this setting in the modem for you on a per-call
  334.    basis, but only if this information is in its internal modems
  335.    database; tell C-Kermit to SET MODEM TYPE xxx and then SHOW MODEM to
  336.    find out). A less desirable workaround is to configure the modem to
  337.    ignore DTR (AT&D0), but this can block normal hangup methods even when
  338.    you want to use them, thus opening security loopholes. A third
  339.    possibility is to jumper the CD and DSR wires in your modem cable.
  340.    
  341.    If the VMS port is not connected to a modem or other data
  342.    communications device that follows the RS-232 (V.24) signaling
  343.    conventions, or if the VMS port does not have a full complement of
  344.    RS-232 wires (which are lacking in modular MMJ ports, for example),
  345.    you might have to set the /NOMODEM qualifier instead:
  346.    
  347.   $ SET TERMINAL ddcu:/PERMANENT/ALTYPEAHD/DMA/NOMODEM
  348.  
  349.    Even with these settings you might experience what UNIX users know
  350.    fondly as "getty babble", which occurs when logins are enabled on the
  351.    device. This occurs with Kermit, SET HOST/DTE, or any other method of
  352.    communication; for example, AT<CR> is sent to the modem, the modem
  353.    echoes AT<CRLF> and then says OK<CRLF>. VMS thinks a user named AT is
  354.    trying to log in with a password of OK, and says "User authorization
  355.    failure", but the modem echoes this too, and so on, back and forth,
  356.    many times, maybe forever. Reportedly, this can be prevented by giving
  357.    the SECURE attribute to the port in question, e.g.:
  358.    
  359.   $ SET TERMINAL ddcu:/PERMANENT/SECURE
  360.  
  361.    which disables logins on the port until a BREAK signal is received.
  362.    
  363.    Additionally, for non-privileged users to access a terminal device,
  364.    they need to be granted access to it. The default for terminals is
  365.    access only by users with SYSTEM privileges (UIC group less than or
  366.    equal to MAXSYSGROUP, or with SYSPRV privilege). See the VMS
  367.    documentation for the SET PROTECTION command for more information.
  368.    Note that if you grant everyone access to the port, anyone can make
  369.    phone calls via the modem, so you might want to limit this to
  370.    particular users, possibly by using a device ACL (VMS V5.0 and later
  371.    only).
  372.    
  373.   3.4. Configuring LAT Devices
  374.   
  375.    In this discussion, we are using a DECserver 700-16 (the kind with
  376.    RJ45 connectors that lack a full complement of modem signals). (For
  377.    examples of configuring the DECserver 200, also see [34]Section 5.)
  378.    
  379.     3.4.1. Connecting a LAT Port to a PC
  380.     
  381.    We'll begin by connecting a PC's serial port to DECserver Port 2.
  382.    Commands are given at the DECserver's console, normally Port 1. In
  383.    case it is a new DECserver and you haven't yet given it a name:
  384.    
  385.   Local> set privilege
  386.   Local> define server name latbox
  387.   Local> initialize delay 0
  388.  
  389.    We'll be using the server name "latbox" in the examples. Now set up
  390.    port minimally for a test:
  391.    
  392.   Local> define port 2 autobaud disable
  393.   Local> define port 2 speed 19200
  394.   Local> define port 2 signal check disable
  395.   Local> logout port 2
  396.  
  397.    Then:
  398.    
  399.     1. Plug a BN25G-04 cable into LAT port 2.
  400.     2. Plug the appropriate adapter (H8585-something) into the other end
  401.        and connect it to the PC's serial port. In this case, the PC has a
  402.        DB-9, so we use the H8585-AA.
  403.     3. Start Kermit on the PC and tell it to:
  404.  
  405.   SET PORT COM1 (or whatever)
  406.   SET SPEED 19200
  407.   SET FLOW NONE
  408.   SET CARRIER OFF
  409.   CONNECT
  410.     4. Press the Enter key. You should see the Local> prompt, and you
  411.        should be able to type commands, e.g. to connect to your VMS
  412.        system.
  413.        
  414.    OK, so it works in local mode. If not, check your cabling. Now to set
  415.    it up for remote mode, i.e. to allow VMS to make a connection to the
  416.    PC through the DECserver port:
  417.    
  418.   Local> change port 2 access remote
  419.   Local> show port 2
  420.  
  421.    Take note of the port's name; by default it is PORT_2, but you can
  422.    change it to anything you like with:
  423.    
  424.   Local> change port 2 name blah
  425.  
  426.    We'll stick with PORT_2 in this discussion.
  427.    
  428.    With Kermit on the PC is still in CONNECT mode, do:
  429.    
  430.   Local> test port 2
  431.  
  432.    This should put a test pattern on PC screen.
  433.    
  434.    Now to set up the port for use from VMS. First enable SYSPRV, CMKRNL,
  435.    LOG_IO, and SYSNAM privileges, then:
  436.    
  437.   $ run sys$system:latcp
  438.   LATCP> create port lta600:
  439.   LATCP> set port lta600: /application /node=latbox /port=port_2 /noqueue
  440.   LATCP> exit
  441.  
  442.    The /NODE switch gives the nodename of the DECserver; the /PORT switch
  443.    gives the port *name* (not number) of the port on the DECserver. The
  444.    /NOQUEUE switch is important; otherwise if somebody does "set port
  445.    lta600" when it is in use, they will sit there and wait until it
  446.    becomes free.
  447.    
  448.    Then in VMS:
  449.    
  450.   $ set terminal LTA600: /permanent /fullduplex /altypeahd /speed=19200
  451.  
  452.    This sets the typeahead buffer and makes the speeds match. You can use
  453.    LATCP again to verify the setup:
  454.    
  455.   $ run sys$system:latcp
  456.   LATCP> show port lta600:
  457.  
  458.   Target Port Name: PORT_2       Actual Port Name:
  459.   Target Node Name: LATBOX       Actual Node Name:
  460.   Target Service Name:           Actual Service Name:
  461.  
  462.    (Use "show port" without any port number to look at all defined LAT
  463.    ports.)
  464.    
  465.    That's it. Now start kermit and assign the port:
  466.    
  467.   $ kermit
  468.   C-Kermit> set line lta600:
  469.   C-Kermit> show communications
  470.  
  471.    This should display the name and speed of the LAT device, as
  472.    configured above. Then to make the connection:
  473.    
  474.   C-Kermit> connect
  475.  
  476.    Type some characters to VMS C-Kermit -- you should see them come out
  477.    on the PC's screen. Type some characters on the PC keyboard and they
  478.    should come out on VMS C-Kermit's screen.
  479.    
  480.    On the PC, escape back to the Kermit prompt and type "show comm" or
  481.    "show modem" to see what modem signals are being presented by the
  482.    connection. DECservers that have 25-pin serial connectors, such as the
  483.    200 and the 700-8, can do full modem control, but those with mini
  484.    connectors, such as the 700-16, make you choose between limited sets
  485.    of modem signals; the DECserver can be configured for either hardware
  486.    flow control (recommended for high-speed connections) or DTR/CD
  487.    (allowing each end of the connection to tell when the other end has
  488.    hung up), but you can't have both. On the DECserver, use:
  489.    
  490.   Local> define port 2 signal select xxx
  491.  
  492.    where xxx is CTS-DSR-RTS-DTR or RI-DCD-DSR-DTR, to select the desired
  493.    complement of modem signals; the first one for hardware flow control,
  494.    the second one for ring/hangup control.
  495.    
  496.   Local> define port 2 signal control enable
  497.   Local> logo port 2
  498.  
  499.    On the PC, use "show comm" to make sure the PC sees the CTS signal. If
  500.    so, tell Kermit to:
  501.    
  502.   set flow rts/cts
  503.  
  504.    Then put the PC Kermit in server mode and, using VMS C-Kermit as
  505.    client, transfer some files. Experiment with window size, packet
  506.    length, and unprefixing to achieve the highest transfer rate. Then
  507.    experiment with higher serial speeds -- this will require a LATCP
  508.    command on VMS, "change port" and "logout port" commands on the
  509.    DECserver, and a "set speed" command in PC Kermit.
  510.    
  511.     3.4.2. Setting Up a Dialout Port
  512.     
  513.    Now let's connect a modem to DECserver Port 3 for high-speed data
  514.    transfer (RTS/CTS, but no RI/CD). In this example the modem is a USR
  515.    Courier.
  516.    
  517.    Connect port 3 (in this case with BN25G-04 cable with an H8585-AC
  518.    adapter) to the modem. Then at the DECserver:
  519.    
  520.   Local> set privilege
  521.   Local> define port 3 autobaud disable
  522.   Local> define port 3 speed 38400
  523.   Local> define port 3 signal select cts
  524.   Local> define port 3 signal check enable
  525.   Local> define port 3 access remote
  526.   Local> define port 3 name dialout
  527.   Local> logout port 3
  528.   Local> show port 3
  529.  
  530.    Back at VMS:
  531.    
  532.   $ run sys$system:latcp
  533.   LATCP> create port lta601:
  534.   LATCP> set port lta601: /application /node=latbox /port=dialout /noqueue
  535.   LATCP> exit
  536.   $ set terminal LTA601: /permanent /fullduplex /altypeahd /speed=38400
  537.  
  538.    Now start C-Kermit and assign the port:
  539.    
  540.   $ kermit
  541.   C-Kermit> set modem type usr
  542.   C-Kermit> set line lta601:
  543.   C-Kermit> show comm           ; Speed should be 38400
  544.   C-Kermit> set dial display on ; To verify modem dialog
  545.   C-Kermit> dial 7654321
  546.  
  547.    And off you go.
  548.    
  549.    For other configurations, refer to your DECserver and LATCP
  550.    documentation. You can set up port "hunt groups", you can assign
  551.    logical names to the VMS ports, which can refer to single LAT ports or
  552.    entire hunt groups, and so on. You can even define "bidirectional"
  553.    ports for both calling in and calling out, but these are difficult to
  554.    troubleshoot when there are problems.
  555.    
  556.   3.4.3. DECservers and Telnet
  557.   
  558.    DECservers that support TCP/IP connections can be used by C-Kermit for
  559.    shared dialout modem access. The DECserver can be configured for this
  560.    using a command like:
  561.    
  562.   CHANGE TELNET LISTENER 2001 PORT 1 ENABLE
  563.  
  564.    This associates TCP socket 2001 with serial port 1 on the DECserver.
  565.    Then you can use Kermit to Telnet to port 2001 on the DECserver and
  566.    dial the modem that is on the DECserver's serial port 1.
  567.    
  568.    If you cannot get reverse LAT working, but LAT is working, it is still
  569.    possible to use Kermit via LAT so long as your system (and Kermit)
  570.    support TCP. Start Kermit, tell it to "set host localhost" (the TCP
  571.    loopback name). In connect mode you can log back on to the same system
  572.    (see the cautions in [35]Using C-Kermit about "C-Kermit in the
  573.    Middle").
  574.    
  575.    Then you can use SET HOST/LAT from the CONNECT session to dial out,
  576.    login to the remote system and start the remote Kermit. Now go back to
  577.    the original Kermit session to transfer the files. You should try it
  578.    first with SET PREFIXING ALL in C-Kermit, and probably also SET PARITY
  579.    SPACE, and relatively short packets. If that works, you can try
  580.    settings that give higher performance at your own risk.
  581.    
  582.   3.5. The Virtual Terminal Driver
  583.   
  584.    For incoming modem connections, it can be very useful if the VMS
  585.    system is set up to support Virtual Terminals. Once these have been
  586.    set up, then if an incoming connection fails because of line problems,
  587.    it should be possible to reconnect to the original session by
  588.    redialling and logging in again. You should then get a prompt asking
  589.    if you wish to connect to your disconnected session, allowing you to
  590.    resume where you left off. You should see something like this:
  591.    
  592.       You have the following disconnected process:
  593.   Terminal   Process name    Image name
  594.   VTA456:    ABCDEF          (none)
  595.   Connect to above listed process [YES]: Y
  596.   Connecting to terminal _VTA456:
  597.   ABCDEF>
  598.  
  599.    There is a timeout of something like an hour, after which the
  600.    disconnected session is deleted entirely.
  601.    
  602.    [If on re-dialing the host you find you are reconnected to the
  603.    original session without needing to login, then that host has a
  604.    security problem, as well as a misconfigured DECserver and/or modem or
  605.    lead...]
  606.    
  607.    The virtual terminal driver is loaded at startup (or later) using
  608.    SYSGEN or SYSMAN as appropriate. The definition for TTY_DEFCHAR2 in
  609.    MODPARAMS.DAT also needs to be changed to set the appropriate bit to
  610.    enable the disconnect processing by default on all terminals. [This
  611.    change needs a reboot.]
  612.    
  613.    Something like the following should work (check the VMS manuals):
  614.    
  615.    VAX:
  616.           $ MCR SYSGEN VTA0/NOADAPTER/DRIVER=TTDRIVER
  617.           
  618.    Alpha:
  619.           $ MCR SYSMAN IO CONNECT VTA0/NOADAPTER -
  620.           /DRIVER=SYS$LOADABLE_IMAGES:SYS$TTDRIVER.EXE
  621.           
  622.    MODPARAMS.DAT:
  623.           TTY_DEFCHAR2 = 135170 ! = %x21002. Check the manual!
  624.           (%x20000 = Disconnect, %x1000 = Line Edit, %x2 = Autobaud)
  625.           
  626.   3.6. Captive Accounts and Restricted Access
  627.   
  628.    Some VMS sites restrict users from getting at the DCL prompt and
  629.    services by setting their accounts to be "captive". This should
  630.    automatically prevent C-Kermit's DCL-access commands (such as PUSH)
  631.    from working. Any attempt to execute such a command should result in
  632.    C-Kermit issuing an error message. Should a user circumvent this, VMS
  633.    will automatically terminate the user's process. In addition to
  634.    CAPTIVE, accounts can also be set to RESTRICTED, to disable all types
  635.    of spawning. Note that DEC says that RESTRICTED is only used "to
  636.    ensure users complete login processing without interruption". DEC
  637.    further states that they intend to modify VMS utilities to no longer
  638.    prohibit spawning in a future release.
  639.    
  640.    Further, you should be aware that preventing users from getting to DCL
  641.    only provides an illusion of security. There are many ways of getting
  642.    to DCL which are non-obvious. For cases where absolute security is
  643.    required, you should in- vestigate the AUTHORIZE flags CAPTIVE and
  644.    DISIMAGE. Consult the VMS Security Manual for more information.
  645.    
  646.    C-Kermit itself can be configured to prevent system access, by
  647.    compiling it with the NOPUSH option (for this you would have to edit
  648.    CKVKER.COM file and add a definition for the symbol NOPUSH to the
  649.    CFLAGS). This disables not only the PUSH command and its synonyms
  650.    (RUN, @, SPAWN), but also OPEN !READ, OPEN !WRITE, as well as the
  651.    server's execution of REMOTE HOST commands. See CKCCFG.DOC for further
  652.    information.
  653.    
  654.    There is also a runtime approach for this: put the (invisible) command
  655.    NOPUSH someplace where it will always be executed; for example, the
  656.    system-wide CKERMIT.INI file, or in the "kermit" command definition:
  657.    
  658.   $ KERMIT :== "$SYS$TOOLS:KERMIT ""-C"" ""NOPUSH"""
  659.  
  660.    You can also define the logical name (environment variable) CK_NOPUSH
  661.    to achieve the same effect.
  662.    
  663.    The NOPUSH command does at runtime exactly what defining the NOPUSH
  664.    symbol at compile time does.
  665.    
  666.    [ [36]Contents ] [ [37]C-Kermit ] [ [38]Kermit Home ]
  667.     ________________________________________________________________________
  668.   
  669.   4. DECODING VMS C-KERMIT HEX FILES
  670.   
  671.    If you have obtained the executable VMS C-Kermit program encoded in
  672.    printable "hex" format on magnetic tape or over a network, you can
  673.    decode it back into a runnable .EXE program image using the CKVDEH.MAR
  674.    program. This is an assembly-language program for the VAX or Alpha,
  675.    which you should assemble, link, and run as follows:
  676.    
  677.   $ macro ckvdeh  (on the Alpha, substitute "macro/migrate ckvdeh")
  678.   $ link ckvdeh
  679.   $ run ckvdeh
  680.  
  681.    CKVDEH prompts you for the input file name and then creates a .EXE
  682.    file with the same root name. For example, if you enter CKVKER.HEX as
  683.    the source file, the resulting executable will be CKVKER.EXE. This
  684.    procedure works on both the VAX and the Alpha -- the same program,
  685.    CKVDEH.MAR, compiles and runs on both platforms.
  686.    
  687.    The C-Kermit .EXE files were built under VAX/(Open)VMS 5.x and Alpha
  688.    OpenVMS 1.x (whenever possible; otherwise under 6.1). The VAX versions
  689.    will not run under pre-5.0 VMS releases. If you have a VMS 4.x system
  690.    with C compiler, however, you should be able to build C-Kermit using
  691.    the CKVOLD.COM procedure.
  692.    
  693.    Since VMS C-Kermit can be built with no TCP/IP support or with support
  694.    for several different TCP/IP packages, and it can be built on both the
  695.    VAX and Alpha platforms, you should pick the right .HEX file for your
  696.    environment.
  697.    
  698.    The naming conventions are as follows:
  699.    
  700.   CKVaKER-VMSnn-tttvv.xxx
  701.  
  702.    where:
  703.    
  704.   CKV = "C-Kermit for VMS".
  705.     a = architecture: A for Alpha, V for VAX.
  706.   KER = Kermit
  707.    nn = VMS version, e.g. 55 for VMS 5.5, 70 for VMS 7.0.
  708.   ttt = TCP/IP product, if any:
  709.         CMU = CMU-OpenVMS/IP ("CMU/Tek")
  710.         UCX = Compaq (DEC) TCP/IP(*)
  711.         PST = Process Software TCPware
  712.         TGV = Process Software (Cisco (TGV)) MultiNet(*)
  713.         WIN = Attachmate (Wollongong) WIN/TCP (PathWay)(*)
  714.    vv = The version number of the TCP/IP product (may be 2 or more characters)
  715.   xxx = HEX (text-encoded binary) or EXE (true binary)
  716.  
  717.    When there is no TCP/IP support built in, tttvv is "NONET".
  718.    
  719.      * It's a bit of a task to keep up with all the buyouts and renaming.
  720.        Any of these companies or products can be snapped up and/or
  721.        renamed at any time, and most of them have been, including DEC
  722.        itself.
  723.        
  724.    Examples:
  725.    
  726.   CKVVKER-VMS55-NONET.HEX:   VAX, VMS 5.5, no TCP/IP, hex format.
  727.   CKVAKER-VMS62-TGV40.EXE: Alpha, VMS 6.2, Multinet 4.0, binary format.
  728.  
  729.    Not every combination is necessarily available. In general, an .EXE
  730.    built under a certain version of VMS will also run under later VMS
  731.    versions, but the opposite is usually not true. Also, if a version was
  732.    built under the same VMS version that you have, but with a higher ECO
  733.    level (OS or library patches), it might not run.
  734.    
  735.    So try to pick one that was built under a VMS version less than or
  736.    equal to yours, and with the the same TCP/IP product you have having
  737.    with a version number less than or equal to yours. If that doesn't
  738.    work, try the next earlier one, etc. If you can't find one for your
  739.    TCP/IP product, try the lowest-numbered UCX (DEC TCP/IP) version; most
  740.    third-party TCP/IP products also support UCX applications. In any
  741.    case, after getting the appropriate executable onto your VMS disk,
  742.    rename it to KERMIT.EXE, e.g.:
  743.    
  744.   $ RENAME CKVAKER-VMS62-TGV40.EXE KERMIT.EXE
  745.  
  746.    The "labeled file converter" is simple; it comes in a VAX version,
  747.    CKVVCVT-VMSnn.{HEX,EXE}, and an Alpha version,
  748.    CKVACVT-VMSnn.{HEX,EXE}. Rename it to CKVCVT.EXE so VAX and Alpha
  749.    users don't have to use different names for the same program.
  750.    
  751.    [ [39]Contents ] [ [40]C-Kermit ] [ [41]Kermit Home ]
  752.     ________________________________________________________________________
  753.   
  754.   5. INSTALLING VMS C-KERMIT
  755.   
  756.    VMS C-Kermit must be installed on your VMS system by hand. There is no
  757.    VMSINSTAL kit because it would have to include many megabytes of
  758.    differently- configured executables to choose from, and many of
  759.    system-configuration items discussed above are best done by the system
  760.    manager manually, in privileged mode, after some thought and
  761.    consideration.
  762.    
  763.      IMPORTANT: DO NOT INSTALL VMS C-KERMIT AS A PRIVILEGED PROGRAM!
  764.      Instead, install it as a foreign command.
  765.      
  766.    To install C-Kermit, follow this procedure:
  767.    
  768.     1. If you have the old Bliss Kermit-32 on your system, rename it to
  769.        KERMIT32.EXE. If you have a symbol KERMIT defined to run
  770.        Kermit-32, change the symbol name to KERMIT32.
  771.     2. Identify the directory where you want to install the C-Kermit
  772.        program. Normally this would be a directory that is unaffected by
  773.        installation of DEC software, such as SYS$TOOLS =
  774.        SYS$SYSDEVICE[SYSTOOLS]. From now on, we will assume you are using
  775.        SYS$TOOLS:.
  776.     3. Copy the desired .EXE file (VAX or Alpha, with the appropriate
  777.        networking support) to that directory, rename it to KERMIT.EXE,
  778.        and give users permission to run it, for example:
  779.  
  780.   $ COPY CKVVKER-VMS55-UCX20.EXE SYS$TOOLS:KERMIT.EXE
  781.   $ SET PROTECTION=(S:RWED,O:RWED,G:RE,W:RE) SYS$TOOLS:KERMIT.EXE
  782.        If Kermit is going to be used a lot, you can have it preloaded and
  783.        its pure memory segments shared:
  784.  
  785.   $ INSTALL ADD SYS$TOOLS:KERMIT.EXE/OPEN/HEADER/SHARE
  786.     4. Copy the standard CKERMIT.INI file to the same directory:
  787.  
  788.   $ COPY CKERMIT.INI SYS$TOOLS:
  789.   $ SET PROTECTION=(S:RWED,O:RWED,G:RE,W:RE) SYS$TOOLS:CKERMIT.INI
  790.     5. Add the following line to SYS$COMMON:[SYSMGR]SYSTARTUP_V5.COM (or
  791.        whatever your system startup file is):
  792.  
  793.   $ DEFINE/SYSTEM CKERMIT_INI SYS$TOOLS:CKERMIT.INI
  794.     6. Find your system-wide login DCL command procedure:
  795.  
  796.   $ SHOW LOGICAL SYS$SYLOGIN
  797.   "SYS$SYLOGIN" = "SYS$TOOLS:SYLOGIN.COM" (LNM$SYSTEM_TABLE)
  798.        and then add the following line to it:
  799.  
  800.   $ KERMIT :== $SYS$TOOLS:KERMIT
  801.        This defines SYS$TOOLS:KERMIT.EXE as a "foreign command".
  802.        NOTE: VMS 6.2 and later support automatic creation of foreign
  803.        commands by placing the corresponding .EXE (or .COM) files in any
  804.        directory that is included in the DCL$PATH logical name; e.g.:
  805.  
  806.   $ DEFINE DCL$PATH SYS$DISK:[],DISK1:[TOOLS],SYS$SYSTEM:
  807.     7. Install the C-Kermit HELP file in your VMS HELP library. First
  808.        delete any earlier KERMIT help entry, then install the new one:
  809.  
  810.   $ LIBRARY/HELP/DELETE=KERMIT SYS$HELP:HELPLIB.HLB
  811.   $ LIBRARY/INSERT/HELP SYS$HELP:HELPLIB.HLB CKVKER.HLP
  812.     8. Create a publicly accessible directory, such as [KERMIT], in which
  813.        to make other C-Kermit files available to your users:
  814.        
  815.         CKERMIT.KDD
  816.                 Sample dialing directory file.
  817.                 
  818.         CKERMIT.KSD
  819.                 Sample services directory.
  820.                 
  821.         CKERMIT.KND
  822.                 Sample network directory.
  823.                 
  824.         CKEDEMO.KSC
  825.                 Macro definitions from "Using C-Kermit".
  826.                 
  827.         CKEVT.INI
  828.                 Command file to demonstrate special screen effects from
  829.                 "Using C-Kermit".
  830.                 
  831.         CKCKER.UPD
  832.                 A supplement to the book, "Using C-Kermit", describing
  833.                 features added since the book was published.
  834.                 
  835.         CKCKER.BWR
  836.                 The general C-Kermit beware file.
  837.                 
  838.         CKVKER.BWR
  839.                 The VMS-specific C-Kermit beware file.
  840.                 
  841.        If the Kermit program is not installed as a "foreign command" as
  842.        in (6) above, you can still RUN it, but you can't pass
  843.        command-line arguments to it this way. However, you can pass
  844.        command-line arguments if you invoke it with the MCR command:
  845.  
  846.   $ mcr kermit -s oofa.txt ; (assumes "kermit.exe" in sys$system)
  847.        or:
  848.  
  849.   $ mcr disk1:[olga]kermit -s oofa.txt ; (explicit path given)
  850.  
  851.    [ [42]Contents ] [ [43]C-Kermit ] [ [44]Kermit Home ]
  852.     ________________________________________________________________________
  853.   
  854.   6. USING MODEMS
  855.   
  856.    If you have a VAX or Alpha with a real serial port (DB-9 or DB-25),
  857.    you can use it with a modem. If your machine has MMJ (assymetrical
  858.    RJ-45) modular jack sockets (like a VAXstation 3100), you won't be
  859.    able to make very good use of modems since these ports do not support
  860.    modem signals.
  861.    
  862.    Before attempting to use a modem on port (say) TTA0, you (or the
  863.    system manager) will need to configure the port as a modem port:
  864.    
  865.  $ SET TERMINAL TTA0 /MODEM /ALTYP /PERM
  866.  
  867.    From section 5.2.3.1 of the I/O User's Reference Manual:
  868.    
  869.      Remote terminal connections have a timeout feature for the security
  870.      of dial-up lines. If no channel is assigned to the port within 30
  871.      seconds, or a port with an assigned channel is not allocated, the
  872.      DTR signal is dropped. Such action prevents an unused terminal from
  873.      tying up a line. However, there are configurations (such as a
  874.      printer connected to a remote line) in which the line should not be
  875.      dropped even though it is not being used interactively. To bypass
  876.      the 30-second timeout, set the system generation parameter
  877.      TTY_DIALTYPE to 4. (Note that if TTY_DIALTYPE is equal to 4, all
  878.      dial-up lines will skip the timeout waiting for a channel to be
  879.      assigned.)
  880.      
  881.    The following is reprinted by permission; references to Kermit-32 are
  882.    obsolete.
  883.    
  884.                   How to Use a MODEM With Your VMS System
  885.                              Richard B. Gilbert
  886.                         Computer Systems Consultant
  887.               76702.1567@CompuServe.Com Revised July 30, 1996
  888.    
  889.    Most MODEMs come with factory defaults intended for dialout use with
  890.    PCs. The MODEM is typically set to ignore DTR; e.g., assume that it is
  891.    always asserted and to assert CD at all times regardless of the actual
  892.    state of the received carrier. The user is not required to do much, if
  893.    anything, to get it to work. Such a MODEM requires some configuration
  894.    before it will work properly, or at all, with a VMS System.
  895.    
  896.    Be sure that the serial port you are using supports MODEM control
  897.    signals. On the DMF32, for example, only ports 0 and 1 can be used
  898.    with MODEMS. These ports on the DMF32 must have DIP switches set to
  899.    enable MODEM control signals. The VAXStation 3100 does NOT support
  900.    MODEM control! (It is possible to use a MODEM but the VAXstation
  901.    cannot detect the loss of the connection; the next person to dial in
  902.    could find himself logged in to your account!) The MicroVAX 3100 does
  903.    support MODEM control. As a general rule, anything with a DEC Modified
  904.    Modular Jack (MMJ) connector does not support full MODEM control; the
  905.    MMJ has only six pins and nine are required. Eight pin RJ45 connectors
  906.    are sometimes used; e.g. on some models of the DECserver 700, where a
  907.    choice is offered as to the signals supported.
  908.    
  909.    Connect the MODEM with a cable that supports MODEM control signals,
  910.    such as Digital's BC22E. The BC22F, connecting all twenty-five pins,
  911.    is overkill but will work quite well. A twenty-five conductor ribbon
  912.    cable will also work but a shielded cable is highly recommended in
  913.    order to comply with Radio Frequency Interference (RFI) requirements.
  914.    
  915.    Note that while it was possible to "fake it" with VMS V4.x and
  916.    earlier, VMS V5 requires that all of the MODEM control signals be
  917.    connected. (Pins 2-8, 20 and 22 should be connected straight through;
  918.    i.e., 2-2, 3-3, 4-4, ...). If you are forced to sacrifice one signal,
  919.    try RI (Ring Indicator) first. For reference, here is the standard
  920.    pinout for the RS-232-C DB-25 connector.
  921.    
  922.    Pin Description
  923.    1 Protective ground (may be connected to shield at ONE end only)
  924.    2* Transmitted data (TxD)
  925.    3* Received data (RxD)
  926.    4* Request to send (RTS)
  927.    5* Clear to send (CTS)
  928.    6* Data set ready (DSR)
  929.    7* Signal ground
  930.    8* Carrier detect (CD)
  931.    12 Speed Mode Indicate (or secondary CD)
  932.    15 Synchronous transmit clock
  933.    17 Synchronous receive clock
  934.    19 Speed select (or secondary RTS)
  935.    20* Data terminal ready (DTR)
  936.    22* Ring indicator (RI)
  937.    23 Data Signal Rate Select (DSRS)
  938.    
  939.    It should be noted that not all devices connect or support all these
  940.    pins and not all those listed are necessary for "full MODEM control".
  941.    The pins marked with an asterisk are generally essential to
  942.    satisfactory and secure operation of your modem.
  943.    
  944.    You will need to make some switch settings on your MODEM. The
  945.    following settings are for a U.S. Robotics Courier V32bis FAX Modem.
  946.    Other U.S. Robotics MODEMs use quite similar switch numbers and
  947.    settings. Other manufacturers may use different switch numbers but the
  948.    functions available are typical. See your MODEM's instruction manual
  949.    for the sordid details. The settings marked with an asterisk are
  950.    critical to the successful use of your MODEM. Some settings can also
  951.    be made from the CPU via the MODEM's AT command set, in which case the
  952.    hardware switch settings determine the MODEM's power on defaults. The
  953.    AT commands in parentheses, following the switch settings, are the
  954.    commands for a U.S. Robotics Courier HST Dual Standard MODEM. Check
  955.    your manual for the proper commands for your MODEM.
  956.    
  957.     1. (*) DTR Normal (controlled by CPU) (AT&D2&W)
  958.     2. Verbal result codes (Useful during dialout) (ATV1)
  959.     3. (*) Do not display result codes (Quiet mode) (ATQ1)
  960.     4. Echo off line commands (Useful during dialout) (ATE1)
  961.     5. (*) Auto answer (MODEM will answer the phone if DTR is asserted)
  962.        (ATS0=1)
  963.     6. (*) Normal Carrier detect (controlled by MODEM) (AT&C1&W)
  964.     7. Display originate result codes only.
  965.     8. Normal At command set (Must be enabled for auto dial.)
  966.     9. Online after +++
  967.    10. Load NVRAM defaults on power up.
  968.        
  969.    Many users have observed a VMS System dropping DTR (Data Terminal
  970.    Ready) while a user is trying to dial in, causing the MODEM to hang up
  971.    the phone. The terminal driver will drop DTR if it sees DSR (Data Set
  972.    Ready) for more than thirty seconds, without also seeing CD (Carrier
  973.    Detect). If it is possible to configure the MODEM so that it does not
  974.    assert DSR until it asserts CD (AT &S1&W), do so. Otherwise it will be
  975.    necessary to use a modified cable. At the VAX end of the cable, cut
  976.    the wire leading to pin 6 (DSR) and jumper pin 6 to pin 8 (CD).
  977.    Commands similar to the following should be placed in your
  978.    SYS$MANAGER:SYSTARTUP_VMS.COM (SYSTARTUP_V5.COM for VMS V5.X) file to
  979.    set up an asynchronous port for use with a MODEM. You may want to add
  980.    some more qualifiers but this will get you going.
  981.    
  982. $       SET TERMINAL -
  983.         /PERMANENT -    ! Make settings permanent
  984.         /MODEM -        ! Use MODEM control signals
  985.         /DIALUP -       ! Gives the DIALUP identifier to user.
  986.         /HANGUP -       ! Hang up the phone when user logs off
  987.         /AUTOBAUD -     ! Detect the user's baud rate and set it.*
  988.         /ALTYPEAHD -    ! Use the alternate typeahead buffer.  The
  989.                         ! alternate typeahead buffer can be made larger
  990.                         ! than the regular one.  This is helpful if you
  991.                         ! are doing file transfers.  See SYSGEN parameter
  992.                         ! TTY_ALTYPAHD.
  993.         /HOSTSYNC -     ! VMS System will send XOFF when its buffer is
  994.                         ! nearly full and XON when it is ready for more
  995.                         ! input.  See SYSGEN parameter TTY_ALTALARM.
  996.         _TXA0:
  997.  
  998. $       SET SECURITY /CLASS=DEVICE /PROTECTION=W:R      ! VMS V6
  999.                         ! Sets device protection to allow non-privileged
  1000.                         ! users to allocate the device for dialing out.
  1001.                         ! Otherwise user must own device or hold SYSPRV.
  1002. or
  1003. $       SET PROTECTION=W:R /DEVICE                      ! VMS V5
  1004.  
  1005.      * Many modern MODEMs are capable of using a fixed DTE rate to talk
  1006.        to the computer; e.g. if they are set to 19200, they will talk to
  1007.        the computer at 19200 regardless of what speed they are using to
  1008.        talk to the remote MODEM. This feature has performance
  1009.        implications for MODEMs that do data compression using either
  1010.        CCITT V.41 or MNP. For such MODEMs, set a speed that is at least
  1011.        four times the rated DCE speed of the MODEM or the highest
  1012.        available speed using /SPEED=xxxxx rather than using /AUTOBAUD.
  1013.        The MODEM must be set to use the corresponding speed. The U.S.
  1014.        Robotics Courier series are set to a particular DTE rate by the
  1015.        most recent AT&W command; the rate set is the current speed of the
  1016.        port. See your MODEM's instructions for details.
  1017.        
  1018.    The following commands should probably go in SYS$SYLOGIN, your
  1019.    system-wide login command file:
  1020.    
  1021.  
  1022. $! Test for interactive or batch mode
  1023. $!
  1024. $       IF F$MODE() .NES. "INTERACTIVE" THEN GOTO 10$
  1025. $!   Set up device dependant terminal characteristics.  This only works
  1026. $! if the terminal responds to ANSI Device Attributes (DA) control string.
  1027. $! Most DEC terminals (VT1xx, VT2xx, VT3xx, VT4xx, VT5xx, LAxxx) and
  1028. $! compatibles will do so.
  1029. $       IF F$GETDVI("TT", "TT_MODEM") THEN $ SET TERMINAL /INQUIRE
  1030. $ 10$:
  1031. **************************************************************************
  1032.  
  1033.    To set the terminal for temporary dialout use, execute the following
  1034.    commands:
  1035.    
  1036. $       ALLOCATE TXA0:  KER$COMM        ! Logical is useful for Kermit-32.
  1037. $       SPEED="''P1'"
  1038. $! Default to 1200 baud.                ! Pick a suitable default value.
  1039. $       IF SPEED .EQ. "" THEN SPEED=1200
  1040. $       SET TERMINAL /NOAUTOBAUD /SPEED='SPEED' KER$COMM:
  1041.  
  1042.    You may need to add a /NOECHO qualifier if your terminal program is
  1043.    too stupid to read with no echo. It is not necessary with SET
  1044.    HOST/DTE, KERMIT, XMODEM, or HOST32.
  1045.    
  1046.    To support a MODEM on a DECServer 200:
  1047.    
  1048.     1. Set up the terminal server as follows: (assuming port 8)
  1049.  
  1050.   Local> DEFINE PORT 8 ACCESS DYNAMIC AUTOBAUD DISABLED
  1051.   Local> DEFINE PORT 8 DSRLOGOUT DISABLED FLOWCONTROL XON
  1052.   Local> DEFINE PORT 8 INACTIVITY ENABLED MODEM ENABLED
  1053.   Local> DEFINE PORT 8 SIGNAL CHECK ENABLED
  1054.   Local> DEFINE PORT 8 SPEED 2400 ALTERNATE SPEED 1200
  1055.   Local> DEFINE PORT 8 DIALUP ENABLED
  1056.   Local> LOGOUT PORT 8
  1057.   Local> DEFINE SERVICE service_name PORT 8 IDENT "string"
  1058.   Local> SET SERVICE service_name PORT 8 IDENT "string"
  1059.        Other port characteristics may be defined "to taste".
  1060.     2. Insert the following statements in SYS$STARTUP:LAT$SYSTARTUP.COM
  1061.        (SYS$MANAGER:LTLOAD.COM for VMS V5.4 and below):
  1062.  
  1063.   CREATE PORT LTA100: /NOLOG
  1064.   SET PORT LTA100: /APPLICATION /NODE=server_name /SERVICE=service_name -
  1065.         /NOQUEUE /NOLOG
  1066.        The LTA number is more or less arbitrary but must take into
  1067.        account the fact that LAT startup creates a few ports temporarily
  1068.        (starting at LTA1) and the number you choose must not conflict.
  1069.        The server_name and service_name must correspond exactly to the
  1070.        names used in the DECserver DEFINE SERVER server_name and DEFINE
  1071.        SERVICE service_name commands!
  1072.     3. Insert the following statements in SYS$MANAGER:SYSTARTUP_VMS.COM
  1073.        (SYS$MANAGER:SYSTARTUP_V5.COM for VMS V5.X):
  1074.  
  1075. $!
  1076. $       @SYS$STARTUP:LAT$STARTUP.COM    ! Start LAT.
  1077. $! Note that SYS$STARTUP:LAT$STARTUP.COM starts LAT and then invokes
  1078. $! LAT$SYSTARTUP.COM to complete the system specific part of the startup.
  1079. $! VMS V5.4 and below would use @SYS$MANAGER:LTLOAD.COM.
  1080. $!
  1081. $! Set up MODEM port on terminal server.  The SET TERMINAL may not
  1082. $! be necessary at all since the DECserver DEFINE commands include equivalents
  1083. $! for everything except /ALTYPEAHD.
  1084. $       SET TERMINAL /PERMANENT /DIALUP /ALTYPEAHD /HOSTSYNC    LTA100:
  1085. $       SET SECURITY /CLASS=DEVICE /PROTECTION=W:R              LTA100:
  1086.     4. Reboot or execute the commands in steps 2 and 3.
  1087.        
  1088.    [ [45]Contents ] [ [46]C-Kermit ] [ [47]Kermit Home ]
  1089.     ________________________________________________________________________
  1090.   
  1091.   7. BUILDING VMS C-KERMIT FROM THE SOURCE CODE
  1092.   
  1093.    C-Kermit is written in the C programming language. To build C-Kermit
  1094.    on the VAX, you must have VAX C, DEC C, or GNU GCC. At some sites, the
  1095.    C header files are archived in a VMS library and then VMS C-Kermit
  1096.    might not be compilable. If the C compiler (preprocessor) complains
  1097.    about not being able to find header files, you'll have to extract them
  1098.    from the library. A sample DCL procedure for this can be found at the
  1099.    end of this file.
  1100.    
  1101.    WARNING: When building with GCC on a VMS system that has Multinet
  1102.    installed, you must ensure that the GCC TIME.H file is used instead of
  1103.    the Multinet TIME.H; otherwise there will be a fatal error in CKVTIO.C
  1104.    at the declaration of "tcount", around line 450. Other warnings appear
  1105.    to be harmless.
  1106.    
  1107.    WARNING: DEC C 4.0 has a bug in which the XABALL struct member
  1108.    xab$b_bkz (used in CKVFIO.C) is not defined. DEC gives a simple
  1109.    example -- compiling the following code with DEC C using either /DECC
  1110.    and /VAXC:
  1111.    
  1112.   #include <rms.h>
  1113.   struct XABALL xabDATAall;
  1114.   int f() {
  1115.       xabDATAall.xab$b_bkz = 63;
  1116.       return 1;
  1117.   }
  1118.  
  1119.    Results in:
  1120.    
  1121.   %CC-E-NEEDMEMBER, In this statement, "xab$b_bkz" is not a member of "xabDATAa
  1122. ll"
  1123.  
  1124.    If you find that the above code produces the same problem on your
  1125.    system, define BUGFILL7, e.g.:
  1126.    
  1127.   @ckvker.com "" "" "BUGFILL7"
  1128.  
  1129.    BEWARE: Certain versions of VAX C can generate incorrect code when a
  1130.    function is used before it is declared, and it generates a return
  1131.    value (via a return statement) that is not used; other functions might
  1132.    have their entry masks (argument lists) corrupted. If you experience
  1133.    bizarre behavior from a version of C-Kermit built with VAX C, try
  1134.    recompiling with /OPT=NOINLINE and /NOOPT, or some other reduced
  1135.    optimization level.
  1136.    
  1137.    Both VAX C and DEC C are moving targets. A version of C-Kermit that
  1138.    was built successfully with version x.y of the compiler almost always
  1139.    fails to build under version x.y+1. Thus you will find increasing
  1140.    numbers of #ifdefs in the code (mostly CKCNET.C and .H and the CKV*.*
  1141.    modules) keyed on explicit C compiler version numbers. Note the form
  1142.    of these carefully -- they have to be just right). Also note that you
  1143.    can't use constructions like:
  1144.    
  1145.   #if __DECC_VER >= 500000000
  1146.  
  1147.    ANYWHERE in a portable module because neither "#if" nor relational
  1148.    operators in preprocessor statements are portable.
  1149.    
  1150.    The number of possible VMS C-Kermit configurations is large, perhaps
  1151.    not even countable: VAX vs Alpha, VAXC vs DECC vs GCC, no network
  1152.    support vs Multinet vs TCPware vs Wollongong vs UCX vs CMU/Tek, and
  1153.    this release of VMS versus all the others. The kicker is in the
  1154.    releases; for example DEC C 4.0 vs 4.1 vs 5.0 vs 5.3 (etc) versus the
  1155.    TCP/IP product's header files, which themselves go through all sorts
  1156.    of releases and patches. We can't guarantee that C-Kermit can be
  1157.    successfully built on every combination, but in version 6.0 we are
  1158.    much closer to that goal than ever before.
  1159.    
  1160.    Before leaving this topic, let's look at how to find out the relevant
  1161.    version numbers. SHOW SYSTEM (among other commands) tells you the VMS
  1162.    version number. To find the C version number, try:
  1163.    
  1164.   $ CC /VER
  1165.  
  1166.    which works for recent DECC versions, or:
  1167.    
  1168.   $ CC NLA0: /NOOBJ /VERSION
  1169.  
  1170.    or (when the above doesn't work):
  1171.    
  1172.   $ CC/LIST=FOO SYS$INPUT
  1173.   ^Z
  1174.  
  1175.    and then look at the first line of FOO.LIS.
  1176.    
  1177.    The method for finding out the TCP/IP product version number depends
  1178.    on the product. For Multinet:
  1179.    
  1180.   $ MU SHOW /VERSION
  1181.  
  1182.    For DEC TCP/IP (UCX) versions 3.0 and later:
  1183.    
  1184.   $ UCX SHOW VERSION
  1185.  
  1186.    For earlier releases, or ones where the above command doesn't work,
  1187.    try:
  1188.    
  1189.   $ RUN SYS$SYSTEM:UCX$VERSIONS
  1190.  
  1191.    or:
  1192.    
  1193.   $ ANALYZE/IMAGE SYS$SYSTEM:*BGDRIVER
  1194.  
  1195.    or:
  1196.    
  1197.   $ ANALYZE/IMAGE SYS$LOADABLE_IMAGES:*BGDRIVER
  1198.  
  1199.    For others: (somebody please fill this in)
  1200.    
  1201.    Before trying to compile, make sure you've got the disk space and
  1202.    quotas, etc, that are needed. In version 6.0 and later, you'll
  1203.    probably need as much as 8 or 10 megabytes for all the sources,
  1204.    objects, and binaries.
  1205.    
  1206.    The User Authorization File (UAF) parameters of the account in which
  1207.    C-Kermit will be built must be set to accomodate the large size of
  1208.    some source modules. Recommended values are:
  1209.    
  1210.   PAGE FILE QUOTA:  at least 60000
  1211.   Working set extent:  at least 5012
  1212.  
  1213.    To modify: Suppose a user KERMIT is the VMS account from which Kermit
  1214.    is maintained. To set these values, the system manager must do the
  1215.    following:
  1216.    
  1217.   $ set default sys$system
  1218.   $ mcr authorize
  1219.   UAF> modify kermit/pgflquo=60000/wsextent=5012
  1220.   UAF> exit
  1221.  
  1222.    If errors such as:
  1223.    
  1224.   %cc-f-text Virtual Memory limits exceeded
  1225.  
  1226.    occur during the build procedure, these parameters may need adjustment
  1227.    (upwards).
  1228.    
  1229.    To build C-Kermit, create a new directory and make it your current
  1230.    directory:
  1231.    
  1232.   $ CREATE/DIR [.KERMIT]
  1233.   $ SET DEFAULT [.KERMIT]
  1234.  
  1235.    and put the C-Kermit source files and build procedures there, for
  1236.    example by copying them from the distribution tape or cartridge.
  1237.    
  1238.    Two build procedures are provided for C-Kermit 6.0 and later; one
  1239.    (CKVOLD.COM) for VMS 4.x, the other (CKVKER.COM) for VMS 5.0 and
  1240.    later. The two are equivalent except for syntax, and should work
  1241.    everywhere. No extra products (MAKE, MMS, MMK, etc) are required (but
  1242.    MMS or MMK will be used if present). The auxilliary file CKVKER.MMS is
  1243.    used if MMS or MMK are present. To build C-Kermit:
  1244.    
  1245.    $ @CKVKER  (or @CKVOLD)
  1246.  
  1247.    Please read the comments at the top of CKVKER.COM itself for further
  1248.    instructions and information.
  1249.    
  1250.    NOTE: if you get messages like this in the link step:
  1251.    
  1252.   %LINK-I-OPENIN, Error opening SYS$COMMON:[SYSLIB]VAXCRTLG.OLB; as input,
  1253.   %RMS-E-FNF, file not found
  1254.   %LINK-I-OPENIN, Error opening SYS$COMMON:[SYSLIB]VAXCRTL.OLB; as input,
  1255.   %RMS-E-FNF, file not found
  1256.  
  1257.    it probably means you have a LNK$LIBRARY symbol defined in your job
  1258.    (or system-wide) and the definition is inappropriate. DEASSIGN it if
  1259.    possible. If not, and if the LINK step produced no other error
  1260.    messages, and the WERMIT.EXE binary seems to run OK, then you can
  1261.    ignore the error messages.
  1262.    
  1263.    If you get huge amounts of warnings like:
  1264.    
  1265.               getsockname(sock,(struct sockaddr *)&l_sa,&slen);
  1266.   ............^
  1267.   %CC-W-PTRMISMATCH, In this statement, the referenced type of the pointer
  1268.   value "&slen" is "int", which is not compatible with "unsigned int".
  1269.   at line number 5870 in file DISK$USRG:[FDC.KERMIT]CKCNET.C;20
  1270.  
  1271.    this indicates that some essential header file is not being executed,
  1272.    which can happen for all sorts of reasons (usually some symbol was
  1273.    defined by some other header file that interferes with a subsequent
  1274.    one). The trick here is to get an include-file listing, which is
  1275.    possible with DECC (maybe VAXC too):
  1276.    
  1277.   @ckvker.com "" "" "" /LIST/SHOW=INCLUDE
  1278.  
  1279.    and then look through the CK????.LIS file of the offending module.
  1280.    
  1281.   7.1. Programming Tips
  1282.   
  1283.    For testing the DEC C version number:
  1284.    
  1285.   #ifdef __DECC_VER
  1286.   #if (__DEC_VER >= 050100000)
  1287.   blah
  1288.   #endif
  1289.   #endif
  1290.  
  1291.    Note: the version number is vvuuteeee; vv is the major version (like
  1292.    5), uu is the update number (like the "3" in 5.3), t is a code for
  1293.    field test, real release, etc, and eeee is the edit suffix. This is
  1294.    available only in DECC 5.0 and later. It also has a __VMS_VER... Note
  1295.    #2: Remember not to add a leading zero because that changes it to
  1296.    octal.
  1297.    
  1298.   7.2. VMS TCP/IP Networking Support for C-Kermit
  1299.   
  1300.    VMS C-Kermit is capable of establishing TCP/IP TELNET connections and
  1301.    acting as a TELNET program with built-in file transfer, script
  1302.    programming, character-set translation, etc, if it is built
  1303.    appropriately. If you have one of the following products installed on
  1304.    your system, complete with libraries and header files:
  1305.    
  1306.     1. DEC TCP/IP (UCX)
  1307.     2. TGV MultiNet TCP/IP
  1308.     3. Wollongong WIN/TCP or PathWay
  1309.     4. Process Software TCPware
  1310.     5. CMU-OpenVMS/IP with Mike O'Malley's sockets library
  1311.        
  1312.    then you can include TCP/IP capability in your version of VMS
  1313.    C-Kermit.
  1314.    
  1315.    The TCP/IP product is selected automatically by the build procedure
  1316.    based on the presence or absence of certain files on your system. To
  1317.    override the automatic selection, define the symbol NET_OPTION in one
  1318.    of the following ways before running the build procedure:
  1319.    
  1320.   $ NET_OPTION = "NONET"      ! Build with no TCP/IP networking support
  1321.   $ NET_OPTION = "CMU_TCPIP"  ! Build with CMU/Tek TCP/IP networking support
  1322.   $ NET_OPTION = "DEC_TCPIP"  ! Build with DEC TCP/IP (UCX) support
  1323.   $ NET_OPTION = "MULTINET"   ! Build with TGV MultiNet TCP/IP support
  1324.   $ NET_OPTION = "TCPWARE"    ! Build with Process Software TCPware support
  1325.   $ NET_OPTION = "WINTCP"     ! Build with WIN/TCP or PathWay support
  1326.  
  1327.    That is, type one of the commands listed above at the DCL prompt
  1328.    (shown above as "$") before running the build procedure. You can also
  1329.    force a "NONET" build with the CKVKER.COM "N" command-line option.
  1330.    
  1331.    Note: If you are building a version with TCP/IP support, and you have
  1332.    the required TCP/IP libraries and header files, but the #include files
  1333.    can't be found at compile time, then maybe they were put into a text
  1334.    library, in which case you need to unpack the include-file library
  1335.    into separate files using the VMS LIBRARY command.
  1336.    
  1337.     7.2.1. DEC TCP/IP (UCX) If the C-Kermit build procedure does not notice
  1338.     that you have DEC TCP/IP installed when you really do, it is likely because
  1339.     the file SYS$STARTUP:UCX$STARTUP.COM is read-protected (e.g. because your
  1340.     site runs DECinspect). Turn on READONLY privilege.
  1341.     
  1342.     If the DEC TCP/IP version of KERMIT.EXE crashes immediately upon startup
  1343.     with a message like:
  1344.     
  1345.   %LIB-E-ACTIMAGE, error activating image
  1346.    R4GRIE$DIA0:[SYS0.SYSCOMMON.][SYSLIB]UCX$IPC_SHR.EXE;1
  1347.   -SYSTEM-F-PRIVINSTALL
  1348.  
  1349.    it means the system manager has to install the UCX sharable library:
  1350.    
  1351.   INSTALL ADD SYS$SHARE:UCX$IPC_SHR.EXE
  1352.  
  1353.     7.2.2. Wollongong / Attachmate TCP/IP Wollongong (now Attachmate (now
  1354.     defunct)) support should work for both new (PathWay) and older (WIN/TCP)
  1355.     versions, and C-Kermit versions linked under older Wollongong versions
  1356.     should still run under the newer version. But note that the pieces of the
  1357.     Wollongong package are now unbundled -- you have to buy the runtime,
  1358.     access, API, etc, pieces separately, and (of course) you need the API to
  1359.     compile C-Kermit with Wollongong TCP/IP support.
  1360.     
  1361.     C-Kermit 7.0 has been verified to build on VMS ... with Pathway 3.1 with a
  1362.     few harmless warning messages, but the following change is required to the
  1363.     Attachmate-supplied file TWG$TCP:[NETDIST.MISC]DEF.COM to remove the
  1364.     definition of DECC$SYSTEM_INCLUDE:
  1365.     
  1366.   $ diff twg$tcp:[netdist.misc]def.com
  1367.   ************
  1368.   File TWG$COMMON:[NETDIST.MISC]DEF.COM;2
  1369.      37   $! define decc$system_include   twg$tcp:[netdist.include],      -
  1370.      38   $!                              twg$tcp:[netdist.include.sys]
  1371.      39   $!
  1372.   ******
  1373.   File TWG$COMMON:[NETDIST.MISC]DEF.COM;1
  1374.      37   $ define decc$system_include    twg$tcp:[netdist.include],      -
  1375.      38                                   twg$tcp:[netdist.include.sys]
  1376.      39   $!
  1377.  
  1378.    You can't build VMS C-Kermit with Wollongong TCP/IP support using GCC
  1379.    due to the use of "noshare" in the Wollongong header files.
  1380.    
  1381.    Reportedly, when building C-Kermit with WIN/TCP support with older
  1382.    versions (5.1 and earlier?) of WIN/TCP, the symbol WIN$PERROR is
  1383.    undefined at link time and the build fails. Workaround: change the one
  1384.    reference to win$perror(), which occurs in the contti() function in
  1385.    CKVTIO.C, to be simply perror().
  1386.    
  1387.     7.2.3. TGV / Cisco / Process MultiNet If your VAX has the TGV MultiNet
  1388.     TCP/IP networking product, CKVKER.COM automatically builds C-Kermit with
  1389.     MultiNet TCP/IP support included. However:
  1390.     
  1391.      * In older (pre-V3.1) MultiNet installations, the header files might
  1392.        not be installed. Without these, C-Kermit will not build
  1393.        correctly. The system manager can add Multinet 3.1 programming
  1394.        support by installing MNETLIB031 from the Multinet distribution,
  1395.        if licensed to do so.
  1396.      * Anyone building the VMS version with certain versions of TGV
  1397.        MultiNet support under VAX C 3.1 might get an error message about
  1398.        conficting definitions of "time_t". This is because of a conflict
  1399.        between DEC's <types.h> and MultiNet's <types.h> caused because
  1400.        DEC changed the definition between VAX C 3.0 and 3.1. Kermit can't
  1401.        do anything about this because CKVTIO.C #includes <time.h>, which
  1402.        itself includes <types.h>. The warning is not fatal.
  1403.        
  1404.     7.2.4. CMU-OpenVMS/IP CMU-OpenVMS/IP (CMUIP), originally CMU/Tek-TCP/IP, is
  1405.     a public domain TCP/IP package originally developed at Carnegie-Mellon
  1406.     University (CMU) by Tektronix (Tek). CMUIP was released to the public trust
  1407.     in December 1992 as CMU-OpenVMS/IP and is now maintained by a diligent
  1408.     group from around the Internet. Support is provided through the usenet
  1409.     group:
  1410.     
  1411.   vmsnet.networks.tcp-ip.cmu-tek
  1412.  
  1413.    BSD socket support for C-Kermit is supported thanks to a new
  1414.    CMU-OpenVMS/IP socket library written by Mike O'Malley of Digital
  1415.    Equipment Corporation. If you have this library installed on your VMS
  1416.    system, the build procedure will find the file
  1417.    CMUIP_ROOT:[SYSLIB]LIBCMU.OLB and C-Kermit will be built automatically
  1418.    with CMU-OpenVMS/IP support unless you define NET_OPTION to say
  1419.    otherwise. The LIBCMU socket library can be found on the
  1420.    kermit.columbia.edu anonymous ftp server.
  1421.    
  1422.    [ [48]Contents ] [ [49]C-Kermit ] [ [50]Kermit Home ]
  1423.     ________________________________________________________________________
  1424.   
  1425.   8. CASE STUDY: ALPHA SETUP AND TEST RESULTS
  1426.   
  1427.    Written by Peter Mossel.
  1428.    
  1429.    Model number: DEC3000/400, a workstation with 64MB of memory.
  1430.    Ports used: OPA1: (a MMJ connector for the alternate operator console)
  1431.    TTA1: (a 25-pin male D-connector on the back)
  1432.    Operating System: OpenVMS V1.0
  1433.    Firmware: V1.1
  1434.    
  1435.    Upon power-up, the console displays something like:
  1436.    
  1437.   ...
  1438.   CPU   OK  KN15-BA V1.1-S11A IO20 sV1.0 DECchip 21064 P2.1
  1439.   ...
  1440.  
  1441.    Testing setup 1: OPA1:
  1442.    
  1443.   +-------+
  1444.   |     MMJ--- DECconnect cable ---MMJ H8571-A--- modem cable to PC
  1445.   +-------+                            (passive adapter)
  1446.  
  1447.    In words, plug a DECconnect cable with MMJ plugs on both ends in the
  1448.    alternate console port on the back of the DEC3000/400. Make sure S3 is
  1449.    in the "up" position. The workstation screen is now the console
  1450.    (OPA0:) and the extra port, OPA1:, is available for connecting a
  1451.    terminal or printer. This MMJ plug is the only MMJ plug on the back of
  1452.    this machine.
  1453.    
  1454.    My other host for the test is a DECpc 466, a 66MHz i486 with DOS 5.0
  1455.    and MS-DOS Kermit 3.12. The 466 has 2 serial ports, both 9-pin. I
  1456.    attached a standard 9-pin to 25-pin modem cable (the ones that came
  1457.    into existence with the IBM PC/AT which originally had only a 9-pin
  1458.    serial port) to the serial port on the 466.
  1459.    
  1460.    Now we must join a 25-pin connector and a MMJ connector. This is done
  1461.    with a passive adapter (H8571-A) which converts the RS423 signalling
  1462.    standard (balanced TX+ TX- RX+ RX-, DTR, DSR) to RS-232. All this is
  1463.    fairly standard for DEC sites. Note that when connecting a modem to an
  1464.    MMJ connector, we have only a subset of the required modem signals, so
  1465.    this is not supported via MMJ. The other port (TTA1) has full modem
  1466.    control. Note that the DECconnect cable always reverses TX and RX, so
  1467.    it effectively functions as a NULL-modem cable.
  1468.    
  1469.    Testing setup 2: TTA1
  1470.    
  1471.   +-------+
  1472.   |     25-pin D connector --- NULL modem cable to PC
  1473.   +-------+
  1474.  
  1475.    Use the (only) 25-pin D-connector on the back. Now we need a null
  1476.    modem cable (see the Kermit book), and, because my PC has a 9-pin
  1477.    serial port, I also need a 9-pin to 25-pin modem cable.
  1478.    
  1479.    Testing setup 3: LAT
  1480.    
  1481.    Connect the PC with a standard cable to the terminal server, which
  1482.    speaks LAT to my DEC3000/400. The speed can be set up to 19200 baud
  1483.    with the terminal server in use.
  1484.    
  1485.    Test script for setup 1 and 2:
  1486.    
  1487.    On DEC3000:
  1488.           
  1489.  
  1490. $ kermit
  1491. C-Kermit>set line xxx
  1492.    (where xxx is OPA1 or TTA1)
  1493. C-Kermit>set speed 19200
  1494.  
  1495.    On the PC:
  1496.           
  1497. C:\kermit
  1498. MS-Kermit>set port 1
  1499. MS-Kermit>set speed 19200
  1500. MS-Kermit>server
  1501.  
  1502.    On the DEC3000:
  1503.           
  1504. C-Kermit>get test.fil
  1505. C-Kermit>finish
  1506.  
  1507.    On the PC
  1508.           
  1509. MS-Kermit>quit
  1510.  
  1511.    Test script for setup 3 (LAT):
  1512.    
  1513.    On the PC
  1514.           
  1515. C:\kermit
  1516. MS-Kermit>set port 1
  1517. MS-Kermit>set speed 19200
  1518. MS-Kermit>connect
  1519.  
  1520.           ( Now log into DEC3000 as host )
  1521.           
  1522. $ kermit -x
  1523.  
  1524.           ( back to the PC )
  1525.           
  1526. MS-Kermit>get test.fil
  1527. MS-Kermit>bye
  1528.  
  1529.    Results:
  1530.    
  1531.    In all three cases, the data transfer speed is excellent. Over 80% of
  1532.    the bandwidth of the communication channel is used for the file
  1533.    transfer, sometimes even more. The DEC3000 is loaded with processes
  1534.    (MOTIF, Sybase DBMS, NFS clients and servers,...) and heavy network
  1535.    activity (DECnet, LAT, TCP/IP but no characters have ever been lost,
  1536.    even when the DBMS fires up. No special SYSGEN parameters, just
  1537.    configured for a normal workstation with MOTIF.
  1538.    
  1539.    Notes:
  1540.    
  1541.     1. Device protection
  1542.        In a system like this out of the box, the device protection on
  1543.        TTA1 and OPA1 does not allow an unprivileged user to use these
  1544.        lines for DIAL-OUT from Kermit. Thus, the system manager must set
  1545.        every time the system is rebooted:
  1546.  
  1547.   $ set protection=w:rwlp/device OPA1:
  1548.   $ set protection=w:rwlp/device TTA1:
  1549.        Without these special protections, a terminal connected to these
  1550.        ports will still be able to login and get the "Username:" prompt.
  1551.     2. Console device speed
  1552.        The Alpha VMS V1.0 cover letter mentions that the command
  1553.  
  1554.   $ set terminal/speed=nnnn/perm/opa1:
  1555.        will have no effect on the speed of OPA1. In practice, there is no
  1556.        problem with Kermit file transfers. The data just get thru fine
  1557.        and file transfers are OK. The release notes also mention that
  1558.        setting the speed of OPA1 can be accomplished by setting the
  1559.        console environment variable "tta1_baud" to the desired speed. See
  1560.        the hardware guide on how to do this. The problem will be fixed in
  1561.        a future release.
  1562.        
  1563.    [ [51]Contents ] [ [52]C-Kermit ] [ [53]Kermit Home ]
  1564.     ________________________________________________________________________
  1565.   
  1566.   9. MAKING AND USING VMSINSTAL KITS
  1567.   
  1568.    (NOTE: This section is only for future reference, in case it becomes
  1569.    practical to distribute VMSINSTAL kits for C-Kermit. For now, please
  1570.    ignore.)
  1571.    
  1572.    (The reason it isn't practical to build VMSINSTAL kits is that they
  1573.    would be HUGE -- we have five networking options times two processors
  1574.    (VAX and Alpha) times two choices of whether you want to build from
  1575.    the source code or accept the included binary, and the resulting kit
  1576.    still would not solve the many VMS configuration problems discussed
  1577.    above.)
  1578.    
  1579.    After building C-Kermit using one of the procedures outlined above,
  1580.    execute the DCL procedure CKVMSI.COM to create a VMSINSTAL kit. This
  1581.    kit can be created either with or without the source code. In any
  1582.    case, it includes the C-Kermit executable program, the C-Kermit help
  1583.    file (for installation in your HELP library), plus a sample
  1584.    CKERMIT.INI (C-Kermit initialization) file, and release notes. You may
  1585.    now install C-Kermit using the command:
  1586.    
  1587.   @sys$update:vmsinstal kermit
  1588.  
  1589.    It will prompt you for which components you want installed, and where
  1590.    to put them. CKVMSI and CKVKIT were written by Terry Kennedy of Saint
  1591.    Peters College.
  1592.     ________________________________________________________________________
  1593.   
  1594.   9.1. Sample Header-File Extraction Procedure
  1595.   
  1596.    This one is for VAX C, and probably needs a few more files extracted
  1597.    from it than are shown below.
  1598.    
  1599. $!
  1600. $! XTRACTHD.COM
  1601. $! By Robert Weiner, Programming PLUS, rweiner@watsun.cc.columbia.edu
  1602. $! FEB-1992
  1603. $! Use this Extract Header command script to extract the VAXC header files
  1604. $! from sys$library:vaxcdef into the current directory inorder to compile
  1605. $! ckermit if you don't have the include files already in sys$library:
  1606. $! You must also modify the CKVKER.COM procedure to include
  1607. $! "CCFLAGS = /INC=([])" for this to work, ie. search current directory too.
  1608. $!
  1609. $ write sys$output "Extracting CKERMIT Include Files into Local Directory..."
  1610. $!
  1611. $lib /log /extract=CTYPE        /output=CTYPE.h         sys$library:vaxcdef.tlb
  1612. $lib /log /extract=DCDEF        /output=DCDEF.h         sys$library:vaxcdef.tlb
  1613. $lib /log /extract=DESCRIP      /output=DESCRIP.h       sys$library:vaxcdef.tlb
  1614. $lib /log /extract=DEVDEF       /output=DEVDEF.h        sys$library:vaxcdef.tlb
  1615. $lib /log /extract=DVIDEF       /output=DVIDEF.h        sys$library:vaxcdef.tlb
  1616. $lib /log /extract=ERRNO        /output=ERRNO.h         sys$library:vaxcdef.tlb
  1617. $lib /log /extract=FILE         /output=FILE.h          sys$library:vaxcdef.tlb
  1618. $lib /log /extract=IN           /output=IN.h            sys$library:vaxcdef.tlb
  1619. $lib /log /extract=INET         /output=INET.h          sys$library:vaxcdef.tlb
  1620. $lib /log /extract=IODEF        /output=IODEF.h         sys$library:vaxcdef.tlb
  1621. $lib /log /extract=JPIDEF       /output=JPIDEF.h        sys$library:vaxcdef.tlb
  1622. $lib /log /extract=LIMITS       /output=LIMITS.h        sys$library:vaxcdef.tlb
  1623. $lib /log /extract=NETDB        /output=NETDB.h         sys$library:vaxcdef.tlb
  1624. $lib /log /extract=RMS          /output=RMS.h           sys$library:vaxcdef.tlb
  1625. $lib /log /extract=SETJMP       /output=SETJMP.h        sys$library:vaxcdef.tlb
  1626. $lib /log /extract=SIGNAL       /output=SIGNAL.h        sys$library:vaxcdef.tlb
  1627. $lib /log /extract=SOCKET       /output=SOCKET.h        sys$library:vaxcdef.tlb
  1628. $lib /log /extract=SSDEF        /output=SSDEF.h         sys$library:vaxcdef.tlb
  1629. $lib /log /extract=STARLET      /output=STARLET.h       sys$library:vaxcdef.tlb
  1630. $lib /log /extract=STAT         /output=STAT.h          sys$library:vaxcdef.tlb
  1631. $lib /log /extract=STDIO        /output=STDIO.h         sys$library:vaxcdef.tlb
  1632. $lib /log /extract=STDLIB       /output=STDLIB.h        sys$library:vaxcdef.tlb
  1633. $lib /log /extract=STRING       /output=STRING.h        sys$library:vaxcdef.tlb
  1634. $lib /log /extract=STSDEF       /output=STSDEF.h        sys$library:vaxcdef.tlb
  1635. $lib /log /extract=SYIDEF       /output=SYIDEF.h        sys$library:vaxcdef.tlb
  1636. $lib /log /extract=TIME         /output=TIME.h          sys$library:vaxcdef.tlb
  1637. $lib /log /extract=TIMEB        /output=TIMEB.h         sys$library:vaxcdef.tlb
  1638. $lib /log /extract=TT2DEF       /output=TT2DEF.h        sys$library:vaxcdef.tlb
  1639. $lib /log /extract=TTDEF        /output=TTDEF.h         sys$library:vaxcdef.tlb
  1640. $lib /log /extract=TYPES        /output=TYPES.h         sys$library:vaxcdef.tlb
  1641. $lib /log /extract=UAIDEF       /output=UAIDEF.h        sys$library:vaxcdef.tlb
  1642. $!
  1643. $! The end
  1644. $!
  1645.  
  1646.    [ [54]Top ] [ [55]Contents ] [ [56]C-Kermit Home ] [ [57]C-Kermit 8.0
  1647.    Overview ] [ [58]Kermit Home ]
  1648.      _________________________________________________________________
  1649.    
  1650.    C-Kermit 8.0 VMS Installation Instructions / The Kermit Project /
  1651.    Columbia University / 12 Dec 2001
  1652.  
  1653. References
  1654.  
  1655.    1. http://www.columbia.edu/kermit/ckvins.html#contents
  1656.    2. http://www.columbia.edu/kermit/ckermit.html
  1657.    3. http://www.columbia.edu/kermit/index.html
  1658.    4. http://www.columbia.edu/kermit/ckvins.html
  1659.    5. http://www.columbia.edu/kermit/ckvins.html#x1
  1660.    6. http://www.columbia.edu/kermit/ckvins.html#x2
  1661.    7. http://www.columbia.edu/kermit/ckvins.html#x3
  1662.    8. http://www.columbia.edu/kermit/ckvins.html#x3.1
  1663.    9. http://www.columbia.edu/kermit/ckvins.html#x3.2
  1664.   10. http://www.columbia.edu/kermit/ckvins.html#x3.3
  1665.   11. http://www.columbia.edu/kermit/ckvins.html#x3.4
  1666.   12. http://www.columbia.edu/kermit/ckvins.html#x3.5
  1667.   13. http://www.columbia.edu/kermit/ckvins.html#x3.6
  1668.   14. http://www.columbia.edu/kermit/ckvins.html#x4
  1669.   15. http://www.columbia.edu/kermit/ckvins.html#x5
  1670.   16. http://www.columbia.edu/kermit/ckvins.html#x6
  1671.   17. http://www.columbia.edu/kermit/ckvins.html#x7
  1672.   18. http://www.columbia.edu/kermit/ckvins.html#x7.1
  1673.   19. http://www.columbia.edu/kermit/ckvins.html#x7.2
  1674.   20. http://www.columbia.edu/kermit/ckvins.html#x8
  1675.   21. http://www.columbia.edu/kermit/ckvins.html#x9
  1676.   22. http://www.columbia.edu/kermit/ckvins.html#x3
  1677.   23. http://www.columbia.edu/kermit/ckvins.html#x4
  1678.   24. http://www.columbia.edu/kermit/ckvins.html#x5
  1679.   25. http://www.columbia.edu/kermit/ckvins.html#x5
  1680.   26. http://www.columbia.edu/kermit/ckvins.html#contents
  1681.   27. http://www.columbia.edu/kermit/ckermit.html
  1682.   28. http://www.columbia.edu/kermit/index.html
  1683.   29. ftp://kermit.columbia.edu/kermit/b
  1684.   30. http://www.columbia.edu/kermit/ckermit.html
  1685.   31. http://www.columbia.edu/kermit/ckvins.html#contents
  1686.   32. http://www.columbia.edu/kermit/ckermit.html
  1687.   33. http://www.columbia.edu/kermit/index.html
  1688.   34. http://www.columbia.edu/kermit/ckvins.html#x5
  1689.   35. http://www.columbia.edu/kermit/ck60manual.html
  1690.   36. http://www.columbia.edu/kermit/ckvins.html#contents
  1691.   37. http://www.columbia.edu/kermit/ckermit.html
  1692.   38. http://www.columbia.edu/kermit/index.html
  1693.   39. http://www.columbia.edu/kermit/ckvins.html#contents
  1694.   40. http://www.columbia.edu/kermit/ckermit.html
  1695.   41. http://www.columbia.edu/kermit/index.html
  1696.   42. http://www.columbia.edu/kermit/ckvins.html#contents
  1697.   43. http://www.columbia.edu/kermit/ckermit.html
  1698.   44. http://www.columbia.edu/kermit/index.html
  1699.   45. http://www.columbia.edu/kermit/ckvins.html#contents
  1700.   46. http://www.columbia.edu/kermit/ckermit.html
  1701.   47. http://www.columbia.edu/kermit/index.html
  1702.   48. http://www.columbia.edu/kermit/ckvins.html#contents
  1703.   49. http://www.columbia.edu/kermit/ckermit.html
  1704.   50. http://www.columbia.edu/kermit/index.html
  1705.   51. http://www.columbia.edu/kermit/ckvins.html#contents
  1706.   52. http://www.columbia.edu/kermit/ckermit.html
  1707.   53. http://www.columbia.edu/kermit/index.html
  1708.   54. http://www.columbia.edu/kermit/ckvins.html#top
  1709.   55. http://www.columbia.edu/kermit/ckvins.html#contents
  1710.   56. http://www.columbia.edu/kermit/ckermit.html
  1711.   57. http://www.columbia.edu/kermit/ck80.html
  1712.   58. http://www.columbia.edu/kermit/index.html
  1713.