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

  1.  
  2.  
  3. RFC 768                                                        J. Postel                                                                      ISI                                                           28 August 1980 
  4.  
  5.  
  6.  
  7.                          User Datagram Protocol                          ---------------------- 
  8.  
  9. Introduction ------------ 
  10.  
  11. This User Datagram  Protocol  (UDP)  is  defined  to  make  available  a datagram   mode  of  packet-switched   computer   communication  in  the environment  of  an  interconnected  set  of  computer  networks.   This protocol  assumes  that the Internet  Protocol  (IP)  [1] is used as the underlying protocol. 
  12.  
  13. This protocol  provides  a procedure  for application  programs  to send messages  to other programs  with a minimum  of protocol mechanism.  The protocol  is transaction oriented, and delivery and duplicate protection are not guaranteed.  Applications requiring ordered reliable delivery of streams of data should use the Transmission Control Protocol (TCP) [2]. 
  14.  
  15. Format ------ 
  16.  
  17.                                                        0      7 8     15 16    23 24    31                    +--------+--------+--------+--------+                   |     Source      |   Destination   |                   |      Port       |      Port       |                   +--------+--------+--------+--------+                   |                 |                 |                   |     Length      |    Checksum     |                   +--------+--------+--------+--------+                   |                                                       |          data octets ...                              +---------------- ...                  
  18.  
  19.                       User Datagram Header Format 
  20.  
  21. Fields ------ 
  22.  
  23. Source Port is an optional field, when meaningful, it indicates the port of the sending  process,  and may be assumed  to be the port  to which a reply should  be addressed  in the absence of any other information.  If not used, a value of zero is inserted. 
  24.  
  25.  
  26.  
  27.  
  28.  
  29. Postel                                                          [page 1] 
  30.  
  31.  
  32.                                                              28 Aug 1980 User Datagram Protocol                                           RFC 768 Fields 
  33.  
  34.  
  35.  
  36. Destination  Port has a meaning  within  the  context  of  a  particular internet destination address. 
  37.  
  38. Length  is the length  in octets  of this user datagram  including  this header  and the data.   (This  means  the minimum value of the length is eight.) 
  39.  
  40. Checksum is the 16-bit one's complement of the one's complement sum of a pseudo header of information from the IP header, the UDP header, and the data,  padded  with zero octets  at the end (if  necessary)  to  make  a multiple of two octets. 
  41.  
  42. The pseudo  header  conceptually prefixed to the UDP header contains the source  address,  the destination  address,  the protocol,  and the  UDP length.   This information gives protection against misrouted datagrams. This checksum procedure is the same as is used in TCP. 
  43.  
  44.                   0      7 8     15 16    23 24    31                   +--------+--------+--------+--------+                  |          source address           |                  +--------+--------+--------+--------+                  |        destination address        |                  +--------+--------+--------+--------+                  |  zero  |protocol|   UDP length    |                  +--------+--------+--------+--------+ 
  45.  
  46. If the computed  checksum  is zero,  it is transmitted  as all ones (the equivalent  in one's complement  arithmetic).   An all zero  transmitted checksum  value means that the transmitter  generated  no checksum  (for debugging or for higher level protocols that don't care). 
  47.  
  48. User Interface -------------- 
  49.  
  50. A user interface should allow 
  51.  
  52.   the creation of new receive ports, 
  53.  
  54.   receive  operations  on the receive  ports that return the data octets   and an indication of source port and source address, 
  55.  
  56.   and an operation  that allows  a datagram  to be sent,  specifying the   data, source and destination ports and addresses to be sent. 
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  [page 2]                                                          Postel 
  63.  
  64.  
  65. 28 Aug 1980 RFC 768                                           User Datagram Protocol                                                             IP Interface 
  66.  
  67.  
  68.  
  69. IP Interface ------------- 
  70.  
  71. The UDP module  must be able to determine  the  source  and  destination internet addresses and the protocol field from the internet header.  One possible  UDP/IP  interface  would return  the whole  internet  datagram including all of the internet header in response to a receive operation. Such an interface  would  also allow  the UDP to pass  a  full  internet datagram  complete  with header  to the IP to send.  The IP would verify certain fields for consistency and compute the internet header checksum. 
  72.  
  73. Protocol Application -------------------- 
  74.  
  75. The major uses of this protocol is the Internet Name Server [3], and the Trivial File Transfer [4]. 
  76.  
  77. Protocol Number --------------- 
  78.  
  79. This is protocol  17 (21 octal)  when used  in  the  Internet  Protocol. Other protocol numbers are listed in [5]. 
  80.  
  81. References ---------- 
  82.  
  83. [1]     Postel,   J.,   "Internet  Protocol,"  RFC 760,  USC/Information         Sciences Institute, January 1980. 
  84.  
  85. [2]     Postel,    J.,   "Transmission   Control   Protocol,"   RFC 761,         USC/Information Sciences Institute, January 1980. 
  86.  
  87. [3]     Postel,  J.,  "Internet  Name Server,"  USC/Information Sciences         Institute, IEN 116, August 1979. 
  88.  
  89. [4]     Sollins,  K.,  "The TFTP Protocol,"  Massachusetts  Institute of         Technology, IEN 133, January 1980. 
  90.  
  91. [5]     Postel,   J.,   "Assigned   Numbers,"  USC/Information  Sciences         Institute, RFC 762, January 1980. 
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101. Postel                                                          [page 3] 
  102.  
  103.