home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / r / rfc1350.zip / RFC1350.TXT < prev   
Text File  |  1992-12-02  |  25KB  |  614 lines

  1. Network Working Group                                         K. Sollins
  2. Request For Comments: 1350                                           MIT
  3. STD: 33                                                        July 1992
  4. Obsoletes: RFC 783
  5.  
  6.  
  7.                      THE TFTP PROTOCOL (REVISION 2)
  8.  
  9. Status of this Memo
  10.  
  11.    This RFC specifies an IAB standards track protocol for the Internet
  12.    community, and requests discussion and suggestions for improvements.
  13.    Please refer to the current edition of the "IAB Official Protocol
  14.    Standards" for the standardization state and status of this protocol.
  15.    Distribution of this memo is unlimited.
  16.  
  17. Summary
  18.  
  19.    TFTP is a very simple protocol used to transfer files.  It is from
  20.    this that its name comes, Trivial File Transfer Protocol or TFTP.
  21.    Each nonterminal packet is acknowledged separately.  This document
  22.    describes the protocol and its types of packets.  The document also
  23.    explains the reasons behind some of the design decisions.
  24.  
  25. Acknowlegements
  26.  
  27.    The protocol was originally designed by Noel Chiappa, and was
  28.    redesigned by him, Bob Baldwin and Dave Clark, with comments from
  29.    Steve Szymanski.  The current revision of the document includes
  30.    modifications stemming from discussions with and suggestions from
  31.    Larry Allen, Noel Chiappa, Dave Clark, Geoff Cooper, Mike Greenwald,
  32.    Liza Martin, David Reed, Craig Milo Rogers (of USC-ISI), Kathy
  33.    Yellick, and the author.  The acknowledgement and retransmission
  34.    scheme was inspired by TCP, and the error mechanism was suggested by
  35.    PARC's EFTP abort message.
  36.  
  37.    The May, 1992 revision to fix the "Sorcerer's Apprentice" protocol
  38.    bug [4] and other minor document problems was done by Noel Chiappa.
  39.  
  40.    This research was supported by the Advanced Research Projects Agency
  41.    of the Department of Defense and was monitored by the Office of Naval
  42.    Research under contract number N00014-75-C-0661.
  43.  
  44. 1. Purpose
  45.  
  46.    TFTP is a simple protocol to transfer files, and therefore was named
  47.    the Trivial File Transfer Protocol or TFTP.  It has been implemented
  48.    on top of the Internet User Datagram protocol (UDP or Datagram) [2]
  49.  
  50.  
  51.  
  52. Sollins                                                         [Page 1]
  53.  
  54. RFC 1350                    TFTP Revision 2                    July 1992
  55.  
  56.  
  57.    so it may be used to move files between machines on different
  58.    networks implementing UDP.  (This should not exclude the possibility
  59.    of implementing TFTP on top of other datagram protocols.)  It is
  60.    designed to be small and easy to implement.  Therefore, it lacks most
  61.    of the features of a regular FTP.  The only thing it can do is read
  62.    and write files (or mail) from/to a remote server.  It cannot list
  63.    directories, and currently has no provisions for user authentication.
  64.    In common with other Internet protocols, it passes 8 bit bytes of
  65.    data.
  66.  
  67.    Three modes of transfer are currently supported: netascii (This is
  68.    ascii as defined in "USA Standard Code for Information Interchange"
  69.    [1] with the modifications specified in "Telnet Protocol
  70.    Specification" [3].)  Note that it is 8 bit ascii.  The term
  71.    "netascii" will be used throughout this document to mean this
  72.    particular version of ascii.); octet (This replaces the "binary" mode
  73.    of previous versions of this document.) raw 8 bit bytes; mail,
  74.    netascii characters sent to a user rather than a file.  (The mail
  75.    mode is obsolete and should not be implemented or used.)  Additional
  76.    modes can be defined by pairs of cooperating hosts.
  77.  
  78.    Reference [4] (section 4.2) should be consulted for further valuable
  79.    directives and suggestions on TFTP.
  80.  
  81. 2. Overview of the Protocol
  82.  
  83.    Any transfer begins with a request to read or write a file, which
  84.    also serves to request a connection.  If the server grants the
  85.    request, the connection is opened and the file is sent in fixed
  86.    length blocks of 512 bytes.  Each data packet contains one block of
  87.    data, and must be acknowledged by an acknowledgment packet before the
  88.    next packet can be sent.  A data packet of less than 512 bytes
  89.    signals termination of a transfer.  If a packet gets lost in the
  90.    network, the intended recipient will timeout and may retransmit his
  91.    last packet (which may be data or an acknowledgment), thus causing
  92.    the sender of the lost packet to retransmit that lost packet.  The
  93.    sender has to keep just one packet on hand for retransmission, since
  94.    the lock step acknowledgment guarantees that all older packets have
  95.    been received.  Notice that both machines involved in a transfer are
  96.    considered senders and receivers.  One sends data and receives
  97.    acknowledgments, the other sends acknowledgments and receives data.
  98.  
  99.    Most errors cause termination of the connection.  An error is
  100.    signalled by sending an error packet.  This packet is not
  101.    acknowledged, and not retransmitted (i.e., a TFTP server or user may
  102.    terminate after sending an error message), so the other end of the
  103.    connection may not get it.  Therefore timeouts are used to detect
  104.    such a termination when the error packet has been lost.  Errors are
  105.  
  106.  
  107.  
  108. Sollins                                                         [Page 2]
  109.  
  110. RFC 1350                    TFTP Revision 2                    July 1992
  111.  
  112.  
  113.    caused by three types of events: not being able to satisfy the
  114.    request (e.g., file not found, access violation, or no such user),
  115.    receiving a packet which cannot be explained by a delay or
  116.    duplication in the network (e.g., an incorrectly formed packet), and
  117.    losing access to a necessary resource (e.g., disk full or access
  118.    denied during a transfer).
  119.  
  120.    TFTP recognizes only one error condition that does not cause
  121.    termination, the source port of a received packet being incorrect.
  122.    In this case, an error packet is sent to the originating host.
  123.  
  124.    This protocol is very restrictive, in order to simplify
  125.    implementation.  For example, the fixed length blocks make allocation
  126.    straight forward, and the lock step acknowledgement provides flow
  127.    control and eliminates the need to reorder incoming data packets.
  128.  
  129. 3. Relation to other Protocols
  130.  
  131.    As mentioned TFTP is designed to be implemented on top of the
  132.    Datagram protocol (UDP).  Since Datagram is implemented on the
  133.    Internet protocol, packets will have an Internet header, a Datagram
  134.    header, and a TFTP header.  Additionally, the packets may have a
  135.    header (LNI, ARPA header, etc.)  to allow them through the local
  136.    transport medium.  As shown in Figure 3-1, the order of the contents
  137.    of a packet will be: local medium header, if used, Internet header,
  138.    Datagram header, TFTP header, followed by the remainder of the TFTP
  139.    packet.  (This may or may not be data depending on the type of packet
  140.    as specified in the TFTP header.)  TFTP does not specify any of the
  141.    values in the Internet header.  On the other hand, the source and
  142.    destination port fields of the Datagram header (its format is given
  143.    in the appendix) are used by TFTP and the length field reflects the
  144.    size of the TFTP packet.  The transfer identifiers (TID's) used by
  145.    TFTP are passed to the Datagram layer to be used as ports; therefore
  146.    they must be between 0 and 65,535.  The initialization of TID's is
  147.    discussed in the section on initial connection protocol.
  148.  
  149.    The  TFTP header consists of a 2 byte opcode field which indicates
  150.    the packet's type (e.g., DATA, ERROR, etc.)  These opcodes and  the
  151.    formats of  the various types of packets are discussed further in the
  152.    section on TFTP packets.
  153.  
  154.  
  155.  
  156.  
  157.  
  158.  
  159.  
  160.  
  161.  
  162.  
  163.  
  164. Sollins                                                         [Page 3]
  165.  
  166. RFC 1350                    TFTP Revision 2                    July 1992
  167.  
  168.  
  169.           ---------------------------------------------------
  170.          |  Local Medium  |  Internet  |  Datagram  |  TFTP  |
  171.           ---------------------------------------------------
  172.  
  173.                       Figure 3-1: Order of Headers
  174.  
  175.  
  176. 4. Initial Connection Protocol
  177.  
  178.    A transfer is established by sending a request (WRQ to write onto a
  179.    foreign file system, or RRQ to read from it), and receiving a
  180.    positive reply, an acknowledgment packet for write, or the first data
  181.    packet for read.  In general an acknowledgment packet will contain
  182.    the block number of the data packet being acknowledged.  Each data
  183.    packet has associated with it a block number; block numbers are
  184.    consecutive and begin with one.  Since the positive response to a
  185.    write request is an acknowledgment packet, in this special case the
  186.    block number will be zero.  (Normally, since an acknowledgment packet
  187.    is acknowledging a data packet, the acknowledgment packet will
  188.    contain the block number of the data packet being acknowledged.)  If
  189.    the reply is an error packet, then the request has been denied.
  190.  
  191.    In order to create a connection, each end of the connection chooses a
  192.    TID for itself, to be used for the duration of that connection.  The
  193.    TID's chosen for a connection should be randomly chosen, so that the
  194.    probability that the same number is chosen twice in immediate
  195.    succession is very low.  Every packet has associated with it the two
  196.    TID's of the ends of the connection, the source TID and the
  197.    destination TID.  These TID's are handed to the supporting UDP (or
  198.    other datagram protocol) as the source and destination ports.  A
  199.    requesting host chooses its source TID as described above, and sends
  200.    its initial request to the known TID 69 decimal (105 octal) on the
  201.    serving host.  The response to the request, under normal operation,
  202.    uses a TID chosen by the server as its source TID and the TID chosen
  203.    for the previous message by the requestor as its destination TID.
  204.    The two chosen TID's are then used for the remainder of the transfer.
  205.  
  206.    As an example, the following shows the steps used to establish a
  207.    connection to write a file.  Note that WRQ, ACK, and DATA are the
  208.    names of the write request, acknowledgment, and data types of packets
  209.    respectively.  The appendix contains a similar example for reading a
  210.    file.
  211.  
  212.  
  213.  
  214.  
  215.  
  216.  
  217.  
  218.  
  219.  
  220. Sollins                                                         [Page 4]
  221.  
  222. RFC 1350                    TFTP Revision 2                    July 1992
  223.  
  224.  
  225.       1. Host A sends  a  "WRQ"  to  host  B  with  source=  A's  TID,
  226.          destination= 69.
  227.  
  228.       2. Host  B  sends  a "ACK" (with block number= 0) to host A with
  229.          source= B's TID, destination= A's TID.
  230.  
  231.    At this point the connection has been established and the first data
  232.    packet can be sent by Host A with a sequence number of 1.  In the
  233.    next step, and in all succeeding steps, the hosts should make sure
  234.    that the source TID matches the value that was agreed on in steps 1
  235.    and 2.  If a source TID does not match, the packet should be
  236.    discarded as erroneously sent from somewhere else.  An error packet
  237.    should be sent to the source of the incorrect packet, while not
  238.    disturbing the transfer.  This can be done only if the TFTP in fact
  239.    receives a packet with an incorrect TID.  If the supporting protocols
  240.    do not allow it, this particular error condition will not arise.
  241.  
  242.    The following example demonstrates a correct operation of the
  243.    protocol in which the above situation can occur.  Host A sends a
  244.    request to host B. Somewhere in the network, the request packet is
  245.    duplicated, and as a result two acknowledgments are returned to host
  246.    A, with different TID's chosen on host B in response to the two
  247.    requests.  When the first response arrives, host A continues the
  248.    connection.  When the second response to the request arrives, it
  249.    should be rejected, but there is no reason to terminate the first
  250.    connection.  Therefore, if different TID's are chosen for the two
  251.    connections on host B and host A checks the source TID's of the
  252.    messages it receives, the first connection can be maintained while
  253.    the second is rejected by returning an error packet.
  254.  
  255. 5. TFTP Packets
  256.  
  257.    TFTP supports five types of packets, all of which have been mentioned
  258.    above:
  259.  
  260.           opcode  operation
  261.             1     Read request (RRQ)
  262.             2     Write request (WRQ)
  263.             3     Data (DATA)
  264.             4     Acknowledgment (ACK)
  265.             5     Error (ERROR)
  266.  
  267.    The TFTP header of a packet contains the  opcode  associated  with
  268.    that packet.
  269.  
  270.  
  271.  
  272.  
  273.  
  274.  
  275.  
  276. Sollins                                                         [Page 5]
  277.  
  278. RFC 1350                    TFTP Revision 2                    July 1992
  279.  
  280.  
  281.             2 bytes     string    1 byte     string   1 byte
  282.             ------------------------------------------------
  283.            | Opcode |  Filename  |   0  |    Mode    |   0  |
  284.             ------------------------------------------------
  285.  
  286.                        Figure 5-1: RRQ/WRQ packet
  287.  
  288.  
  289.    RRQ and WRQ packets (opcodes 1 and 2 respectively) have the format
  290.    shown in Figure 5-1.  The file name is a sequence of bytes in
  291.    netascii terminated by a zero byte.  The mode field contains the
  292.    string "netascii", "octet", or "mail" (or any combination of upper
  293.    and lower case, such as "NETASCII", NetAscii", etc.) in netascii
  294.    indicating the three modes defined in the protocol.  A host which
  295.    receives netascii mode data must translate the data to its own
  296.    format.  Octet mode is used to transfer a file that is in the 8-bit
  297.    format of the machine from which the file is being transferred.  It
  298.    is assumed that each type of machine has a single 8-bit format that
  299.    is more common, and that that format is chosen.  For example, on a
  300.    DEC-20, a 36 bit machine, this is four 8-bit bytes to a word with
  301.    four bits of breakage.  If a host receives a octet file and then
  302.    returns it, the returned file must be identical to the original.
  303.    Mail mode uses the name of a mail recipient in place of a file and
  304.    must begin with a WRQ.  Otherwise it is identical to netascii mode.
  305.    The mail recipient string should be of the form "username" or
  306.    "username@hostname".  If the second form is used, it allows the
  307.    option of mail forwarding by a relay computer.
  308.  
  309.    The discussion above assumes that both the sender and recipient are
  310.    operating in the same mode, but there is no reason that this has to
  311.    be the case.  For example, one might build a storage server.  There
  312.    is no reason that such a machine needs to translate netascii into its
  313.    own form of text.  Rather, the sender might send files in netascii,
  314.    but the storage server might simply store them without translation in
  315.    8-bit format.  Another such situation is a problem that currently
  316.    exists on DEC-20 systems.  Neither netascii nor octet accesses all
  317.    the bits in a word.  One might create a special mode for such a
  318.    machine which read all the bits in a word, but in which the receiver
  319.    stored the information in 8-bit format.  When such a file is
  320.    retrieved from the storage site, it must be restored to its original
  321.    form to be useful, so the reverse mode must also be implemented.  The
  322.    user site will have to remember some information to achieve this.  In
  323.    both of these examples, the request packets would specify octet mode
  324.    to the foreign host, but the local host would be in some other mode.
  325.    No such machine or application specific modes have been specified in
  326.    TFTP, but one would be compatible with this specification.
  327.  
  328.    It is also possible to define other modes for cooperating pairs of
  329.  
  330.  
  331.  
  332. Sollins                                                         [Page 6]
  333.  
  334. RFC 1350                    TFTP Revision 2                    July 1992
  335.  
  336.  
  337.    hosts, although this must be done with care.  There is no requirement
  338.    that any other hosts implement these.  There is no central authority
  339.    that will define these modes or assign them names.
  340.  
  341.  
  342.                    2 bytes     2 bytes      n bytes
  343.                    ----------------------------------
  344.                   | Opcode |   Block #  |   Data     |
  345.                    ----------------------------------
  346.  
  347.                         Figure 5-2: DATA packet
  348.  
  349.  
  350.    Data is actually transferred in DATA packets depicted in Figure 5-2.
  351.    DATA packets (opcode = 3) have a block number and data field.  The
  352.    block numbers on data packets begin with one and increase by one for
  353.    each new block of data.  This restriction allows the program to use a
  354.    single number to discriminate between new packets and duplicates.
  355.    The data field is from zero to 512 bytes long.  If it is 512 bytes
  356.    long, the block is not the last block of data; if it is from zero to
  357.    511 bytes long, it signals the end of the transfer.  (See the section
  358.    on Normal Termination for details.)
  359.  
  360.    All  packets other than duplicate ACK's and those used for
  361.    termination are acknowledged unless a timeout occurs [4].  Sending a
  362.    DATA packet is an acknowledgment for the first ACK packet of the
  363.    previous DATA packet. The WRQ and DATA packets are acknowledged by
  364.    ACK or ERROR packets, while RRQ
  365.  
  366.  
  367.                          2 bytes     2 bytes
  368.                          ---------------------
  369.                         | Opcode |   Block #  |
  370.                          ---------------------
  371.  
  372.                          Figure 5-3: ACK packet
  373.  
  374.  
  375.    and ACK packets are acknowledged by  DATA  or ERROR packets.  Figure
  376.    5-3 depicts an ACK packet; the opcode is 4.  The  block  number  in
  377.    an  ACK echoes the block number of the DATA packet being
  378.    acknowledged.  A WRQ is acknowledged with an ACK packet having a
  379.    block number of zero.
  380.  
  381.  
  382.  
  383.  
  384.  
  385.  
  386.  
  387.  
  388. Sollins                                                         [Page 7]
  389.  
  390. RFC 1350                    TFTP Revision 2                    July 1992
  391.  
  392.  
  393.                2 bytes     2 bytes      string    1 byte
  394.                -----------------------------------------
  395.               | Opcode |  ErrorCode |   ErrMsg   |   0  |
  396.                -----------------------------------------
  397.  
  398.                         Figure 5-4: ERROR packet
  399.  
  400.  
  401.    An ERROR packet (opcode 5) takes the form depicted in Figure 5-4.  An
  402.    ERROR packet can be the acknowledgment of any other type of packet.
  403.    The error code is an integer indicating the nature of the error.  A
  404.    table of values and meanings is given in the appendix.  (Note that
  405.    several error codes have been added to this version of this
  406.    document.) The error message is intended for human consumption, and
  407.    should be in netascii.  Like all other strings, it is terminated with
  408.    a zero byte.
  409.  
  410. 6. Normal Termination
  411.  
  412.    The end of a transfer is marked by a DATA packet that contains
  413.    between 0 and 511 bytes of data (i.e., Datagram length < 516).  This
  414.    packet is acknowledged by an ACK packet like all other DATA packets.
  415.    The host acknowledging the final DATA packet may terminate its side
  416.    of the connection on sending the final ACK.  On the other hand,
  417.    dallying is encouraged.  This means that the host sending the final
  418.    ACK will wait for a while before terminating in order to retransmit
  419.    the final ACK if it has been lost.  The acknowledger will know that
  420.    the ACK has been lost if it receives the final DATA packet again.
  421.    The host sending the last DATA must retransmit it until the packet is
  422.    acknowledged or the sending host times out.  If the response is an
  423.    ACK, the transmission was completed successfully.  If the sender of
  424.    the data times out and is not prepared to retransmit any more, the
  425.    transfer may still have been completed successfully, after which the
  426.    acknowledger or network may have experienced a problem.  It is also
  427.    possible in this case that the transfer was unsuccessful.  In any
  428.    case, the connection has been closed.
  429.  
  430. 7. Premature Termination
  431.  
  432.    If a request can not be granted, or some error occurs during the
  433.    transfer, then an ERROR packet (opcode 5) is sent.  This is only a
  434.    courtesy since it will not be retransmitted or acknowledged, so it
  435.    may never be received.  Timeouts must also be used to detect errors.
  436.  
  437.  
  438.  
  439.  
  440.  
  441.  
  442.  
  443.  
  444. Sollins                                                         [Page 8]
  445.  
  446. RFC 1350                    TFTP Revision 2                    July 1992
  447.  
  448.  
  449. I. Appendix
  450.  
  451. Order of Headers
  452.  
  453.                                                   2 bytes
  454.     ----------------------------------------------------------
  455.    |  Local Medium  |  Internet  |  Datagram  |  TFTP Opcode  |
  456.     ----------------------------------------------------------
  457.  
  458. TFTP Formats
  459.  
  460.    Type   Op #     Format without header
  461.  
  462.           2 bytes    string   1 byte     string   1 byte
  463.           -----------------------------------------------
  464.    RRQ/  | 01/02 |  Filename  |   0  |    Mode    |   0  |
  465.    WRQ    -----------------------------------------------
  466.           2 bytes    2 bytes       n bytes
  467.           ---------------------------------
  468.    DATA  | 03    |   Block #  |    Data    |
  469.           ---------------------------------
  470.           2 bytes    2 bytes
  471.           -------------------
  472.    ACK   | 04    |   Block #  |
  473.           --------------------
  474.           2 bytes  2 bytes        string    1 byte
  475.           ----------------------------------------
  476.    ERROR | 05    |  ErrorCode |   ErrMsg   |   0  |
  477.           ----------------------------------------
  478.  
  479. Initial Connection Protocol for reading a file
  480.  
  481.    1. Host  A  sends  a  "RRQ"  to  host  B  with  source= A's TID,
  482.       destination= 69.
  483.  
  484.    2. Host B sends a "DATA" (with block number= 1) to host  A  with
  485.       source= B's TID, destination= A's TID.
  486.  
  487.  
  488.  
  489.  
  490.  
  491.  
  492.  
  493.  
  494.  
  495.  
  496.  
  497.  
  498.  
  499.  
  500. Sollins                                                         [Page 9]
  501.  
  502. RFC 1350                    TFTP Revision 2                    July 1992
  503.  
  504.  
  505. Error Codes
  506.  
  507.    Value     Meaning
  508.  
  509.    0         Not defined, see error message (if any).
  510.    1         File not found.
  511.    2         Access violation.
  512.    3         Disk full or allocation exceeded.
  513.    4         Illegal TFTP operation.
  514.    5         Unknown transfer ID.
  515.    6         File already exists.
  516.    7         No such user.
  517.  
  518. Internet User Datagram Header [2]
  519.  
  520.    (This has been included only for convenience.  TFTP need not be
  521.    implemented on top of the Internet User Datagram Protocol.)
  522.  
  523.      Format
  524.  
  525.     0                   1                   2                   3
  526.     0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  527.    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  528.    |          Source Port          |       Destination Port        |
  529.    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  530.    |            Length             |           Checksum            |
  531.    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  532.  
  533.  
  534.    Values of Fields
  535.  
  536.  
  537.    Source Port     Picked by originator of packet.
  538.  
  539.    Dest. Port      Picked by destination machine (69 for RRQ or WRQ).
  540.  
  541.    Length          Number of bytes in UDP packet, including UDP header.
  542.  
  543.    Checksum        Reference 2 describes rules for computing checksum.
  544.                    (The implementor of this should be sure that the
  545.                    correct algorithm is used here.)
  546.                    Field contains zero if unused.
  547.  
  548.    Note: TFTP passes transfer identifiers (TID's) to the Internet User
  549.    Datagram protocol to be used as the source and destination ports.
  550.  
  551.  
  552.  
  553.  
  554.  
  555.  
  556. Sollins                                                        [Page 10]
  557.  
  558. RFC 1350                    TFTP Revision 2                    July 1992
  559.  
  560.  
  561. References
  562.  
  563.    [1]  USA Standard Code for Information Interchange, USASI X3.4-1968.
  564.  
  565.    [2]  Postel, J., "User Datagram  Protocol," RFC 768, USC/Information
  566.         Sciences Institute, 28 August 1980.
  567.  
  568.    [3]  Postel, J., "Telnet Protocol Specification," RFC 764,
  569.         USC/Information Sciences Institute, June, 1980.
  570.  
  571.    [4]  Braden, R., Editor, "Requirements for Internet Hosts --
  572.         Application and Support", RFC 1123, USC/Information Sciences
  573.         Institute, October 1989.
  574.  
  575. Security Considerations
  576.  
  577.    Since TFTP includes no login or access control mechanisms, care must
  578.    be taken in the rights granted to a TFTP server process so as not to
  579.    violate the security of the server hosts file system.  TFTP is often
  580.    installed with controls such that only files that have public read
  581.    access are available via TFTP and writing files via TFTP is
  582.    disallowed.
  583.  
  584. Author's Address
  585.  
  586.    Karen R. Sollins
  587.    Massachusetts Institute of Technology
  588.    Laboratory for Computer Science
  589.    545 Technology Square
  590.    Cambridge, MA 02139-1986
  591.  
  592.    Phone: (617) 253-6006
  593.  
  594.    EMail: SOLLINS@LCS.MIT.EDU
  595.  
  596.  
  597.  
  598.  
  599.  
  600.  
  601.  
  602.  
  603.  
  604.  
  605.  
  606.  
  607.  
  608.  
  609.  
  610.  
  611.  
  612. Sollins                                                        [Page 11]
  613.  
  614.