home *** CD-ROM | disk | FTP | other *** search
/ Hackers Toolkit 2.0 / Hackers_Toolkit_v2.0.iso / HTML / archive / Texts / Rfc / RFC1533.TXT < prev    next >
Encoding:
Text File  |  1999-11-04  |  49.7 KB  |  1,710 lines

  1. Network Working Group                                       S. Alexander
  2. Request for Comments: 1533                      Lachman Technology, Inc.
  3. Obsoletes: 1497, 1395, 1084, 1048                               R. Droms
  4. Category: Standards Track                            Bucknell University
  5.                                                             October 1993
  6.  
  7.  
  8.                DHCP Options and BOOTP Vendor Extensions
  9.  
  10. Status of this Memo
  11.  
  12.    This RFC specifies an Internet standards track protocol for the
  13.    Internet community, and requests discussion and suggestions for
  14.    improvements.  Please refer to the current edition of the "Internet
  15.    Official Protocol Standards" for the standardization state and status
  16.    of this protocol.  Distribution of this memo is unlimited.
  17.  
  18. Abstract
  19.  
  20.    The Dynamic Host Configuration Protocol (DHCP) [1] provides a
  21.    framework for passing configuration information to hosts on a TCP/IP
  22.    network.  Configuration parameters and other control information are
  23.    carried in tagged data items that are stored in the "options" field
  24.    of the DHCP message.  The data items themselves are also called
  25.    "options."
  26.  
  27.    This document specifies the current set of DHCP options.  This
  28.    document will be periodically updated as new options are defined.
  29.     Each superseding document will include the entire current list of
  30.    valid options.
  31.  
  32.    All of the vendor information extensions defined in RFC 1497 [2] may
  33.    be used as DHCP options.  The definitions given in RFC 1497 are
  34.    included in this document, which supersedes RFC 1497.  All of the
  35.    DHCP options defined in this document, except for those specific to
  36.    DHCP as defined in section 9, may be used as BOOTP vendor information
  37.    extensions.
  38.  
  39. Table of Contents
  40.  
  41.     1.  Introduction ..............................................  2
  42.     2.  BOOTP Extension/DHCP Option Field Format ..................  2
  43.     3.  RFC 1497 Vendor Extensions ................................  3
  44.     4.  IP Layer Parameters per Host .............................. 10
  45.     5.  IP Layer Parameters per Interface ........................  13
  46.     6.  Link Layer Parameters per Interface ....................... 16
  47.     7.  TCP Parameters ............................................ 17
  48.     8.  Application and Service Parameters ........................ 18
  49.  
  50.  
  51.  
  52. Alexander & Droms                                               [Page 1]
  53.  
  54.  
  55. RFC 1533        DHCP Options and BOOTP Vendor Extensions    October 1993
  56.  
  57.  
  58.     9.  DHCP Extensions ........................................... 23
  59.    10.  Extensions ................................................ 27
  60.    11.  Acknowledgements .......................................... 28
  61.    12.  References ................................................ 28
  62.    13.  Security Considerations ................................... 19
  63.    14.  Authors' Addresses ........................................ 30
  64.  
  65. 1. Introduction
  66.  
  67.    This document specifies options for use with both the Dynamic Host
  68.    Configuration Protocol and the Bootstrap Protocol.
  69.  
  70.    The full description of DHCP packet formats may be found in the DHCP
  71.    specification document [1], and the full description of BOOTP packet
  72.    formats may be found in the BOOTP specification document [3].  This
  73.    document defines the format of information in the last field of DHCP
  74.    packets ('options') and of BOOTP packets ('vend').  The remainder of
  75.    this section defines a generalized use of this area for giving
  76.    information useful to a wide class of machines, operating systems and
  77.    configurations. Sites with a single DHCP or BOOTP server that is
  78.    shared among heterogeneous clients may choose to define other, site-
  79.    specific formats for the use of the 'options' field.
  80.  
  81.    Section 2 of this memo describes the formats of DHCP options and
  82.    BOOTP vendor extensions.  Section 3 describes options defined in
  83.    previous documents for use with BOOTP (all may also be used with
  84.    DHCP).  Sections 4-8 define new options intended for use with both
  85.    DHCP and BOOTP. Section 9 defines options used only in DHCP.
  86.  
  87.    References further describing most of the options defined in sections
  88.    2-6 can be found in section 12.  The use of the options defined in
  89.    section 9 is described in the DHCP specification [1].
  90.  
  91.    Information on registering new options is contained in section 10.
  92.  
  93. 2. BOOTP Extension/DHCP Option Field Format
  94.  
  95.    DHCP options have the same format as the BOOTP "vendor extensions"
  96.    defined in RFC 1497 [2].  Options may be fixed length or variable
  97.    length.  All options begin with a tag octet, which uniquely
  98.    identifies the option.  Fixed-length options without data consist of
  99.    only a tag octet.  Only options 0 and 255 are fixed length.  All
  100.    other options are variable-length with a length octet following the
  101.    tag octet.  The value of the length octet does not include the two
  102.    octets specifying the tag and length.  The length octet is followed
  103.    by "length" octets of data.  In the case of some variable-length
  104.    options the length field is a constant but must still be specified.
  105.  
  106.  
  107.  
  108.  
  109. Alexander & Droms                                               [Page 2]
  110.  
  111.  
  112. RFC 1533        DHCP Options and BOOTP Vendor Extensions    October 1993
  113.  
  114.  
  115.    Any options defined subsequent to this document should contain a
  116.    length octet even if the length is fixed or zero.
  117.  
  118.    All multi-octet quantities are in network byte-order.
  119.  
  120.    When used with BOOTP, the first four octets of the vendor information
  121.    field have been assigned to the "magic cookie" (as suggested in RFC
  122.    951).  This field identifies the mode in which the succeeding data is
  123.    to be interpreted.  The value of the magic cookie is the 4 octet
  124.    dotted decimal 99.130.83.99 (or hexadecimal number 63.82.53.63) in
  125.    network byte order.
  126.  
  127.    All of the "vendor extensions" defined in RFC 1497 are also DHCP
  128.    options.
  129.  
  130.    Option codes 128 to 254 (decimal) are reserved for site-specific
  131.    options.
  132.  
  133.    Except for the options in section 9, all options may be used with
  134.    either DHCP or BOOTP.
  135.  
  136.    Many of these options have their default values specified in other
  137.    documents.  In particular, RFC 1122 [4] specifies default values for
  138.    most IP and TCP configuration parameters.
  139.  
  140. 3. RFC 1497 Vendor Extensions
  141.  
  142.    This section lists the vendor extensions as defined in RFC 1497.
  143.    They are defined here for completeness.
  144.  
  145. 3.1. Pad Option
  146.  
  147.    The pad option can be used to cause subsequent fields to align on
  148.    word boundaries.
  149.  
  150.    The code for the pad option is 0, and its length is 1 octet.
  151.  
  152.     Code
  153.    +-----+
  154.    |  0  |
  155.    +-----+
  156.  
  157.  
  158.  
  159.  
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166. Alexander & Droms                                               [Page 3]
  167.  
  168.  
  169. RFC 1533        DHCP Options and BOOTP Vendor Extensions    October 1993
  170.  
  171.  
  172. 3.2. End Option
  173.  
  174.    The end option marks the end of valid information in the vendor
  175.    field.  Subsequent octets should be filled with pad options.
  176.  
  177.    The code for the end option is 255, and its length is 1 octet.
  178.  
  179.     Code
  180.    +-----+
  181.    | 255 |
  182.    +-----+
  183.  
  184. 3.3. Subnet Mask
  185.  
  186.    The subnet mask option specifies the client's subnet mask as per RFC
  187.    950 [5].
  188.  
  189.    If both the subnet mask and the router option are specified in a DHCP
  190.    reply, the subnet mask option MUST be first.
  191.  
  192.    The code for the subnet mask option is 1, and its length is 4 octets.
  193.  
  194.     Code   Len        Subnet Mask
  195.    +-----+-----+-----+-----+-----+-----+
  196.    |  1  |  4  |  m1 |  m2 |  m3 |  m4 |
  197.    +-----+-----+-----+-----+-----+-----+
  198.  
  199. 3.4. Time Offset
  200.  
  201.    The time offset field specifies the offset of the client's subnet in
  202.    seconds from Coordinated Universal Time (UTC).  The offset is
  203.    expressed as a signed 32-bit integer.
  204.  
  205.    The code for the time offset option is 2, and its length is 4 octets.
  206.  
  207.     Code   Len        Time Offset
  208.    +-----+-----+-----+-----+-----+-----+
  209.    |  2  |  4  |  n1 |  n2 |  n3 |  n4 |
  210.    +-----+-----+-----+-----+-----+-----+
  211.  
  212.  
  213.  
  214.  
  215.  
  216.  
  217.  
  218.  
  219.  
  220.  
  221.  
  222.  
  223. Alexander & Droms                                               [Page 4]
  224.  
  225.  
  226. RFC 1533        DHCP Options and BOOTP Vendor Extensions    October 1993
  227.  
  228.  
  229. 3.5. Router Option
  230.  
  231.    The router option specifies a list of IP addresses for routers on the
  232.    client's subnet.  Routers SHOULD be listed in order of preference.
  233.  
  234.    The code for the router option is 3.  The minimum length for the
  235.    router option is 4 octets, and the length MUST always be a multiple
  236.    of 4.
  237.  
  238.     Code   Len         Address 1               Address 2
  239.    +-----+-----+-----+-----+-----+-----+-----+-----+--
  240.    |  3  |  n  |  a1 |  a2 |  a3 |  a4 |  a1 |  a2 |  ...
  241.    +-----+-----+-----+-----+-----+-----+-----+-----+--
  242.  
  243. 3.6. Time Server Option
  244.  
  245.    The time server option specifies a list of RFC 868 [6] time servers
  246.    available to the client.  Servers SHOULD be listed in order of
  247.    preference.
  248.  
  249.    The code for the time server option is 4.  The minimum length for
  250.    this option is 4 octets, and the length MUST always be a multiple of
  251.    4.
  252.  
  253.     Code   Len         Address 1               Address 2
  254.    +-----+-----+-----+-----+-----+-----+-----+-----+--
  255.    |  4  |  n  |  a1 |  a2 |  a3 |  a4 |  a1 |  a2 |  ...
  256.    +-----+-----+-----+-----+-----+-----+-----+-----+--
  257.  
  258. 3.7. Name Server Option
  259.  
  260.    The name server option specifies a list of IEN 116 [7] name servers
  261.    available to the client.  Servers SHOULD be listed in order of
  262.    preference.
  263.  
  264.    The code for the name server option is 5.  The minimum length for
  265.    this option is 4 octets, and the length MUST always be a multiple of
  266.    4.
  267.  
  268.     Code   Len         Address 1               Address 2
  269.    +-----+-----+-----+-----+-----+-----+-----+-----+--
  270.    |  5  |  n  |  a1 |  a2 |  a3 |  a4 |  a1 |  a2 |  ...
  271.    +-----+-----+-----+-----+-----+-----+-----+-----+--
  272.  
  273.  
  274.  
  275.  
  276.  
  277.  
  278.  
  279.  
  280. Alexander & Droms                                               [Page 5]
  281.  
  282.  
  283. RFC 1533        DHCP Options and BOOTP Vendor Extensions    October 1993
  284.  
  285.  
  286. 3.8. Domain Name Server Option
  287.  
  288.    The domain name server option specifies a list of Domain Name System
  289.    (STD 13, RFC 1035 [8]) name servers available to the client.  Servers
  290.    SHOULD be listed in order of preference.
  291.  
  292.    The code for the domain name server option is 6.  The minimum length
  293.    for this option is 4 octets, and the length MUST always be a multiple
  294.    of 4.
  295.  
  296.     Code   Len         Address 1               Address 2
  297.    +-----+-----+-----+-----+-----+-----+-----+-----+--
  298.    |  6  |  n  |  a1 |  a2 |  a3 |  a4 |  a1 |  a2 |  ...
  299.    +-----+-----+-----+-----+-----+-----+-----+-----+--
  300.  
  301. 3.9. Log Server Option
  302.  
  303.    The log server option specifies a list of MIT-LCS UDP log servers
  304.    available to the client.  Servers SHOULD be listed in order of
  305.    preference.
  306.  
  307.    The code for the log server option is 7.  The minimum length for this
  308.    option is 4 octets, and the length MUST always be a multiple of 4.
  309.  
  310.     Code   Len         Address 1               Address 2
  311.    +-----+-----+-----+-----+-----+-----+-----+-----+--
  312.    |  7  |  n  |  a1 |  a2 |  a3 |  a4 |  a1 |  a2 |  ...
  313.    +-----+-----+-----+-----+-----+-----+-----+-----+--
  314.  
  315. 3.10. Cookie Server Option
  316.  
  317.    The cookie server option specifies a list of RFC 865 [9] cookie
  318.    servers available to the client.  Servers SHOULD be listed in order
  319.    of preference.
  320.  
  321.    The code for the log server option is 8.  The minimum length for this
  322.    option is 4 octets, and the length MUST always be a multiple of 4.
  323.  
  324.     Code   Len         Address 1               Address 2
  325.    +-----+-----+-----+-----+-----+-----+-----+-----+--
  326.    |  8  |  n  |  a1 |  a2 |  a3 |  a4 |  a1 |  a2 |  ...
  327.    +-----+-----+-----+-----+-----+-----+-----+-----+--
  328.  
  329.  
  330.  
  331.  
  332.  
  333.  
  334.  
  335.  
  336.  
  337. Alexander & Droms                                               [Page 6]
  338.  
  339.  
  340. RFC 1533        DHCP Options and BOOTP Vendor Extensions    October 1993
  341.  
  342.  
  343. 3.11. LPR Server Option
  344.  
  345.    The LPR server option specifies a list of RFC 1179 [10] line printer
  346.    servers available to the client.  Servers SHOULD be listed in order
  347.    of preference.
  348.  
  349.    The code for the LPR server option is 9.  The minimum length for this
  350.    option is 4 octets, and the length MUST always be a multiple of 4.
  351.  
  352.     Code   Len         Address 1               Address 2
  353.    +-----+-----+-----+-----+-----+-----+-----+-----+--
  354.    |  9  |  n  |  a1 |  a2 |  a3 |  a4 |  a1 |  a2 |  ...
  355.    +-----+-----+-----+-----+-----+-----+-----+-----+--
  356.  
  357. 3.12. Impress Server Option
  358.  
  359.    The Impress server option specifies a list of Imagen Impress servers
  360.    available to the client.  Servers SHOULD be listed in order of
  361.    preference.
  362.  
  363.    The code for the Impress server option is 10.  The minimum length for
  364.    this option is 4 octets, and the length MUST always be a multiple of
  365.    4.
  366.  
  367.     Code   Len         Address 1               Address 2
  368.    +-----+-----+-----+-----+-----+-----+-----+-----+--
  369.    |  10 |  n  |  a1 |  a2 |  a3 |  a4 |  a1 |  a2 |  ...
  370.    +-----+-----+-----+-----+-----+-----+-----+-----+--
  371.  
  372. 3.13. Resource Location Server Option
  373.  
  374.    This option specifies a list of RFC 887 [11] Resource Location
  375.    servers available to the client.  Servers SHOULD be listed in order
  376.    of preference.
  377.  
  378.    The code for this option is 11.  The minimum length for this option
  379.    is 4 octets, and the length MUST always be a multiple of 4.
  380.  
  381.     Code   Len         Address 1               Address 2
  382.    +-----+-----+-----+-----+-----+-----+-----+-----+--
  383.    |  11 |  n  |  a1 |  a2 |  a3 |  a4 |  a1 |  a2 |  ...
  384.    +-----+-----+-----+-----+-----+-----+-----+-----+--
  385.  
  386.  
  387.  
  388.  
  389.  
  390.  
  391.  
  392.  
  393.  
  394. Alexander & Droms                                               [Page 7]
  395.  
  396.  
  397. RFC 1533        DHCP Options and BOOTP Vendor Extensions    October 1993
  398.  
  399.  
  400. 3.14. Host Name Option
  401.  
  402.    This option specifies the name of the client.  The name may or may
  403.    not be qualified with the local domain name (see section 3.17 for the
  404.    preferred way to retrieve the domain name).  See RFC 1035 for
  405.    character set restrictions.
  406.  
  407.    The code for this option is 12, and its minimum length is 1.
  408.  
  409.     Code   Len                 Host Name
  410.    +-----+-----+-----+-----+-----+-----+-----+-----+--
  411.    |  12 |  n  |  h1 |  h2 |  h3 |  h4 |  h5 |  h6 |  ...
  412.    +-----+-----+-----+-----+-----+-----+-----+-----+--
  413.  
  414. 3.15. Boot File Size Option
  415.  
  416.    This option specifies the length in 512-octet blocks of the default
  417.    boot image for the client.  The file length is specified as an
  418.    unsigned 16-bit integer.
  419.  
  420.    The code for this option is 13, and its length is 2.
  421.  
  422.     Code   Len   File Size
  423.    +-----+-----+-----+-----+
  424.    |  13 |  2  |  l1 |  l2 |
  425.    +-----+-----+-----+-----+
  426.  
  427. 3.16. Merit Dump File
  428.  
  429.    This option specifies the path-name of a file to which the client's
  430.    core image should be dumped in the event the client crashes.  The
  431.    path is formatted as a character string consisting of characters from
  432.    the NVT ASCII character set.
  433.  
  434.    The code for this option is 14.  Its minimum length is 1.
  435.  
  436.     Code   Len      Dump File Pathname
  437.    +-----+-----+-----+-----+-----+-----+---
  438.    |  14 |  n  |  n1 |  n2 |  n3 |  n4 | ...
  439.    +-----+-----+-----+-----+-----+-----+---
  440.  
  441.  
  442.  
  443.  
  444.  
  445.  
  446.  
  447.  
  448.  
  449.  
  450.  
  451. Alexander & Droms                                               [Page 8]
  452.  
  453.  
  454. RFC 1533        DHCP Options and BOOTP Vendor Extensions    October 1993
  455.  
  456.  
  457. 3.17. Domain Name
  458.  
  459.    This option specifies the domain name that client should use when
  460.    resolving hostnames via the Domain Name System.
  461.  
  462.    The code for this option is 15.  Its minimum length is 1.
  463.  
  464.     Code   Len        Domain Name
  465.    +-----+-----+-----+-----+-----+-----+--
  466.    |  15 |  n  |  d1 |  d2 |  d3 |  d4 |  ...
  467.    +-----+-----+-----+-----+-----+-----+--
  468.  
  469. 3.18. Swap Server
  470.  
  471.    This specifies the IP address of the client's swap server.
  472.  
  473.    The code for this option is 16 and its length is 4.
  474.  
  475.     Code   Len    Swap Server Address
  476.    +-----+-----+-----+-----+-----+-----+
  477.    |  16 |  n  |  a1 |  a2 |  a3 |  a4 |
  478.    +-----+-----+-----+-----+-----+-----+
  479.  
  480. 3.19. Root Path
  481.  
  482.    This option specifies the path-name that contains the client's root
  483.    disk.  The path is formatted as a character string consisting of
  484.    characters from the NVT ASCII character set.
  485.  
  486.    The code for this option is 17.  Its minimum length is 1.
  487.  
  488.     Code   Len      Root Disk Pathname
  489.    +-----+-----+-----+-----+-----+-----+---
  490.    |  17 |  n  |  n1 |  n2 |  n3 |  n4 | ...
  491.    +-----+-----+-----+-----+-----+-----+---
  492.  
  493.  
  494.  
  495.  
  496.  
  497.  
  498.  
  499.  
  500.  
  501.  
  502.  
  503.  
  504.  
  505.  
  506.  
  507.  
  508. Alexander & Droms                                               [Page 9]
  509.  
  510.  
  511. RFC 1533        DHCP Options and BOOTP Vendor Extensions    October 1993
  512.  
  513.  
  514. 3.20. Extensions Path
  515.  
  516.    A string to specify a file, retrievable via TFTP, which contains
  517.    information which can be interpreted in the same way as the 64-octet
  518.    vendor-extension field within the BOOTP response, with the following
  519.    exceptions:
  520.  
  521.           - the length of the file is unconstrained;
  522.           - all references to Tag 18 (i.e., instances of the
  523.             BOOTP Extensions Path field) within the file are
  524.             ignored.
  525.  
  526.    The code for this option is 18.  Its minimum length is 1.
  527.  
  528.     Code   Len      Extensions Pathname
  529.    +-----+-----+-----+-----+-----+-----+---
  530.    |  18 |  n  |  n1 |  n2 |  n3 |  n4 | ...
  531.    +-----+-----+-----+-----+-----+-----+---
  532.  
  533. 4. IP Layer Parameters per Host
  534.  
  535.    This section details the options that affect the operation of the IP
  536.    layer on a per-host basis.
  537.  
  538. 4.1. IP Forwarding Enable/Disable Option
  539.  
  540.    This option specifies whether the client should configure its IP
  541.    layer for packet forwarding.  A value of 0 means disable IP
  542.    forwarding, and a value of 1 means enable IP forwarding.
  543.  
  544.    The code for this option is 19, and its length is 1.
  545.  
  546.     Code   Len  Value
  547.    +-----+-----+-----+
  548.    |  19 |  1  | 0/1 |
  549.    +-----+-----+-----+
  550.  
  551.  
  552.  
  553.  
  554.  
  555.  
  556.  
  557.  
  558.  
  559.  
  560.  
  561.  
  562.  
  563.  
  564.  
  565. Alexander & Droms                                              [Page 10]
  566.  
  567.  
  568. RFC 1533        DHCP Options and BOOTP Vendor Extensions    October 1993
  569.  
  570.  
  571. 4.2. Non-Local Source Routing Enable/Disable Option
  572.  
  573.    This option specifies whether the client should configure its IP
  574.    layer to allow forwarding of datagrams with non-local source routes
  575.    (see Section 3.3.5 of [4] for a discussion of this topic).  A value
  576.    of 0 means disallow forwarding of such datagrams, and a value of 1
  577.    means allow forwarding.
  578.  
  579.    The code for this option is 20, and its length is 1.
  580.  
  581.     Code   Len  Value
  582.    +-----+-----+-----+
  583.    |  20 |  1  | 0/1 |
  584.    +-----+-----+-----+
  585.  
  586. 4.3. Policy Filter Option
  587.  
  588.    This option specifies policy filters for non-local source routing.
  589.    The filters consist of a list of IP addresses and masks which specify
  590.    destination/mask pairs with which to filter incoming source routes.
  591.  
  592.    Any source routed datagram whose next-hop address does not match one
  593.    of the filters should be discarded by the client.
  594.  
  595.    See [4] for further information.
  596.  
  597.    The code for this option is 21.  The minimum length of this option is
  598.    8, and the length MUST be a multiple of 8.
  599.  
  600.     Code   Len         Address 1                  Mask 1
  601.    +-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+
  602.    |  21 |  n  |  a1 |  a2 |  a3 |  a4 |  m1 |  m2 |  m3 |  m4 |
  603.    +-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+
  604.            Address 2                  Mask 2
  605.    +-----+-----+-----+-----+-----+-----+-----+-----+---
  606.    |  a1 |  a2 |  a3 |  a4 |  m1 |  m2 |  m3 |  m4 | ...
  607.    +-----+-----+-----+-----+-----+-----+-----+-----+---
  608.  
  609.  
  610.  
  611.  
  612.  
  613.  
  614.  
  615.  
  616.  
  617.  
  618.  
  619.  
  620.  
  621.  
  622. Alexander & Droms                                              [Page 11]
  623.  
  624.  
  625. RFC 1533        DHCP Options and BOOTP Vendor Extensions    October 1993
  626.  
  627.  
  628. 4.4. Maximum Datagram Reassembly Size
  629.  
  630.    This option specifies the maximum size datagram that the client
  631.    should be prepared to reassemble.  The size is specified as a 16-bit
  632.    unsigned integer.  The minimum value legal value is 576.
  633.  
  634.    The code for this option is 22, and its length is 2.
  635.  
  636.     Code   Len      Size
  637.    +-----+-----+-----+-----+
  638.    |  22 |  2  |  s1 |  s2 |
  639.    +-----+-----+-----+-----+
  640.  
  641. 4.5. Default IP Time-to-live
  642.  
  643.    This option specifies the default time-to-live that the client should
  644.    use on outgoing datagrams.  The TTL is specified as an octet with a
  645.    value between 1 and 255.
  646.  
  647.    The code for this option is 23, and its length is 1.
  648.  
  649.     Code   Len   TTL
  650.    +-----+-----+-----+
  651.    |  23 |  1  | ttl |
  652.    +-----+-----+-----+
  653.  
  654. 4.6. Path MTU Aging Timeout Option
  655.  
  656.    This option specifies the timeout (in seconds) to use when aging Path
  657.    MTU values discovered by the mechanism defined in RFC 1191 [12].  The
  658.    timeout is specified as a 32-bit unsigned integer.
  659.  
  660.    The code for this option is 24, and its length is 4.
  661.  
  662.     Code   Len           Timeout
  663.    +-----+-----+-----+-----+-----+-----+
  664.    |  24 |  4  |  t1 |  t2 |  t3 |  t4 |
  665.    +-----+-----+-----+-----+-----+-----+
  666.  
  667.  
  668.  
  669.  
  670.  
  671.  
  672.  
  673.  
  674.  
  675.  
  676.  
  677.  
  678.  
  679. Alexander & Droms                                              [Page 12]
  680.  
  681.  
  682. RFC 1533        DHCP Options and BOOTP Vendor Extensions    October 1993
  683.  
  684.  
  685. 4.7. Path MTU Plateau Table Option
  686.  
  687.    This option specifies a table of MTU sizes to use when performing
  688.    Path MTU Discovery as defined in RFC 1191.  The table is formatted as
  689.    a list of 16-bit unsigned integers, ordered from smallest to largest.
  690.    The minimum MTU value cannot be smaller than 68.
  691.  
  692.    The code for this option is 25.  Its minimum length is 2, and the
  693.    length MUST be a multiple of 2.
  694.  
  695.     Code   Len     Size 1      Size 2
  696.    +-----+-----+-----+-----+-----+-----+---
  697.    |  25 |  n  |  s1 |  s2 |  s1 |  s2 | ...
  698.    +-----+-----+-----+-----+-----+-----+---
  699.  
  700. 5. IP Layer Parameters per Interface
  701.  
  702.    This section details the options that affect the operation of the IP
  703.    layer on a per-interface basis.  It is expected that a client can
  704.    issue multiple requests, one per interface, in order to configure
  705.    interfaces with their specific parameters.
  706.  
  707. 5.1. Interface MTU Option
  708.  
  709.    This option specifies the MTU to use on this interface.  The MTU is
  710.    specified as a 16-bit unsigned integer.  The minimum legal value for
  711.    the MTU is 68.
  712.  
  713.    The code for this option is 26, and its length is 2.
  714.  
  715.     Code   Len      MTU
  716.    +-----+-----+-----+-----+
  717.    |  26 |  2  |  m1 |  m2 |
  718.    +-----+-----+-----+-----+
  719.  
  720.  
  721.  
  722.  
  723.  
  724.  
  725.  
  726.  
  727.  
  728.  
  729.  
  730.  
  731.  
  732.  
  733.  
  734.  
  735.  
  736. Alexander & Droms                                              [Page 13]
  737.  
  738.  
  739. RFC 1533        DHCP Options and BOOTP Vendor Extensions    October 1993
  740.  
  741.  
  742. 5.2. All Subnets are Local Option
  743.  
  744.    This option specifies whether or not the client may assume that all
  745.    subnets of the IP network to which the client is connected use the
  746.    same MTU as the subnet of that network to which the client is
  747.    directly connected.  A value of 1 indicates that all subnets share
  748.    the same MTU.  A value of 0 means that the client should assume that
  749.    some subnets of the directly connected network may have smaller MTUs.
  750.  
  751.    The code for this option is 27, and its length is 1.
  752.  
  753.     Code   Len  Value
  754.    +-----+-----+-----+
  755.    |  27 |  1  | 0/1 |
  756.    +-----+-----+-----+
  757.  
  758. 5.3. Broadcast Address Option
  759.  
  760.    This option specifies the broadcast address in use on the client's
  761.    subnet.  Legal values for broadcast addresses are specified in
  762.    section 3.2.1.3 of [4].
  763.  
  764.    The code for this option is 28, and its length is 4.
  765.  
  766.     Code   Len     Broadcast Address
  767.    +-----+-----+-----+-----+-----+-----+
  768.    |  28 |  4  |  b1 |  b2 |  b3 |  b4 |
  769.    +-----+-----+-----+-----+-----+-----+
  770.  
  771. 5.4. Perform Mask Discovery Option
  772.  
  773.    This option specifies whether or not the client should perform subnet
  774.    mask discovery using ICMP.  A value of 0 indicates that the client
  775.    should not perform mask discovery.  A value of 1 means that the
  776.    client should perform mask discovery.
  777.  
  778.    The code for this option is 29, and its length is 1.
  779.  
  780.     Code   Len  Value
  781.    +-----+-----+-----+
  782.    |  29 |  1  | 0/1 |
  783.    +-----+-----+-----+
  784.  
  785.  
  786.  
  787.  
  788.  
  789.  
  790.  
  791.  
  792.  
  793. Alexander & Droms                                              [Page 14]
  794.  
  795.  
  796. RFC 1533        DHCP Options and BOOTP Vendor Extensions    October 1993
  797.  
  798.  
  799. 5.5. Mask Supplier Option
  800.  
  801.    This option specifies whether or not the client should respond to
  802.    subnet mask requests using ICMP.  A value of 0 indicates that the
  803.    client should not respond.  A value of 1 means that the client should
  804.    respond.
  805.  
  806.    The code for this option is 30, and its length is 1.
  807.  
  808.     Code   Len  Value
  809.    +-----+-----+-----+
  810.    |  30 |  1  | 0/1 |
  811.    +-----+-----+-----+
  812.  
  813. 5.6. Perform Router Discovery Option
  814.  
  815.    This option specifies whether or not the client should solicit
  816.    routers using the Router Discovery mechanism defined in RFC 1256
  817.    [13].  A value of 0 indicates that the client should not perform
  818.    router discovery.  A value of 1 means that the client should perform
  819.    router discovery.
  820.  
  821.    The code for this option is 31, and its length is 1.
  822.  
  823.     Code   Len  Value
  824.    +-----+-----+-----+
  825.    |  31 |  1  | 0/1 |
  826.    +-----+-----+-----+
  827.  
  828. 5.7. Router Solicitation Address Option
  829.  
  830.    This option specifies the address to which the client should transmit
  831.    router solicitation requests.
  832.  
  833.    The code for this option is 32, and its length is 4.
  834.  
  835.     Code   Len            Address
  836.    +-----+-----+-----+-----+-----+-----+
  837.    |  32 |  4  |  a1 |  a2 |  a3 |  a4 |
  838.    +-----+-----+-----+-----+-----+-----+
  839.  
  840.  
  841.  
  842.  
  843.  
  844.  
  845.  
  846.  
  847.  
  848.  
  849.  
  850. Alexander & Droms                                              [Page 15]
  851.  
  852.  
  853. RFC 1533        DHCP Options and BOOTP Vendor Extensions    October 1993
  854.  
  855.  
  856. 5.8. Static Route Option
  857.  
  858.    This option specifies a list of static routes that the client should
  859.    install in its routing cache.  If multiple routes to the same
  860.    destination are specified, they are listed in descending order of
  861.    priority.
  862.  
  863.    The routes consist of a list of IP address pairs.  The first address
  864.    is the destination address, and the second address is the router for
  865.    the destination.
  866.  
  867.    The default route (0.0.0.0) is an illegal destination for a static
  868.    route.  See section 3.5 for information about the router option.
  869.  
  870.    The code for this option is 33.  The minimum length of this option is
  871.    8, and the length MUST be a multiple of 8.
  872.  
  873.     Code   Len         Destination 1           Router 1
  874.    +-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+
  875.    |  33 |  n  |  d1 |  d2 |  d3 |  d4 |  r1 |  r2 |  r3 |  r4 |
  876.    +-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+
  877.            Destination 2           Router 2
  878.    +-----+-----+-----+-----+-----+-----+-----+-----+---
  879.    |  d1 |  d2 |  d3 |  d4 |  r1 |  r2 |  r3 |  r4 | ...
  880.    +-----+-----+-----+-----+-----+-----+-----+-----+---
  881.  
  882. 6. Link Layer Parameters per Interface
  883.  
  884.    This section lists the options that affect the operation of the data
  885.    link layer on a per-interface basis.
  886.  
  887. 6.1. Trailer Encapsulation Option
  888.  
  889.    This option specifies whether or not the client should negotiate the
  890.    use of trailers (RFC 893 [14]) when using the ARP protocol.  A value
  891.    of 0 indicates that the client should not attempt to use trailers.  A
  892.    value of 1 means that the client should attempt to use trailers.
  893.  
  894.    The code for this option is 34, and its length is 1.
  895.  
  896.     Code   Len  Value
  897.    +-----+-----+-----+
  898.    |  34 |  1  | 0/1 |
  899.    +-----+-----+-----+
  900.  
  901.  
  902.  
  903.  
  904.  
  905.  
  906.  
  907. Alexander & Droms                                              [Page 16]
  908.  
  909.  
  910. RFC 1533        DHCP Options and BOOTP Vendor Extensions    October 1993
  911.  
  912.  
  913. 6.2. ARP Cache Timeout Option
  914.  
  915.    This option specifies the timeout in seconds for ARP cache entries.
  916.    The time is specified as a 32-bit unsigned integer.
  917.  
  918.    The code for this option is 35, and its length is 4.
  919.  
  920.     Code   Len           Time
  921.    +-----+-----+-----+-----+-----+-----+
  922.    |  35 |  4  |  t1 |  t2 |  t3 |  t4 |
  923.    +-----+-----+-----+-----+-----+-----+
  924.  
  925. 6.3. Ethernet Encapsulation Option
  926.  
  927.    This option specifies whether or not the client should use Ethernet
  928.    Version 2 (RFC 894 [15]) or IEEE 802.3 (RFC 1042 [16]) encapsulation
  929.    if the interface is an Ethernet.  A value of 0 indicates that the
  930.    client should use RFC 894 encapsulation.  A value of 1 means that the
  931.    client should use RFC 1042 encapsulation.
  932.  
  933.    The code for this option is 36, and its length is 1.
  934.  
  935.     Code   Len  Value
  936.    +-----+-----+-----+
  937.    |  36 |  1  | 0/1 |
  938.    +-----+-----+-----+
  939.  
  940. 7. TCP Parameters
  941.  
  942.    This section lists the options that affect the operation of the TCP
  943.    layer on a per-interface basis.
  944.  
  945. 7.1. TCP Default TTL Option
  946.  
  947.    This option specifies the default TTL that the client should use when
  948.    sending TCP segments.  The value is represented as an 8-bit unsigned
  949.    integer.  The minimum value is 1.
  950.  
  951.    The code for this option is 37, and its length is 1.
  952.  
  953.     Code   Len   TTL
  954.    +-----+-----+-----+
  955.    |  37 |  1  |  n  |
  956.    +-----+-----+-----+
  957.  
  958.  
  959.  
  960.  
  961.  
  962.  
  963.  
  964. Alexander & Droms                                              [Page 17]
  965.  
  966.  
  967. RFC 1533        DHCP Options and BOOTP Vendor Extensions    October 1993
  968.  
  969.  
  970. 7.2. TCP Keepalive Interval Option
  971.  
  972.    This option specifies the interval (in seconds) that the client TCP
  973.    should wait before sending a keepalive message on a TCP connection.
  974.    The time is specified as a 32-bit unsigned integer.  A value of zero
  975.    indicates that the client should not generate keepalive messages on
  976.    connections unless specifically requested by an application.
  977.  
  978.    The code for this option is 38, and its length is 4.
  979.  
  980.     Code   Len           Time
  981.    +-----+-----+-----+-----+-----+-----+
  982.    |  38 |  4  |  t1 |  t2 |  t3 |  t4 |
  983.    +-----+-----+-----+-----+-----+-----+
  984.  
  985. 7.3. TCP Keepalive Garbage Option
  986.  
  987.    This option specifies the whether or not the client should send TCP
  988.    keepalive messages with a octet of garbage for compatibility with
  989.    older implementations.  A value of 0 indicates that a garbage octet
  990.    should not be sent. A value of 1 indicates that a garbage octet
  991.    should be sent.
  992.  
  993.    The code for this option is 39, and its length is 1.
  994.  
  995.     Code   Len  Value
  996.    +-----+-----+-----+
  997.    |  39 |  1  | 0/1 |
  998.    +-----+-----+-----+
  999.  
  1000. 8. Application and Service Parameters
  1001.  
  1002.    This section details some miscellaneous options used to configure
  1003.    miscellaneous applications and services.
  1004.  
  1005. 8.1. Network Information Service Domain Option
  1006.  
  1007.    This option specifies the name of the client's NIS [17] domain.  The
  1008.    domain is formatted as a character string consisting of characters
  1009.    from the NVT ASCII character set.
  1010.  
  1011.    The code for this option is 40.  Its minimum length is 1.
  1012.  
  1013.     Code   Len      NIS Domain Name
  1014.    +-----+-----+-----+-----+-----+-----+---
  1015.    |  40 |  n  |  n1 |  n2 |  n3 |  n4 | ...
  1016.    +-----+-----+-----+-----+-----+-----+---
  1017.  
  1018.  
  1019.  
  1020.  
  1021. Alexander & Droms                                              [Page 18]
  1022.  
  1023.  
  1024. RFC 1533        DHCP Options and BOOTP Vendor Extensions    October 1993
  1025.  
  1026.  
  1027. 8.2. Network Information Servers Option
  1028.  
  1029.    This option specifies a list of IP addresses indicating NIS servers
  1030.    available to the client.  Servers SHOULD be listed in order of
  1031.    preference.
  1032.  
  1033.    The code for this option is 41.  Its minimum length is 4, and the
  1034.    length MUST be a multiple of 4.
  1035.  
  1036.     Code   Len         Address 1               Address 2
  1037.    +-----+-----+-----+-----+-----+-----+-----+-----+--
  1038.    |  41 |  n  |  a1 |  a2 |  a3 |  a4 |  a1 |  a2 |  ...
  1039.    +-----+-----+-----+-----+-----+-----+-----+-----+--
  1040.  
  1041. 8.3. Network Time Protocol Servers Option
  1042.  
  1043.    This option specifies a list of IP addresses indicating NTP [18]
  1044.    servers available to the client.  Servers SHOULD be listed in order
  1045.    of preference.
  1046.  
  1047.    The code for this option is 42.  Its minimum length is 4, and the
  1048.    length MUST be a multiple of 4.
  1049.  
  1050.     Code   Len         Address 1               Address 2
  1051.    +-----+-----+-----+-----+-----+-----+-----+-----+--
  1052.    |  42 |  n  |  a1 |  a2 |  a3 |  a4 |  a1 |  a2 |  ...
  1053.    +-----+-----+-----+-----+-----+-----+-----+-----+--
  1054.  
  1055. 8.4. Vendor Specific Information
  1056.  
  1057.    This option is used by clients and servers to exchange vendor-
  1058.    specific information.  The information is an opaque object of n
  1059.    octets, presumably interpreted by vendor-specific code on the clients
  1060.    and servers.  The definition of this information is vendor specific.
  1061.    The vendor is indicated in the class-identifier option.  Servers not
  1062.    equipped to interpret the vendor-specific information sent by a
  1063.    client MUST ignore it (although it may be reported).  Clients which
  1064.    do not receive desired vendor-specific information SHOULD make an
  1065.    attempt to operate without it, although they may do so (and announce
  1066.    they are doing so) in a degraded mode.
  1067.  
  1068.    If a vendor potentially encodes more than one item of information in
  1069.    this option, then the vendor SHOULD encode the option using
  1070.    "Encapsulated vendor-specific options" as described below:
  1071.  
  1072.    The Encapsulated vendor-specific options field SHOULD be encoded as a
  1073.    sequence of code/length/value fields of identical syntax to the DHCP
  1074.    options field with the following exceptions:
  1075.  
  1076.  
  1077.  
  1078. Alexander & Droms                                              [Page 19]
  1079.  
  1080.  
  1081. RFC 1533        DHCP Options and BOOTP Vendor Extensions    October 1993
  1082.  
  1083.  
  1084.       1) There SHOULD NOT be a "magic cookie" field in the encapsulated
  1085.          vendor-specific extensions field.
  1086.  
  1087.       2) Codes other than 0 or 255 MAY be redefined by the vendor within
  1088.          the encapsulated vendor-specific extensions field, but SHOULD
  1089.          conform to the tag-length-value syntax defined in section 2.
  1090.  
  1091.       3) Code 255 (END), if present, signifies the end of the
  1092.          encapsulated vendor extensions, not the end of the vendor
  1093.          extensions field. If no code 255 is present, then the end of
  1094.          the enclosing vendor-specific information field is taken as the
  1095.          end of the encapsulated vendor-specific extensions field.
  1096.  
  1097.    The code for this option is 43 and its minimum length is 1.
  1098.  
  1099.    Code   Len   Vendor-specific information
  1100.    +-----+-----+-----+-----+---
  1101.    |  43 |  n  |  i1 |  i2 | ...
  1102.    +-----+-----+-----+-----+---
  1103.  
  1104.    When encapsulated vendor-specific extensions are used, the
  1105.    information bytes 1-n have the following format:
  1106.  
  1107.     Code   Len   Data item        Code   Len   Data item       Code
  1108.    +-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+
  1109.    |  T1 |  n  |  d1 |  d2 | ... |  T2 |  n  |  D1 |  D2 | ... | ... |
  1110.    +-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+
  1111.  
  1112. 8.5. NetBIOS over TCP/IP Name Server Option
  1113.  
  1114.    The NetBIOS name server (NBNS) option specifies a list of RFC
  1115.    1001/1002 [19] [20] NBNS name servers listed in order of preference.
  1116.  
  1117.    The code for this option is 44.  The minimum length of the option is
  1118.    4 octets, and the length must always be a multiple of 4.
  1119.  
  1120.     Code   Len           Address 1              Address 2
  1121.    +-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+----
  1122.    |  44 |  n  |  a1 |  a2 |  a3 |  a4 |  b1 |  b2 |  b3 |  b4 | ...
  1123.    +-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+----
  1124.  
  1125.  
  1126.  
  1127.  
  1128.  
  1129.  
  1130.  
  1131.  
  1132.  
  1133.  
  1134.  
  1135. Alexander & Droms                                              [Page 20]
  1136.  
  1137.  
  1138. RFC 1533        DHCP Options and BOOTP Vendor Extensions    October 1993
  1139.  
  1140.  
  1141. 8.6. NetBIOS over TCP/IP Datagram Distribution Server Option
  1142.  
  1143.    The NetBIOS datagram distribution server (NBDD) option specifies a
  1144.    list of RFC 1001/1002 NBDD servers listed in order of preference. The
  1145.    code for this option is 45.  The minimum length of the option is 4
  1146.    octets, and the length must always be a multiple of 4.
  1147.  
  1148.     Code   Len           Address 1              Address 2
  1149.    +-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+----
  1150.    |  45 |  n  |  a1 |  a2 |  a3 |  a4 |  b1 |  b2 |  b3 |  b4 | ...
  1151.    +-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+----
  1152.  
  1153. 8.7. NetBIOS over TCP/IP Node Type Option
  1154.  
  1155.    The NetBIOS node type option allows NetBIOS over TCP/IP clients which
  1156.    are configurable to be configured as described in RFC 1001/1002.  The
  1157.    value is specified as a single octet which identifies the client type
  1158.    as follows:
  1159.  
  1160.       Value         Node Type
  1161.       -----         ---------
  1162.       0x1           B-node
  1163.       0x2           P-node
  1164.       0x4           M-node
  1165.       0x8           H-node
  1166.  
  1167.    In the above chart, the notation '0x' indicates a number in base-16
  1168.    (hexadecimal).
  1169.  
  1170.    The code for this option is 46.  The length of this option is always
  1171.    1.
  1172.  
  1173.     Code   Len  Node Type
  1174.    +-----+-----+-----------+
  1175.    |  46 |  1  | see above |
  1176.    +-----+-----+-----------+
  1177.  
  1178.  
  1179.  
  1180.  
  1181.  
  1182.  
  1183.  
  1184.  
  1185.  
  1186.  
  1187.  
  1188.  
  1189.  
  1190.  
  1191.  
  1192. Alexander & Droms                                              [Page 21]
  1193.  
  1194.  
  1195. RFC 1533        DHCP Options and BOOTP Vendor Extensions    October 1993
  1196.  
  1197.  
  1198. 8.8. NetBIOS over TCP/IP Scope Option
  1199.  
  1200.    The NetBIOS scope option specifies the NetBIOS over TCP/IP scope
  1201.    parameter for the client as specified in RFC 1001/1002. See [19],
  1202.    [20], and [8] for character-set restrictions.
  1203.  
  1204.    The code for this option is 47.  The minimum length of this option is
  1205.    1.
  1206.  
  1207.     Code   Len       NetBIOS Scope
  1208.    +-----+-----+-----+-----+-----+-----+----
  1209.    |  47 |  n  |  s1 |  s2 |  s3 |  s4 | ...
  1210.    +-----+-----+-----+-----+-----+-----+----
  1211.  
  1212. 8.9. X Window System Font Server Option
  1213.  
  1214.    This option specifies a list of X Window System [21] Font servers
  1215.    available to the client. Servers SHOULD be listed in order of
  1216.    preference.
  1217.  
  1218.    The code for this option is 48.  The minimum length of this option is
  1219.    4 octets, and the length MUST be a multiple of 4.
  1220.  
  1221.     Code   Len         Address 1               Address 2
  1222.    +-----+-----+-----+-----+-----+-----+-----+-----+---
  1223.    |  48 |  n  |  a1 |  a2 |  a3 |  a4 |  a1 |  a2 |   ...
  1224.    +-----+-----+-----+-----+-----+-----+-----+-----+---
  1225.  
  1226. 8.10. X Window System Display Manager Option
  1227.  
  1228.    This option specifies a list of IP addresses of systems that are
  1229.    running the X Window System Display Manager and are available to the
  1230.    client.
  1231.  
  1232.    Addresses SHOULD be listed in order of preference.
  1233.  
  1234.    The code for the this option is 49. The minimum length of this option
  1235.    is 4, and the length MUST be a multiple of 4.
  1236.  
  1237.     Code   Len         Address 1               Address 2
  1238.  
  1239.    +-----+-----+-----+-----+-----+-----+-----+-----+---
  1240.    |  49 |  n  |  a1 |  a2 |  a3 |  a4 |  a1 |  a2 |   ...
  1241.    +-----+-----+-----+-----+-----+-----+-----+-----+---
  1242.  
  1243.  
  1244.  
  1245.  
  1246.  
  1247.  
  1248.  
  1249. Alexander & Droms                                              [Page 22]
  1250.  
  1251.  
  1252. RFC 1533        DHCP Options and BOOTP Vendor Extensions    October 1993
  1253.  
  1254.  
  1255. 9. DHCP Extensions
  1256.  
  1257.    This section details the options that are specific to DHCP.
  1258.  
  1259. 9.1. Requested IP Address
  1260.  
  1261.    This option is used in a client request (DHCPDISCOVER) to allow the
  1262.    client to request that a particular IP address be assigned.
  1263.  
  1264.    The code for this option is 50, and its length is 4.
  1265.  
  1266.     Code   Len          Address
  1267.    +-----+-----+-----+-----+-----+-----+
  1268.    |  50 |  4  |  a1 |  a2 |  a3 |  a4 |
  1269.    +-----+-----+-----+-----+-----+-----+
  1270.  
  1271. 9.2. IP Address Lease Time
  1272.  
  1273.    This option is used in a client request (DHCPDISCOVER or DHCPREQUEST)
  1274.    to allow the client to request a lease time for the IP address.  In a
  1275.    server reply (DHCPOFFER), a DHCP server uses this option to specify
  1276.    the lease time it is willing to offer.
  1277.  
  1278.    The time is in units of seconds, and is specified as a 32-bit
  1279.    unsigned integer.
  1280.  
  1281.    The code for this option is 51, and its length is 4.
  1282.  
  1283.     Code   Len         Lease Time
  1284.    +-----+-----+-----+-----+-----+-----+
  1285.    |  51 |  4  |  t1 |  t2 |  t3 |  t4 |
  1286.    +-----+-----+-----+-----+-----+-----+
  1287.  
  1288. 9.3. Option Overload
  1289.  
  1290.    This option is used to indicate that the DHCP "sname" or "file"
  1291.    fields are being overloaded by using them to carry DHCP options. A
  1292.    DHCP server inserts this option if the returned parameters will
  1293.    exceed the usual space allotted for options.
  1294.  
  1295.    If this option is present, the client interprets the specified
  1296.    additional fields after it concludes interpretation of the standard
  1297.    option fields.
  1298.  
  1299.    The code for this option is 52, and its length is 1.  Legal values
  1300.    for this option are:
  1301.  
  1302.  
  1303.  
  1304.  
  1305.  
  1306. Alexander & Droms                                              [Page 23]
  1307.  
  1308.  
  1309. RFC 1533        DHCP Options and BOOTP Vendor Extensions    October 1993
  1310.  
  1311.  
  1312.            Value   Meaning
  1313.            -----   --------
  1314.              1     the "file" field is used to hold options
  1315.              2     the "sname" field is used to hold options
  1316.              3     both fields are used to hold options
  1317.  
  1318.     Code   Len  Value
  1319.    +-----+-----+-----+
  1320.    |  52 |  1  |1/2/3|
  1321.    +-----+-----+-----+
  1322.  
  1323. 9.4. DHCP Message Type
  1324.  
  1325.    This option is used to convey the type of the DHCP message.  The code
  1326.    for this option is 53, and its length is 1.  Legal values for this
  1327.    option are:
  1328.  
  1329.            Value   Message Type
  1330.            -----   ------------
  1331.              1     DHCPDISCOVER
  1332.              2     DHCPOFFER
  1333.              3     DHCPREQUEST
  1334.              4     DHCPDECLINE
  1335.              5     DHCPACK
  1336.              6     DHCPNAK
  1337.              7     DHCPRELEASE
  1338.  
  1339.     Code   Len  Type
  1340.    +-----+-----+-----+
  1341.    |  53 |  1  | 1-7 |
  1342.    +-----+-----+-----+
  1343.  
  1344. 9.5. Server Identifier
  1345.  
  1346.    This option is used in DHCPOFFER and DHCPREQUEST messages, and may
  1347.    optionally be included in the DHCPACK and DHCPNAK messages.  DHCP
  1348.    servers include this option in the DHCPOFFER in order to allow the
  1349.    client to distinguish between lease offers.  DHCP clients indicate
  1350.    which of several lease offers is being accepted by including this
  1351.    option in a DHCPREQUEST message.
  1352.  
  1353.    The identifier is the IP address of the selected server.
  1354.  
  1355.  
  1356.  
  1357.  
  1358.  
  1359.  
  1360.  
  1361.  
  1362.  
  1363. Alexander & Droms                                              [Page 24]
  1364.  
  1365.  
  1366. RFC 1533        DHCP Options and BOOTP Vendor Extensions    October 1993
  1367.  
  1368.  
  1369.    The code for this option is 54, and its length is 4.
  1370.  
  1371.     Code   Len            Address
  1372.    +-----+-----+-----+-----+-----+-----+
  1373.    |  54 |  4  |  a1 |  a2 |  a3 |  a4 |
  1374.    +-----+-----+-----+-----+-----+-----+
  1375.  
  1376. 9.6. Parameter Request List
  1377.  
  1378.    This option is used by a DHCP client to request values for specified
  1379.    configuration parameters.  The list of requested parameters is
  1380.    specified as n octets, where each octet is a valid DHCP option code
  1381.    as defined in this document.
  1382.  
  1383.    The client MAY list the options in order of preference.  The DHCP
  1384.    server is not required to return the options in the requested order,
  1385.    but MUST try to insert the requested options in the order requested
  1386.    by the client.
  1387.  
  1388.    The code for this option is 55.  Its minimum length is 1.
  1389.  
  1390.     Code   Len   Option Codes
  1391.    +-----+-----+-----+-----+---
  1392.    |  55 |  n  |  c1 |  c2 | ...
  1393.    +-----+-----+-----+-----+---
  1394.  
  1395. 9.7. Message
  1396.  
  1397.    This option is used by a DHCP server to provide an error message to a
  1398.    DHCP client in a DHCPNAK message in the event of a failure. A client
  1399.    may use this option in a DHCPDECLINE message to indicate the why the
  1400.    client declined the offered parameters.  The message consists of n
  1401.    octets of NVT ASCII text, which the client may display on an
  1402.    available output device.
  1403.  
  1404.    The code for this option is 56 and its minimum length is 1.
  1405.  
  1406.     Code   Len     Text
  1407.    +-----+-----+-----+-----+---
  1408.    |  56 |  n  |  c1 |  c2 | ...
  1409.    +-----+-----+-----+-----+---
  1410.  
  1411.  
  1412.  
  1413.  
  1414.  
  1415.  
  1416.  
  1417.  
  1418.  
  1419.  
  1420. Alexander & Droms                                              [Page 25]
  1421.  
  1422.  
  1423. RFC 1533        DHCP Options and BOOTP Vendor Extensions    October 1993
  1424.  
  1425.  
  1426. 9.8. Maximum DHCP Message Size
  1427.  
  1428.    This option specifies the maximum length DHCP message that it is
  1429.    willing to accept.  The length is specified as an unsigned 16-bit
  1430.    integer.  A client may use the maximum DHCP message size option in
  1431.    DHCPDISCOVER or DHCPREQUEST messages, but should not use the option
  1432.    in DHCPDECLINE messages.
  1433.  
  1434.    The code for this option is 57, and its length is 2.  The minimum
  1435.    legal value is 576 octets.
  1436.  
  1437.     Code   Len     Length
  1438.    +-----+-----+-----+-----+
  1439.    |  57 |  2  |  l1 |  l2 |
  1440.    +-----+-----+-----+-----+
  1441.  
  1442. 9.9. Renewal (T1) Time Value
  1443.  
  1444.    This option specifies the time interval from address assignment until
  1445.    the client transitions to the RENEWING state.
  1446.  
  1447.    The value is in units of seconds, and is specified as a 32-bit
  1448.    unsigned integer.
  1449.  
  1450.    The code for this option is 58, and its length is 4.
  1451.  
  1452.     Code   Len         T1 Interval
  1453.    +-----+-----+-----+-----+-----+-----+
  1454.    |  58 |  4  |  t1 |  t2 |  t3 |  t4 |
  1455.    +-----+-----+-----+-----+-----+-----+
  1456.  
  1457. 9.10. Rebinding (T2) Time Value
  1458.  
  1459.    This option specifies the time interval from address assignment until
  1460.    the client transitions to the REBINDING state.
  1461.  
  1462.    The value is in units of seconds, and is specified as a 32-bit
  1463.    unsigned integer.
  1464.  
  1465.    The code for this option is 59, and its length is 4.
  1466.  
  1467.     Code   Len         T2 Interval
  1468.    +-----+-----+-----+-----+-----+-----+
  1469.    |  59 |  4  |  t1 |  t2 |  t3 |  t4 |
  1470.    +-----+-----+-----+-----+-----+-----+
  1471.  
  1472.  
  1473.  
  1474.  
  1475.  
  1476.  
  1477. Alexander & Droms                                              [Page 26]
  1478.  
  1479.  
  1480. RFC 1533        DHCP Options and BOOTP Vendor Extensions    October 1993
  1481.  
  1482.  
  1483. 9.11. Class-identifier
  1484.  
  1485.    This option is used by DHCP clients to optionally identify the type
  1486.    and configuration of a DHCP client.  The information is a string of n
  1487.    octets, interpreted by servers.  Vendors and sites may choose to
  1488.    define specific class identifiers to convey particular configuration
  1489.    or other identification information about a client.  For example, the
  1490.    identifier may encode the client's hardware configuration.  Servers
  1491.    not equipped to interpret the class-specific information sent by a
  1492.    client MUST ignore it (although it may be reported).
  1493.  
  1494.    The code for this option is 60, and its minimum length is 1.
  1495.  
  1496.    Code   Len   Class-Identifier
  1497.    +-----+-----+-----+-----+---
  1498.    |  60 |  n  |  i1 |  i2 | ...
  1499.    +-----+-----+-----+-----+---
  1500.  
  1501. 9.12. Client-identifier
  1502.  
  1503.    This option is used by DHCP clients to specify their unique
  1504.    identifier.  DHCP servers use this value to index their database of
  1505.    address bindings.  This value is expected to be unique for all
  1506.    clients in an administrative domain.
  1507.  
  1508.    Identifiers consist of a type-value pair, similar to the
  1509.  
  1510.    It is expected that this field will typically contain a hardware type
  1511.    and hardware address, but this is not required.  Current legal values
  1512.    for hardware types are defined in [22].
  1513.  
  1514.    The code for this option is 61, and its minimum length is 2.
  1515.  
  1516.    Code   Len   Type  Client-Identifier
  1517.    +-----+-----+-----+-----+-----+---
  1518.    |  61 |  n  |  t1 |  i1 |  i2 | ...
  1519.    +-----+-----+-----+-----+-----+---
  1520.  
  1521. 10. Extensions
  1522.  
  1523.    Additional generic data fields may be registered by contacting:
  1524.  
  1525.       Internet Assigned Numbers Authority (IANA)
  1526.       USC/Information Sciences Institute
  1527.       4676 Admiralty Way
  1528.       Marina del Rey, California  90292-6695
  1529.  
  1530.       or by email as: iana@isi.edu
  1531.  
  1532.  
  1533.  
  1534. Alexander & Droms                                              [Page 27]
  1535.  
  1536.  
  1537. RFC 1533        DHCP Options and BOOTP Vendor Extensions    October 1993
  1538.  
  1539.  
  1540.    Implementation specific use of undefined generic types (those in the
  1541.    range 61-127) may conflict with other implementations, and
  1542.    registration is required.
  1543.  
  1544. 11. Acknowledgements
  1545.  
  1546.    The authors would like to thank Philip Almquist for his feedback on
  1547.    this document.  The comments of the DHCP Working Group are also
  1548.    gratefully acknowledged.  In particular, Mike Carney and Jon Dreyer
  1549.    from SunSelect suggested the current format of the Vendor-specific
  1550.    Information option.
  1551.  
  1552.    RFC 1497 is based on earlier work by Philip Prindeville, with help
  1553.    from Drew Perkins, Bill Croft, and Steve Deering.
  1554.  
  1555. 12. References
  1556.  
  1557.    [1] Droms, R., "Dynamic Host Configuration Protocol", RFC 1531,
  1558.        Bucknell University, October 1993.
  1559.  
  1560.    [2] Reynolds, J., "BOOTP Vendor Information Extensions", RFC 1497,
  1561.        USC/Information Sciences Institute, August 1993.
  1562.  
  1563.    [3] Croft, W., and J. Gilmore, "Bootstrap Protocol", RFC 951,
  1564.        Stanford University and Sun Microsystems, September 1985.
  1565.  
  1566.    [4] Braden, R., Editor, "Requirements for Internet Hosts -
  1567.        Communication Layers", STD 3, RFC 1122, USC/Information Sciences
  1568.        Institute, October 1989.
  1569.  
  1570.    [5] Mogul, J., and J. Postel, "Internet Standard Subnetting
  1571.        Procedure", STD 5, RFC 950, USC/Information Sciences Institute,
  1572.        August 1985.
  1573.  
  1574.    [6] Postel, J., and K. Harrenstien, "Time Protocol", STD 26, RFC
  1575.        868, USC/Information Sciences Institute, SRI, May 1983.
  1576.  
  1577.    [7] Postel, J., "Name Server", IEN 116, USC/Information Sciences
  1578.        Institute, August 1979.
  1579.  
  1580.    [8] Mockapetris, P., "Domain Names - Implementation and
  1581.        Specification", STD 13, RFC 1035, USC/Information Sciences
  1582.        Institute, November 1987.
  1583.  
  1584.    [9] Postel, J., "Quote of the Day Protocol", STD 23, RFC 865,
  1585.        USC/Information Sciences Institute, May 1983.
  1586.  
  1587.  
  1588.  
  1589.  
  1590.  
  1591. Alexander & Droms                                              [Page 28]
  1592.  
  1593.  
  1594. RFC 1533        DHCP Options and BOOTP Vendor Extensions    October 1993
  1595.  
  1596.  
  1597.    [10] McLaughlin, L., "Line Printer Daemon Protocol", RFC 1179, The
  1598.         Wollongong Group, August 1990.
  1599.  
  1600.    [11] Accetta, M., "Resource Location Protocol", RFC 887, CMU,
  1601.         December 1983.
  1602.  
  1603.    [12] Mogul, J. and S. Deering, "Path MTU Discovery", RFC 1191,
  1604.         DECWRL,  Stanford University, November 1990.
  1605.  
  1606.    [13] Deering, S., "ICMP Router Discovery Messages", RFC 1256,
  1607.         Xerox PARC, September 1991.
  1608.  
  1609.    [14] Leffler, S. and M. Karels, "Trailer Encapsulations", RFC 893,
  1610.         U. C. Berkeley, April 1984.
  1611.  
  1612.    [15] Hornig, C., "Standard for the Transmission of IP Datagrams over
  1613.         Ethernet Networks", RFC 894, Symbolics, April 1984.
  1614.  
  1615.    [16] Postel, J. and J. Reynolds, "Standard for the Transmission of
  1616.         IP Datagrams Over IEEE 802 Networks", RFC 1042,  USC/Information
  1617.         Sciences Institute, February 1988.
  1618.  
  1619.    [17] Sun Microsystems, "System and Network Administration", March
  1620.         1990.
  1621.  
  1622.    [18] Mills, D., "Internet Time Synchronization: The Network Time
  1623.         Protocol", RFC 1305, UDEL, March 1992.
  1624.  
  1625.    [19] NetBIOS Working Group, "Protocol Standard for a NetBIOS Service
  1626.         on a TCP/UDP transport: Concepts and Methods", STD 19, RFC 1001,
  1627.         March 1987.
  1628.  
  1629.    [20] NetBIOS Working Group, "Protocol Standard for a NetBIOS Service
  1630.         on a TCP/UDP transport: Detailed Specifications", STD 19, RFC
  1631.         1002, March 1987.
  1632.  
  1633.    [21] Scheifler, R., "FYI On the X Window System", FYI 6, RFC 1198,
  1634.         MIT Laboratory for Computer Science, January 1991.
  1635.  
  1636.    [22] Reynolds, J., and J. Postel, "Assigned Numbers", STD 2, RFC 1340,
  1637.         USC/Information Sciences Institute, July 1992.
  1638.  
  1639. 13. Security Considerations
  1640.  
  1641.    Security issues are not discussed in this memo.
  1642.  
  1643.  
  1644.  
  1645.  
  1646.  
  1647.  
  1648. Alexander & Droms                                              [Page 29]
  1649.  
  1650.  
  1651. RFC 1533        DHCP Options and BOOTP Vendor Extensions    October 1993
  1652.  
  1653.  
  1654. 14. Authors' Addresses
  1655.  
  1656.    Steve Alexander
  1657.    Lachman Technology, Inc.
  1658.    1901 North Naper Boulevard
  1659.    Naperville, IL 60563-8895
  1660.  
  1661.    Phone: (708) 505-9555 x256
  1662.    EMail: stevea@lachman.com
  1663.  
  1664.  
  1665.    Ralph Droms
  1666.    Computer Science Department
  1667.    323 Dana Engineering
  1668.    Bucknell University
  1669.    Lewisburg, PA 17837
  1670.  
  1671.    Phone: (717) 524-1145
  1672.    EMail: droms@bucknell.edu
  1673.  
  1674.  
  1675.  
  1676.  
  1677.  
  1678.  
  1679.  
  1680.  
  1681.  
  1682.  
  1683.  
  1684.  
  1685.  
  1686.  
  1687.  
  1688.  
  1689.  
  1690.  
  1691.  
  1692.  
  1693.  
  1694.  
  1695.  
  1696.  
  1697.  
  1698.  
  1699.  
  1700.  
  1701.  
  1702.  
  1703.  
  1704.  
  1705. Alexander & Droms                                              [Page 30]
  1706.  
  1707.  
  1708.  
  1709.  
  1710.