11-16-2023 09:32 AM
Understanding DHCP DORA process from Wireshark packet capture perspective
These are the basics you need to know to understand what DHCP process involves when a client initiates a request to get an IP address from a DHCP server. This applies to wireless as well as wired clients.
DHCP—Dynamic Host Configuration Protocol
How it operates:
DHCPDISCOVER (IP address request)
-DHCP client generates a special message known as DHCPDISCOVER message and broadcasts this message on the local LAN. If a DHCP server is configured on the local network, it will also receive the message. If multiple DHCP servers are configured on the local network, they all will receive the DHCPDISCOVER message. This message is broadcast packet.
DHCPOFFER (IP address offer)
In reply to the DHCPDISCOVER message, a DHCP server sends a DHCPOFFER message to the client. If multiple DHCP servers are available, based on their configuration, one of them or all of them can reply to the DHCPDISCOVER message. This message is broadcast packet.
DHCPREQUEST (IP address selection)
Depending on the number of DHCP servers, a host may receive multiple DHCPOFFER messages. If a host receives multiple DHCPOFFER messages, it accepts only one message and tells the corresponding server with a DHCPREQUEST message that it wants to use the offered IP configuration, all other servers withdraw any offers that they might have made to the client and return the offered address to the pool of available addresses. This is an unicast packet.
DHCPACK (IP address acknowledgment)
When the DHCP server receives a DHCPREQUEST message from the client, the configuration process enters its final stage. The server sends a DHCPACK message to the client. This is an unicast packet.
Summarizing, the following picture describes the packet flow between DHCP client and server.
DHCP Cross communication between Client-Server
I hope this is being informative for you!