A network administrator is deploying a multi-VLAN network on a Layer 3 switch. Workstations on VLAN 50 () are failing to acquire IP addresses from a centralized DHCP server (). During troubleshooting, the administrator notices that the `ip helper-address 192.168.10.10` command was mistakenly configured on the physical trunk uplink interface connecting to the core router instead of the client subnet interface. Which configuration change must be implemented to allow VLAN 50 workstations to obtain DHCP leases?
- Apply the `ip helper-address 192.168.10.10` command directly under the VLAN 50 Switch Virtual Interface (SVI).Answer
- BReconfigure the DHCP relay agent to forward client requests using TCP port 67 instead of UDP port 67.
- CRelocate the `ip helper-address` configuration statement to the network adapter properties of the central DHCP server.
- DEnable global broadcast routing on all physical access switchports assigned to VLAN 50.
Answer
Configure the `ip helper-address 192.168.10.10` command directly under the VLAN 50 Switch Virtual Interface (SVI).
DHCP clients issue Layer 2 broadcast requests (`255.255.255.255`) that are constrained to their local VLAN. To relay these requests across subnets to a remote DHCP server, the DHCP relay service (`ip helper-address`) must be configured on the Layer 3 interface serving as the local default gateway for that VLAN—specifically the VLAN 50 Switch Virtual Interface (SVI). Once configured on the SVI, the switch intercepts the local broadcast, sets the Gateway IP Address (`giaddr`) field to the SVI IP address, and forwards the request as a unicast packet to .
Step-by-Step Solution
Key Concept
DHCP Relay Agent Placement on Switch Virtual Interfaces (SVIs)