home *** CD-ROM | disk | FTP | other *** search
/ Handbook of Infosec Terms 2.0 / Handbook_of_Infosec_Terms_Version_2.0_ISSO.iso / text / rfcs / rfc1784.txt < prev    next >
Text File  |  1996-05-07  |  6KB  |  150 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7. Network Working Group                                          G. Malkin Request for Comments: 1784                                Xylogics, Inc. Updates: 1350                                                  A. Harkin Category: Standards Track                            Hewlett Packard Co.                                                               March 1995 
  8.  
  9.              TFTP Timeout Interval and Transfer Size Options 
  10.  
  11. Status of this Memo 
  12.  
  13.    This document specifies an Internet standards track protocol for the    Internet community, and requests discussion and suggestions for    improvements.  Please refer to the current edition of the "Internet    Official Protocol Standards" (STD 1) for the standardization state    and status of this protocol.  Distribution of this memo is unlimited. 
  14.  
  15. Abstract 
  16.  
  17.    The Trivial File Transfer Protocol [1] is a simple, lock-step, file    transfer protocol which allows a client to get or put a file onto a    remote host. 
  18.  
  19.    This document describes two TFTP options. The first allows the client    and server to negotiate the Timeout Interval.  The second allows the    side receiving the file to determine the ultimate size of the    transfer before it begins.  The TFTP Option Extension mechanism is    described in [2]. 
  20.  
  21.    This document assumes that the reader is familiar with the    terminology and notation of both [1] and [2]. 
  22.  
  23. Timeout Interval Option Specification 
  24.  
  25.    The TFTP Read Request or Write Request packet is modified to include    the timeout option as follows: 
  26.  
  27.       +-------+---~~---+---+---~~---+---+---~~---+---+---~~---+---+       |  opc  |filename| 0 |  mode  | 0 | timeout| 0 |  #secs | 0 |       +-------+---~~---+---+---~~---+---+---~~---+---+---~~---+---+ 
  28.  
  29.       opc          The opcode field contains either a 1, for Read Requests, or 2,          for Write Requests, as defined in [1]. 
  30.  
  31.       filename          The name of the file to be read or written, as defined in [1].          This is a NULL-terminated field. 
  32.  
  33.  
  34.  
  35. Malkin & Harkin                                                 [Page 1] 
  36.  RFC 1784                      TFTP Options                    March 1995 
  37.  
  38.        mode          The mode of the file transfer: "netascii", "octet", or "mail",          as defined in [1].  This is a NULL-terminated field. 
  39.  
  40.       timeout          The Timeout Interval option, "timeout" (case insensitive).          This is a NULL-terminated field. 
  41.  
  42.       #secs          The number of seconds to wait before retransmitting, specified          in ASCII.  Valid values range between "1" and "255" octets,          inclusive.  This is a NULL-terminated field. 
  43.  
  44.    For example: 
  45.  
  46.       +-------+--------+---+--------+---+--------+---+--------+---+       |   1   | foobar | 0 | binary | 0 | timeout| 0 |    1   | 0 |       +-------+--------+---+--------+---+--------+---+--------+---+ 
  47.  
  48.    is a Read Request, for the file named "foobar", in binary transfer    mode, with a timeout interval of 1 second. 
  49.  
  50.    If the server is willing to accept the timeout option, it sends an    Option Acknowledgment (OACK) to the client.  The specified timeout    value must match the value specified by the client. 
  51.  
  52. Transfer Size Option Specification 
  53.  
  54.    The TFTP Read Request or Write Request packet is modified to include    the tsize option as follows: 
  55.  
  56.       +-------+---~~---+---+---~~---+---+---~~---+---+---~~---+---+       |  opc  |filename| 0 |  mode  | 0 | tsize  | 0 |  size  | 0 |       +-------+---~~---+---+---~~---+---+---~~---+---+---~~---+---+ 
  57.  
  58.       opc          The opcode field contains either a 1, for Read Requests, or 2,          for Write Requests, as defined in [1]. 
  59.  
  60.        filename          The name of the file to be read or written, as defined in [1].          This is a NULL-terminated field. 
  61.  
  62.       mode          The mode of the file transfer: "netascii", "octet", or "mail",          as defined in [1].  This is a NULL-terminated field. 
  63.  
  64.  
  65.  
  66.  Malkin & Harkin                                                 [Page 2] 
  67.  RFC 1784                      TFTP Options                    March 1995 
  68.  
  69.        tsize          The Transfer Size option, "tsize" (case insensitive).  This is          a NULL-terminated field. 
  70.  
  71.       size          The size of the file to be transfered, specified as a          NULL-terminated ASCII string. 
  72.  
  73.    For example: 
  74.  
  75.       +-------+--------+---+--------+---+--------+---+--------+---+       |   2   | foobar | 0 | binary | 0 | tsize  | 0 | 673312 | 0 |       +-------+--------+---+--------+---+--------+---+--------+---+ 
  76.  
  77.    is a Write Request, with the 673312-octet file named "foobar", in    binary transfer mode. 
  78.  
  79.    In Read Request packets, a size of "0" is specified in the request    and the size of the file, in octets, is returned in the OACK.  If the    file is too large for the client to handle, it may abort the transfer    with an Error packet (error code 3).  In Write Request packets, the    size of the file, in octets, is specified in the request and echoed    back in the OACK.  If the file is too large for the server to handle,    it may abort the transfer with an Error packet (error code 3). 
  80.  
  81. Security Considerations 
  82.  
  83.    Security issues are not discussed in this memo. 
  84.  
  85. References 
  86.  
  87.    [1] Sollins, K., "The TFTP Protocol (Revision 2)", STD 33, RFC 1350,        MIT, July 1992. 
  88.  
  89.    [2] Malkin, G., and A. Harkin, "TFTP Option Extension", RFC 1782,        Xylogics, Inc., Hewlett Packard Co., March 1995. 
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105. Malkin & Harkin                                                 [Page 3] 
  106.  RFC 1784                      TFTP Options                    March 1995 
  107.  
  108.  Authors' Addresses 
  109.  
  110.        Gary Scott Malkin        Xylogics, Inc.        53 Third Avenue        Burlington, MA  01803 
  111.  
  112.        Phone:  (617) 272-8140        EMail:  gmalkin@xylogics.com 
  113.  
  114.         Art Harkin        Internet Services Project        Information Networks Division        19420 Homestead Road MS 43LN        Cupertino, CA  95014 
  115.  
  116.        Phone: (408) 447-3755        EMail: ash@cup.hp.com 
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136.  
  137.  
  138.  
  139.  
  140.  
  141.  
  142.  
  143.  
  144.  
  145.  
  146.  
  147.  
  148.  Malkin & Harkin                                                 [Page 4] 
  149.  
  150.