The technology eliminates the need for individually configuring network devices manually, and consists of two network components, a centrally installed network DHCPserver and client instances of theprotocol stack on each computer or device. When connected to the network, and periodically thereafter, a clientrequests a set of parameters from the server using DHCP.
DHCP can be implemented on networks ranging in size fromresidential networks to largecampus networks and regional ISP networks.[2] Manyrouters andresidential gateways have DHCP server capability. Most residential network routers receive aunique IP address within the ISP network. Within a local network, a DHCP server assigns a local IP address to each device.
DHCP services exist for networks runningInternet Protocol version 4 (IPv4), as well as version 6 (IPv6). The IPv6 version of the DHCP protocol is commonly calledDHCPv6.
TheReverse Address Resolution Protocol (RARP) was defined in 1984 for the configuration of simple devices, such asdiskless workstations, with a suitable IP address.[3] Acting in thedata link layer, it made implementation difficult on many server platforms. It required that a server be present on each individual network link. RARP was superseded by theBootstrap Protocol (BOOTP) defined in September 1985.[4] This introduced the concept of a relay agent, which allowed the forwarding of BOOTP packets across networks, allowing one central BOOTP server to serve hosts on many IP subnets.
DHCP was first defined in October 1993.[5][6] It is based on BOOTP, but can dynamically allocate IP addresses from a pool and reclaim them when they are no longer in use. It can also be used to deliver a wide range of extra configuration parameters to IP clients, including platform-specific parameters.[7]
Four years later, the DHCPINFORM message type (used forWPAD) and other small changes were added. This definition, from 1997,[1] remains the core of the standard for IPv4 networks.
Internet Protocol (IP) defines how devices communicate within and across local networks on the Internet. A DHCP server can manage IP settings for devices on its local network, e.g., by assigning IP addresses to those devices automatically and dynamically.[10]
DHCP operates based on theclient–server model. When a computer or other device connects to a network, the DHCP client software sends a DHCPbroadcast query requesting the necessary information. Any DHCP server on the network may service the request. The DHCP server manages a pool of IP addresses and information about client configuration parameters such asdefault gateway,domain name, thename servers, andtime servers. On receiving a DHCP request, the DHCP server may respond with specific information for each client, as previously configured by an administrator, or with a specific address and any other information valid for the entire network and for the time period for which the allocation (lease) is valid. A DHCP client typically queries this information immediately afterbooting, and periodically thereafter before the expiration of the information. When a DHCP client refreshes an assignment, it initially requests the same parameter values, but the DHCP server may assign a new address based on the assignment policies set by administrators.
On large networks that consist of multiple links, a single DHCP server may service the entire network when aided by DHCP relay agents located on the interconnecting routers. Such agents relay messages between DHCP clients and DHCP servers located on different subnets.
Depending on implementation, the DHCP server may have three methods of allocating IP addresses:
Dynamic allocation
Anetwork administrator reserves a range of IP addresses for DHCP, and each DHCP client on theLAN is configured to request an IP address from the DHCPserver during network initialization. The request-and-grant process uses a lease concept with a controllable time period, allowing the DHCP server to reclaim and then reallocate IP addresses that are not renewed.
Automatic allocation
The DHCP server permanently assigns an IP address to a requesting client from a range defined by an administrator. This is like dynamic allocation, but the DHCP server keeps a table of past IP address assignments, so that it can preferentially assign to a client the same IP address that the client previously had.
Manual allocation
This method is also variously calledstatic DHCP allocation,fixed address allocation,reservation, andMAC/IP address binding. An administrator maps a unique identifier (aclient id orMAC address) for each client to an IP address, which is offered to the requesting client. DHCP servers may be configured to fall back to other methods if this fails.
DHCP services are used forInternet Protocol version 4 (IPv4) andIPv6. The details of the protocol for IPv4 and IPv6 differ sufficiently that they may be considered separate protocols.[11] For the IPv6 operation, devices may alternatively use stateless address autoconfiguration. IPv6 hosts may also uselink-local addressing to achieve operations restricted to the local network link.
An illustration of a typical non-renewing DHCP session; each message may be either a broadcast or aunicast, depending on the DHCP client capabilities.[1]
The DHCP employs aconnectionless service model, using theUser Datagram Protocol (UDP). It is implemented with two UDP port numbers for its operations which are the same as for the bootstrap protocol (BOOTP). The server listens on UDP port number 67, and the client listens on UDP port number 68.
DHCP operations fall into four phases: server discovery, IP lease offer, IP lease request, and IP lease acknowledgement. These stages are often abbreviated as DORA for discovery, offer, request, and acknowledgement.
The DHCP operation begins with clients broadcasting a request. If the client and server are in differentBroadcast Domains, aDHCP Helper or DHCP Relay Agent may be used. Clients requesting renewal of an existing lease may communicate directly via UDPunicast, since the client already has an established IP address at that point. Additionally, there is a BROADCAST flag (1 bit in 2 byte flags field, where all other bits are reserved and so are set to 0) the client can use to indicate in which way (broadcast or unicast) it can receive the DHCPOFFER: 0x8000 for broadcast, 0x0000 for unicast.[1] Usually, the DHCPOFFER is sent through unicast. For those hosts which cannot accept unicast packets before IP addresses are configured, this flag can be used to work around this issue.
The DHCP client broadcasts a DHCPDISCOVER message on the network subnet using the destination address255.255.255.255 (limited broadcast) or the specific subnetbroadcast address (directed broadcast). A DHCP client may also request an IP address in the DHCPDISCOVER, which the server may take into account when selecting an address to offer.
For example, if HTYPE is set to 1, to specify that the medium used isEthernet, HLEN is set to 6 because an Ethernet address (MAC address) is 6 octets long. The CHADDR is set to the MAC address used by the client. Some options are set as well.
Example Ethernet frame with a DHCPDISCOVER message
When a DHCP server receives a DHCPDISCOVER message from a client, which is an IP address lease request, the DHCP server reserves an IP address for the client and makes a lease offer by sending a DHCPOFFER message to the client. This message may contain the client'sClient ID (Option 61, containing a unique value, traditionally a MAC address), the IP address that the server is offering, the subnet mask, the lease duration, and the IP address of the DHCP server making the offer. The DHCP server may also take notice of the hardware-level MAC address (as specified in the CHADDR field). This field must be used to identify the client, if no Client ID is provided in the DHCP packet.[1]: §4.2
The DHCP server determines the configuration based on the client's hardware address as specified in the CHADDR (client hardware address) field. In the following example the server (192.168.1.1) specifies the client's IP address in the YIADDR (your IP address) field.
In response to the DHCP offer, the client replies with a DHCPREQUEST message, broadcast to the server,[a] requesting the offered address. A client can receive DHCP offers from multiple servers, but it will accept only one DHCP offer.
The client must send theserver identification option in the DHCPREQUEST message, indicating the server whose offer the client has selected.[1]: Section 3.1, Item 3 When other DHCP servers receive this message, they withdraw any offers that they have made to the client and return their offered IP address to the pool of available addresses.
When the DHCP server receives the DHCPREQUEST message from the client, the configuration process enters its final phase. The acknowledgement phase involves sending a DHCPACK packet to the client. This packet includes the lease duration and any other configuration information that the client might have requested. At this point, the IP configuration process is completed.
The protocol expects the DHCP client to configure its network interface with the negotiated parameters.
When the server is reusing an IP address from its pool, it may first check (usingping) to see if it is not taken already.[1]: sec. 2.2 This may happen if a host is configured manually with an IP address that lies within the DHCP scope.
Before claiming an IP address, the client should probe the newly received address (e.g. withARP), in order to find if there is another host present in the network with the proposed IP address.[1]: sec. 2.2 If there is no reply, this address does not conflict with that of another host, so it is free to be used. If this probe finds another computer using that address, the client should broadcast a DHCPDECLINE to the DHCP server(s).
A DHCP client may request more information than the server sent with the original DHCPOFFER. The client may also request repeat data for a particular application. For example, browsers useDHCP Inform to obtain web proxy settings viaWPAD.
The client sends a request to the DHCP server to release the DHCP information and the client deactivates its IP address. As client devices usually do not know when users may unplug them from the network, the protocol does not mandate the sending ofDHCP Release.
A DHCP server can provide optional configuration parameters to the client. RFC 2132 describes the available DHCP options defined byInternet Assigned Numbers Authority (IANA) - DHCP and BOOTP PARAMETERS.[12]
A DHCP client can select, manipulate and overwrite parameters provided by a DHCP server. In Unix-like systems this client-level refinement typically takes place according to the values in the configuration file/etc/dhclient.conf.
Options are octet strings of varying length. This is calledType–length–value encoding. The first octet is the option code, the second octet is the number of following octets and the remaining octets are code dependent.For example, the DHCP message-type option for an offer would appear as 0x35, 0x01, 0x02, where 0x35 is code 53 for "DHCP message type", 0x01 means one octet follows and 0x02 is the value of "offer".
The following tables list the available DHCP options.[13][12]
RFC 1497 (BOOTP Vendor Information Extensions) vendor extensions[13]: Section 3
Can be used to pad other options so that they are aligned to the word boundary; is not followed by length byte
1
Subnet mask
4 octets
Client's subnet mask as perRFC 950. If both the subnet mask and the router option (option 3) are included, the subnet mask option must be first.
2
Time offset
4 octets
Time offset of the client's subnet in seconds from Coordinated Universal Time (UTC). The offset is expressed as a two's complement 32-bit integer. A positive offset indicates a location east of the zero meridian and a negative offset indicates a location west of the zero meridian.
3
Router
Multiples of 4 octets
Available routers, should be listed in order of preference
4
Time server
Multiples of 4 octets
AvailableTime Protocol servers to synchronise with, should be listed in order of preference
5
Name server
Multiples of 4 octets
AvailableIEN 116 name servers, should be listed in order of preference
6
Domain name server
Multiples of 4 octets
AvailableDNS servers, should be listed in order of preference
7
Log server
Multiples of 4 octets
Available log servers, should be listed in order of preference
8
Cookie server
Multiples of 4 octets
Cookiein this case means "fortune cookie" or "quote of the day", a pithy or humorous anecdote often sent as part of a logon process on large computers; it has nothing to do withcookies sent by websites.
An option exists to identify the vendor and functionality of a DHCP client. The information is avariable-length string of characters or octets which has a meaning specified by the vendor of the DHCP client. One method by which a DHCP client can communicate to the server that it is using a certain type of hardware orfirmware is to set a value in its DHCP requests called the Vendor Class Identifier (VCI) (Option 60).
The value to which this option is set gives the DHCP server a hint about any required extra information that this client needs in a DHCP response. Some types ofset-top boxes set the VCI to inform the DHCP server about the hardware type and functionality of the device. AnAruba campuswireless access point, for example, supplies value 'ArubaAP' as option 60 in its DHCPDISCOVER message.[19] The DHCP server can then augment its DHCPOFFER with an IP address of an Arubawireless controller in option 43, so the access point knows where to register itself.
Setting a VCI by the client allows a DHCP server to differentiate between client machines and process the requests from them appropriately.
The relay agent information option (option 82) specifies container for attaching sub-options to DHCP requests transmitted between a DHCP relay and a DHCP server.[28]
In small networks, where only one IP subnet is being managed, DHCP clients communicate directly with DHCP servers. However, DHCP servers can also provide IP addresses for multiple subnets. In this case, a DHCP client that has not yet acquired an IP address cannot communicate directly with a DHCP server not on the same subnet, as the client's broadcast can only be received on its own subnet.
In order to allow DHCP clients on subnets not directly served by DHCP servers to communicate with DHCP servers, DHCP relay agents can be installed on these subnets. A DHCP relay agent runs on a network device, capable ofrouting between the client's subnet and the subnet of the DHCP server. The DHCP client broadcasts on the local link; the relay agent receives the broadcast and transmits it to one or more DHCP servers usingunicast. The IP addresses of the DHCP servers are manually configured in the relay agent.The relay agent stores its own IP address, from the interface on which it has received the client's broadcast, in theGIADDR field of the DHCP packet.The DHCP server uses the GIADDR-value to determine the subnet, and subsequently the corresponding address pool, from which to allocate an IP address.When the DHCP server replies to the client, it sends the reply to the GIADDR-address, again using unicast.The relay agent then retransmits the response on the local network, using unicast (in most cases) to the newly reserved IP address, in anEthernet frame directed to the client's MAC address.The client should accept the packet as its own, even when that IP address is not yet set on the interface.[1]: 25 Directly after processing the packet, the client sets the IP address on its interface and is ready for regular IP communication, directly thereafter.
If the client's implementation of the IP stack does not accept unicast packets when it has no IP address yet, the client may set thebroadcast bit in the FLAGS field when sending a DHCPDISCOVER packet.The relay agent will use the255.255.255.255 broadcast IP address (and the clients MAC address) to inform the client of the server's DHCPOFFER.
The communication between the relay agent and the DHCP server typically uses both a source and destination UDP port of 67.
The DHCP ensures reliability in several ways: periodic renewal, rebinding,[1]: §4.4.5 and failover. DHCP clients are allocated leases that last for some period of time. Clients begin to attempt to renew their leases once half the lease interval has expired.[1]: §4.4.5 Paragraph 3 They do this by sending a unicastDHCPREQUEST message to the DHCP server that granted the original lease. If that server is down or unreachable, it will fail to respond to theDHCPREQUEST. However, in that case the client repeats theDHCPREQUEST from time to time,[1]: §4.4.5 Paragraph 8 [b] so if the DHCP server comes back up or becomes reachable again, the DHCP client will succeed in contacting it and renew the lease.
If the DHCP server is unreachable for an extended period of time,[1]: §4.4.5 Paragraph 5 the DHCP client will attempt to rebind, by broadcasting itsDHCPREQUEST rather than unicasting it. Because it isbroadcast, theDHCPREQUEST message will reach all available DHCP servers. If some other DHCP server is able to renew the lease, it will do so at this time.
In order for rebinding to work, when the client successfully contacts a backup DHCP server, that server must have accurate information about the client's binding. Maintaining accurate binding information between two servers is a complicated problem; if both servers are able to update the same lease database, there must be a mechanism to avoid conflicts between updates on the independent servers. A proposal for implementingfault-tolerant DHCP servers was submitted to the Internet Engineering Task Force, but never formalized.[30][c]
If rebinding fails, the lease will eventually expire. When the lease expires, the client must stop using the IP address granted to it in its lease.[1]: §4.4.5 Paragraph 9 At that time it will restart the DHCP process from the beginning by broadcasting aDHCPDISCOVER message. Since its lease has expired, it will accept any IP address offered to it. Once it has a new IP address (presumably from a different DHCP server) it will once again be able to use the network. However, since its IP address has changed, any ongoing connections will be broken.
The basic methodology of DHCP was developed for networks based onInternet Protocol version 4 (IPv4). Since the development and deployment ofIPv6 networks, DHCP has also been used for assigning parameters in such networks, despite the inherent features of IPv6 forstateless address autoconfiguration. The IPv6 version of the protocol is designated asDHCPv6.[31]
The base DHCP does not include any mechanism for authentication.[21]: §7 Because of this, it is vulnerable to a variety of attacks. These attacks fall into three main categories:[1]: sec. 7
Unauthorized DHCP servers providing false information to clients.
Unauthorized clients gaining access to resources.
Resource exhaustion attacks from malicious DHCP clients.
Because the client has no way to validate the identity of a DHCP server, unauthorized DHCP servers (commonly called "rogue DHCP") can be operated on networks, providing incorrect information to DHCP clients.[32] This can serve either as adenial-of-service attack, preventing the client from gaining access to network connectivity,[33] or as aman-in-the-middle attack.[34] Because the DHCP server provides the DHCP client with server IP addresses, such as the IP address of one or more DNS servers,[1]: sec. 7 an attacker can convince a DHCP client to do its DNS lookups through its own DNS server, and can therefore provide its own answers to DNS queries from the client.[35] This in turn allows the attacker to redirect network traffic through itself, allowing it to eavesdrop on connections between the client and network servers it contacts, or to simply replace those network servers with its own.[35]
Because the DHCP server has no secure mechanism for authenticating the client, clients can gain unauthorized access to IP addresses by presenting credentials, such as client identifiers, that belong to other DHCP clients.[32] This also allows DHCP clients to exhaust the DHCP server's store of IP addresses—by presenting new credentials each time it asks for an address, the client can consume all the available IP addresses on a particular network link, preventing other DHCP clients from getting service.[32]
DHCP does provide some mechanisms for mitigating these problems. TheRelay Agent Information Option protocol extension[21] (usually referred to in the industry by its actual number asOption 82[36][37]) allows network operators to attach tags to DHCP messages as these messages arrive on the network operator's trusted network. This tag is then used as an authorization token to control the client's access to network resources. Because the client has no access to the network upstream of the relay agent, the lack of authentication does not prevent the DHCP server operator from relying on the authorization token.[21]: sec. 7
Another extension, Authentication for DHCP Messages[38] (RFC 3118), provides a mechanism for authenticating DHCP messages. As of 2002, this extension had not seen widespread adoption because of the problems of managing keys for large numbers of DHCP clients.[39] A 2007 book about DSL technologies remarked that:
[T]here were numerous security vulnerabilities identified against the security measures proposed by RFC 3118. This fact, combined with the introduction of802.1X, slowed the deployment and take-rate of authenticated DHCP, and it has never been widely deployed.[40]
A 2010 book notes that:
[T]here have been very few implementations of DHCP Authentication. The challenges of key management and processing delays due to hash computation have been deemed too heavy a price to pay for the perceived benefits.[41]
Architectural proposals from 2008 involve authenticating DHCP requests using802.1X orPANA (both of which transportEAP).[42] An IETF proposal was made for including EAP in DHCP itself, the so-calledEAPoDHCP;[43] this does not appear to have progressed beyond IETF draft level, the last of which dates to 2010.[44]
^As an optional client behavior, some broadcasts, such as those carrying DHCP discovery and request messages, may be replaced with unicasts in case the DHCP client already knows the DHCP server's IP address.[1]
^The RFC calls for the client to wait one half of the remaining time until T2 before it retransmits theDHCPREQUEST packet
^The proposal provided a mechanism whereby two servers could remain loosely in sync with each other in such a way that even in the event of a total failure of one server, the other server could recover the lease database and continue operating. Due to the length and complexity of the specification, it was never published as a standard; however, the techniques described in the proposal are in wide use, with open-source and several commercial implementations.