A client workstation on VLAN 20 initiates a connection and requests an IP address assignment from a centralized DHCP server residing on VLAN 100 via a Layer 3 switch interface configured with DHCP relay. Place the following stages of the relayed DHCPDISCOVER and DHCPOFFER packet lifecycle in the correct chronological sequence from first to last.
- 1The host workstation broadcasts a DHCPDISCOVER packet on UDP port 67 within local VLAN 20.
- 2The Layer 3 switch interface receives the broadcast packet and populates the (Gateway IP Address) field with its own VLAN 20 SVI address.
- 3The Layer 3 switch encapsulates the request and transmits a unicast DHCPDISCOVER packet across VLAN 100 to the central DHCP server's IP address.
- 4The DHCP server selects the VLAN 20 address scope matching and transmits a unicast DHCPOFFER packet back to the relay agent's interface IP.
- 5The Layer 3 switch relay agent forwards the DHCPOFFER packet onto VLAN 20 to be received by the requesting workstation.
Answer
The correct chronological sequence is: (1) Host broadcasts DHCPDISCOVER locally on VLAN 20, (2) Relay agent populates the giaddr field with the VLAN 20 SVI address, (3) Relay agent forwards unicast DHCPDISCOVER to the server on VLAN 100, (4) Server selects scope based on giaddr and sends unicast DHCPOFFER to the relay agent, (5) Relay agent delivers DHCPOFFER back to the host on VLAN 20.
The correct sequence reflects standard DHCP relay operations across Layer 3 boundaries. The process begins when the client generates a broadcast DHCPDISCOVER packet on its local segment. The Layer 3 relay interface receives the broadcast, tags its own interface IP into the payload field, and forwards the packet as a unicast transmission to the remote DHCP server. The DHCP server uses the to map the request to the correct scope, then unicasts a DHCPOFFER back to the relay interface IP. Finally, the relay interface delivers the DHCPOFFER to the local client on VLAN 20.
Step-by-Step Solution
Key Concept
DHCP Relay Agent Architecture & GIADDR Mechanics