Skip to main content

DHCP Basics

·541 words·3 mins
lab1918
Author
lab1918

Dynamic Host Configuration Protocol (DHCP) is a network management protocol used on Internet Protocol (IP) networks whereby a DHCP server dynamically assigns an IP address and other network configuration parameters to each device on a network, so they can communicate with other IP networks. Here’s an overview of how DHCP works:

Basic Operation
#

  1. Client-Server Model: DHCP operates on a client-server model. The DHCP server manages a pool of IP addresses and other configuration settings for the network. The DHCP client (typically a computer or smartphone) requests configuration settings from the server.

  2. DHCP Lease Concept: The IP address assigned to a device is leased for a certain period. The client must renew the lease to continue using the IP address.

Four-Step Process
#

The DHCP process involves four main steps, often referred to as DORA (Discover, Offer, Request, Acknowledge):

  1. DHCP Discover:

    • The client sends a DHCP Discover message to find available DHCP servers. This message is sent as a broadcast on the network, as the client does not yet have an IP address and doesn’t know the address of the DHCP server.
    • The client may also specify specific configuration requirements in this message.
  2. DHCP Offer:

    • Every DHCP server on the network that receives the Discover message responds with a DHCP Offer message. This message includes an IP address offer and other configuration information like the subnet mask, default gateway, and DNS server addresses.
    • If there are multiple DHCP servers on the network, the client receives multiple offers.
  3. DHCP Request:

    • The client receives one or more offers and chooses one, typically the first it receives. It then broadcasts a DHCP Request message to all servers, indicating which offer it accepted.
    • This broadcast informs other DHCP servers that their offers were declined and they can return the offered IP addresses to their pool.
  4. DHCP Acknowledge:

    • The chosen DHCP server responds with a DHCP Acknowledge (Ack) message. This message confirms the IP address lease and includes lease duration and configuration information.
    • If the offered IP address is no longer available or the client’s request can’t be fulfilled for another reason, the server sends a DHCP Nak (negative acknowledgment) message, prompting the client to start the process again.

Renewal and Releasing
#

  • Lease Renewal: Before the lease expires, the client will attempt to renew the lease with a DHCP Request message. This is often done at 50% and 87.5% of the lease time. If the server approves, it responds with a DHCP Ack message.

  • IP Address Release: If the client no longer needs the IP address (e.g., if it’s shutting down or disconnecting from the network), it can send a DHCP Release message to the server, making the IP address available again in the pool.

Benefits of DHCP
#

  • Automatic IP Address Management: Reduces the need for a network administrator to manually assign IP addresses to all devices on a network.
  • Flexibility and Efficiency: Devices can join and leave the network easily, with IP addresses dynamically reassigned as needed.
  • Centralized Network Configuration: DHCP servers can provide additional configuration settings like DNS server addresses and domain names, ensuring consistent network configuration.

DHCP is widely used in all types of networks, from small home networks to large enterprise networks, due to its efficiency and ease of management.