home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1997 December / Internet_Info_CD-ROM_Walnut_Creek_December_1997.iso / rfc / rfc1534 < prev    next >
Text File  |  1993-10-07  |  7KB  |  228 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7. Network Working Group                                           R. Droms
  8. Request for Comments: 1534                           Bucknell University
  9. Category: Standards Track                                   October 1993
  10.  
  11.  
  12.                  Interoperation Between DHCP and BOOTP
  13.  
  14. Status of this Memo
  15.  
  16.    This RFC specifies an Internet standards track protocol for the
  17.    Internet community, and requests discussion and suggestions for
  18.    improvements.  Please refer to the current edition of the "Internet
  19.    Official Protocol Standards" for the standardization state and status
  20.    of this protocol.  Distribution of this memo is unlimited.
  21.  
  22. Abstract
  23.  
  24.    DHCP provides a superset of the functions provided by BOOTP. This
  25.    document describes the interactions between DHCP and BOOTP network
  26.    participants.
  27.  
  28. 1. Introduction
  29.  
  30.    The Dynamic Host Configuration Protocol (DHCP) provides a mechanism
  31.    for transmitting configuration parameters to hosts using the TCP/IP
  32.    protocol suite.  The format of DHCP messages is based on the format
  33.    of BOOTP messages, so that, in certain circumstances, DHCP and BOOTP
  34.    participants may exchange messages.  This document specifies the ways
  35.    in which DHCP and BOOTP participants may interoperate.
  36.  
  37.    DHCP introduces a small change in terminology intended to clarify the
  38.    meaning of one of the fields.  What was the "vendor extensions" field
  39.    in BOOTP has been re-named the "options" field in DHCP.  Similarly,
  40.    the tagged data items that were used inside the BOOTP "vendor
  41.    extensions" field, which were formerly referred to as "vendor
  42.    extensions", are now termed simply "options".  This document will
  43.    refer to BOOTP vendor extensions and DHCP options uniformly as
  44.    "options".
  45.  
  46.    Throughout this document, DHCP messages that include a 'DHCP message
  47.    type' option will be referred to by the type of the message; e.g., a
  48.    DHCP message with 'DHCP message type' option type 1 will be referred
  49.    to as a "DHCPDISCOVER" message.
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58. Droms                                                           [Page 1]
  59.  
  60. RFC 1534         Interoperation Between DHCP and BOOTP      October 1993
  61.  
  62.  
  63. 2. BOOTP clients and DHCP servers
  64.  
  65.    The format of DHCP messages is defined to be compatible with the
  66.    format of BOOTP messages, so that existing BOOTP clients can
  67.    interoperate with DHCP servers.  Any message received by a DHCP
  68.    server that includes a 'DHCP message type' (51) option is assumed to
  69.    have been sent by a DHCP client.  Messages without the DHCP Message
  70.    Type option are assumed to have been sent by a BOOTP client.  Support
  71.    of BOOTP clients by a DHCP server is optional at the discretion of
  72.    the local system administrator.  If a DHCP server that is not
  73.    configured to support BOOTP clients receives a BOOTREQUEST message
  74.    from a BOOTP client, that server silently discards the BOOTREQUEST
  75.    message.
  76.  
  77.    If a DHCP server is configured to support BOOTP clients, it may be
  78.    configured to supply static addresses, automatic addresses or both.
  79.    Static addresses are those that have been previously assigned by a
  80.    system administrator and are stored in a database available to the
  81.    DHCP server.  Automatic addresses are those selected by the DHCP
  82.    server from its pool of unassigned addresses.
  83.  
  84.    Since BOOTP clients may not be prepared to receive automatic
  85.    addresses, the decision to allow a DHCP server to return automatic
  86.    addresses must be under the control of the system administrator.  If
  87.    a DHCP server supports supplying automatic addresses to BOOTP
  88.    clients, this feature must be configurable, and the feature must
  89.    default off.  Enabling of the feature must be the result of an active
  90.    decision by the system administrator.
  91.  
  92.    If a DHCP server returns a automatic address, the BOOTP client will
  93.    not be aware of the DHCP lease mechanism for network address
  94.    assignment.  Thus the DHCP server must assign an infinite lease
  95.    duration to for automatic addresses assigned to BOOTP clients.  Such
  96.    network addresses cannot be automatically reassigned by the server.
  97.    The local system administrator may choose to manually release network
  98.    addresses assigned to BOOTP clients.
  99.  
  100.    A DHCP server that supports BOOTP clients MUST interact with BOOTP
  101.    clients according to the BOOTP protocol.  The server MUST formulate a
  102.    BOOTP BOOTREPLY message rather than a DHCP DHCPOFFER message (i.e.,
  103.    the server MUST NOT include the 'DHCP message type' option and MUST
  104.    NOT exceed the size limit for BOOTREPLY messages).  The server marks
  105.    a binding for a BOOTP client as BOUND after sending the BOOTP
  106.    BOOTREPLY, as a non-DHCP client will not send a DHCPREQUEST message
  107.    nor will that client expect a DHCPACK message.
  108.  
  109.    DHCP servers MAY send any DHCP Options to a BOOTP client as allowed
  110.    by the "DHCP Options and BOOTP Vendor Extensions" RFC [2].
  111.  
  112.  
  113.  
  114. Droms                                                           [Page 2]
  115.  
  116. RFC 1534         Interoperation Between DHCP and BOOTP      October 1993
  117.  
  118.  
  119.    In summary, a DHCP server:
  120.  
  121.       o MAY support BOOTP clients,
  122.  
  123.       o May return automatic addresses to BOOTP clients,
  124.  
  125.       o MUST provide a configuration switch if returning automatic
  126.         addresses to BOOTP clients,
  127.  
  128.       o MUST default this optional configuration to OFF,
  129.  
  130.       o MUST abide by the BOOTP specification when interacting with
  131.         BOOTP clients, and
  132.  
  133.       o MAY send DHCP options (those options defined in the DHCP options
  134.         document but not in the BOOTP vendor extensions documents) to
  135.         a BOOTP client.
  136.  
  137. 3. DHCP clients and BOOTP servers
  138.  
  139.    A DHCP client MAY use a reply from a BOOTP server if the
  140.    configuration returned from the BOOTP server is acceptable to the
  141.    DHCP client.  A DHCP client MUST assume that an IP address returned
  142.    in a message from a BOOTP server has an infinite lease.  A DHCP
  143.    client SHOULD choose to use a reply from a DHCP server in preference
  144.    to a reply from a BOOTP server.
  145.  
  146. 4. References
  147.  
  148.    [1] Wimer, W., "Clarifications and Extensions for the Bootstrap
  149.        Protocol", RFC 1532, Carnegie Mellon University, October 1993.
  150.  
  151.    [2] Alexander, S., and R. Droms, "DHCP Options and BOOTP Vendor
  152.        Extensions", RFC 1533, Lachman Technology, Inc., Bucknell
  153.        University, October 1993.
  154.  
  155.    [3] Droms, R., "Dynamic Host Configuration Protocol", RFC 1531,
  156.        Bucknell University, October 1993.
  157.  
  158.  
  159. 5. Security Considerations
  160.  
  161.    Security issues are not discussed in this memo.
  162.  
  163.  
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170. Droms                                                           [Page 3]
  171.  
  172. RFC 1534         Interoperation Between DHCP and BOOTP      October 1993
  173.  
  174.  
  175. 6. Author's Address
  176.  
  177.    Ralph Droms
  178.    Computer Science Department
  179.    323 Dana Engineering
  180.    Bucknell University
  181.    Lewisburg, PA 17837
  182.  
  183.    Phone:(717) 524-1145
  184.    EMail: droms@bucknell.edu
  185.  
  186.  
  187.  
  188.  
  189.  
  190.  
  191.  
  192.  
  193.  
  194.  
  195.  
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202.  
  203.  
  204.  
  205.  
  206.  
  207.  
  208.  
  209.  
  210.  
  211.  
  212.  
  213.  
  214.  
  215.  
  216.  
  217.  
  218.  
  219.  
  220.  
  221.  
  222.  
  223.  
  224.  
  225.  
  226. Droms                                                           [Page 4]
  227.  
  228.