A network administrator is troubleshooting an issue where new IP phones on VLAN 50 () successfully obtain IPv4 leased addresses and default gateway settings from a centralized DHCP server located on VLAN 10 (), but repeatedly fail to locate their TFTP provisioning server () and fail to sync time with the corporate NTP server (). The layer 3 switch interface for VLAN 50 is configured with `ip helper-address 10.10.0.100`. Packet captures on the switch show DHCP requests are forwarded, but TFTP and NTP requests sent via broadcast during initial boot are dropped. Which configuration modification on the layer 3 switch will directly resolve the provisioning and time synchronization failure for the endpoints on VLAN 50?
- Configure additional UDP forward port commands (`ip forward-protocol udp 69` and `ip forward-protocol udp 123`) or configure DHCP scope Options 66 and 42 on the central DHCP server.Answer
- BAdd a second `ip helper-address 10.10.0.200` entry under the VLAN 50 interface to relay DHCPDISCOVER broadcasts to the TFTP server host.
- CCreate a canonical name (CNAME) record on the internal DNS server mapping the default hostname `tftp.local` to the IPv6 address of the provisioning server.
- DReassign the centralized DHCP server service port from UDP port 67 to TCP port 68 to bypass layer 3 switch broadcast filtering policies.
Answer
Configure additional UDP forward port commands or configure DHCP scope Options 66 and 42 on the central DHCP server.
Centralized network services across routed subnets require remote hosts to receive unicast destination information or require layer 3 devices to relay specific broadcast protocols. Configuring DHCP scope Option 66 (TFTP server) and Option 42 (NTP server) delivers unicast IPv4 addresses directly to endpoints during initial DHCP address leasing. Alternatively, ensuring `ip forward-protocol udp` rules allow UDP broadcast translation for ports 69 and 123 allows legacy broadcast discovery to reach centralized servers.
Step-by-Step Solution
Key Concept
DHCP Relay (IP Helper) Operations and Service Option Configurations