A workstation on a remote branch subnet initializes network communications and requires an IP address assignment from a centralized DHCP server located across a routed WAN link. Place the chronological steps of the DHCP Relay forwarding process in the correct sequence from initial client packet creation to the reception of the initial offer.
- 1The client workstation originates a broadcast DHCPDISCOVER packet on the local segment using source UDP port and destination UDP port .
- 2The local Layer 3 relay agent intercepts the broadcast frame, populates the Gateway IP Address () field with its own incoming interface IP, and unicasts the payload to the DHCP server using destination UDP port .
- 3The centralized DHCP server uses the incoming value to select the corresponding IP pool scope and returns a unicast DHCPOFFER packet to the relay agent's interface on UDP port .
- 4The relay agent receives the unicast response from the server, strips the relay encapsulation, and transmits the DHCPOFFER packet to the workstation on the local segment targeting UDP port .
Answer
The correct sequence starts with the workstation broadcasting a DHCPDISCOVER request locally on UDP port 67. Next, the Layer 3 relay agent inserts its interface IP into the giaddr field and unicasts the request to the central DHCP server. The DHCP server processes the giaddr field to match the scope and responds with a unicast DHCPOFFER to the relay agent. Finally, the relay agent forwards the DHCPOFFER down to the workstation segment on UDP port 68.
The DHCP sequence across subnets requires specific steps to bridge broadcast domains. First, the unconfigured client broadcasts a DHCPDISCOVER message using destination UDP port . Second, the local relay agent captures the broadcast, inserts its local interface IP into the gateway IP address () header field, and unicasts the message across the routed network to the DHCP server on UDP port . Third, the server uses the value to select the proper subnet pool and unicasts a DHCPOFFER back to the relay agent interface. Fourth, the relay agent delivers the offer back to the client host on UDP port .
Step-by-Step Solution
Key Concept
DHCP Relay Agent Unicast Conversion and giaddr Field Processing
Estimated Time:2m 0s