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

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7. Network Working Group                                          G. Malkin Request for Comments: 1783                                Xylogics, Inc. Updates: 1350                                                  A. Harkin Category: Standards Track                            Hewlett Packard Co.                                                               March 1995 
  8.  
  9.                           TFTP Blocksize Option 
  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.  One of its primary uses is the booting of diskless    nodes on a Local Area Network.  TFTP is used because it is very    simple to implement in a small node's limited ROM space.  However,    the choice of a 512-byte blocksize is not the most efficient for use    on a LAN whose MTU may 1500 bytes or greater. 
  18.  
  19.    This document describes a TFTP option which allows the client and    server to negotiate a blocksize more applicable to the network    medium.  The TFTP Option Extension mechanism is described in [2]. 
  20.  
  21. Blocksize Option Specification 
  22.  
  23.    The TFTP Read Request or Write Request packet is modified to include    the blocksize option as follows: 
  24.  
  25.       +-------+---~~---+---+---~~---+---+---~~---+---+---~~---+---+       |  opc  |filename| 0 |  mode  | 0 | blksize| 0 | #octets| 0 |       +-------+---~~---+---+---~~---+---+---~~---+---+---~~---+---+ 
  26.  
  27.       opc          The opcode field contains either a 1, for Read Requests, or 2,          for Write Requests, as defined in [1]. 
  28.  
  29.       filename          The name of the file to be read or written, as defined in [1].          This is a NULL-terminated field. 
  30.  
  31.  
  32.  
  33.  Malkin & Harkin                                                 [Page 1] 
  34.  RFC 1783                 TFTP Blocksize Option                March 1995 
  35.  
  36.        mode          The mode of the file transfer: "netascii", "octet", or "mail",          as defined in [1].  This is a NULL-terminated field. 
  37.  
  38.       blksize          The Blocksize option, "blksize" (case insensitive).  This is a          NULL-terminated field. 
  39.  
  40.       #octets          The number of octets in a block, specified in ASCII.  Valid          values range between "8" and "65464" octets, inclusive.  This          is a NULL-terminated field. 
  41.  
  42.    For example: 
  43.  
  44.       +-------+--------+---+--------+---+--------+---+--------+---+       |   1   | foobar | 0 | binary | 0 | blksize| 0 |  1432  | 0 |       +-------+--------+---+--------+---+--------+---+--------+---+ 
  45.  
  46.    is a Read Request, for the file named "foobar", in binary transfer    mode, with a block size of 1432 bytes (Ethernet MTU, less the UDP and    IP header lengths). 
  47.  
  48.    If the server is willing to accept the blocksize option, it sends an    Option Acknowledgment (OACK) to the client.  The specified value must    be less than or equal to the value specified by the client.  The    client must then either use the size specified in the OACK, or send    an ERROR packet, with error code 8, to terminate the transfer. 
  49.  
  50.    The rules for determining the final packet are unchanged from [1].    The reception of a data packet with a data length less than the    negotiated blocksize is the final packet.  If the blocksize is    greater than the size of the packet, the first packet is the final    packet.  If amount of data to be transfered is an integral multiple    of the blocksize, an extra data packet containing no data is sent to    end the transfer. 
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66. Malkin & Harkin                                                 [Page 2] 
  67.  RFC 1783                 TFTP Blocksize Option                March 1995 
  68.  
  69.  Proof of Concept 
  70.  
  71.    Performance tests were run on the prototype implementation using a    variety of block sizes.  The tests were run on a lightly loaded    Ethernet, between two HP-UX 9000, in "octet" mode, on 2.25MB files.    The average (5x) transfer times for paths with (g-time) and without    (n-time) a intermediate gateway are graphed as follows: 
  72.  
  73.            |         37 +      g            |         35 +            |         33 +            |         31 +            |         29 +            |         27 +            |             g              blocksize   n-time   g-time         25 +                            ---------   ------   ------       s    |       n                      512       23.85    37.05       e 23 +                g            1024       16.15    25.65       c    |                             1432       13.70    23.10       o 21 +                             2048       10.90    16.90       n    |                             4096        6.85     9.65       d 19 +                             8192        4.90     6.15       s    |         17 +                    g            |             n         15 +            |                n         13 +            |         11 +                    n            |                           g          9 +            |          7 +                           n            |                                  g          5 +                                  n            "          0 +------+------+--+---+------+------+---                  512    1K  |  2K     4K     8K                           1432                     blocksize (bytes) 
  74.  
  75.  
  76.  
  77.  Malkin & Harkin                                                 [Page 3] 
  78.  RFC 1783                 TFTP Blocksize Option                March 1995 
  79.  
  80.     The comparisons between transfer times (without a gateway) between    the standard 512-byte blocksize and the negotiated blocksizes are: 
  81.  
  82.       1024     2x   -32%       1432   2.8x   -42%       2048     4x   -54%       4096     8x   -71%       8192    16x   -80% 
  83.  
  84.    As was anticipated, the transfer time decreases with an increase in    blocksize.  The reason for the reduction in time is the reduction in    the number of packets sent.  For example, by increasing the blocksize    from 512 bytes to 1024 bytes, not only are the number of data packets    halved, but the number of acknowledgement packets is also halved    (along with the number of times the data transmitter must wait for an    ACK).  A secondary effect is the efficiency gained by reducing the    per-packet framing and processing overhead. 
  85.  
  86.    Of course, if the blocksize exceeds the path MTU, IP fragmentation    and reassembly will begin to add more overhead.  This will be more    noticable the greater the number of gateways in the path. 
  87.  
  88. Security Considerations 
  89.  
  90.    Security issues are not discussed in this memo. 
  91.  
  92. References 
  93.  
  94.    [1] Sollins, K., "The TFTP Protocol (Revision 2)", STD 33, RFC 1350,        MIT, July 1992. 
  95.  
  96.    [2] Malkin, G., and A. Harkin, "TFTP Option Extension", RFC 1782,        Xylogics, Inc., Hewlett Packard Co., March 1995. 
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  Malkin & Harkin                                                 [Page 4] 
  115.  RFC 1783                 TFTP Blocksize Option                March 1995 
  116.  
  117.  Authors' Addresses 
  118.  
  119.        Gary Scott Malkin        Xylogics, Inc.        53 Third Avenue        Burlington, MA  01803 
  120.  
  121.        Phone:  (617) 272-8140        EMail:  gmalkin@xylogics.com 
  122.  
  123.         Art Harkin        Internet Services Project        Information Networks Division        19420 Homestead Road MS 43LN        Cupertino, CA  95014 
  124.  
  125.        Phone: (408) 447-3755        EMail: ash@cup.hp.com 
  126.  
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136.  
  137.  
  138.  
  139.  
  140.  
  141.  
  142.  
  143.  
  144.  
  145.  
  146.  
  147.  
  148.  
  149.  
  150.  
  151.  
  152.  
  153.  
  154.  
  155.  
  156.  
  157.  Malkin & Harkin                                                 [Page 5] 
  158.  
  159.