A network engineer is troubleshooting IP configuration failures on a newly provisioned subinterface for host workstations on VLAN 40 (). Client devices on this VLAN are unable to communicate with remote subnets and consistently auto-assign Automatic Private IP Addressing (APIPA) addresses in the range of . Packet captures performed on the router interface `Gi0/0.40` reveal that incoming `DHCPDISCOVER` broadcast frames from clients are arriving at the router interface, but no corresponding unicast packets are forwarded to the centralized DHCP server located at .
The subinterface configuration on the router is displayed below:
text
interface GigabitEthernet0/0.40
encapsulation dot1Q 40
ip address 10.40.16.1 255.255.252.0
Which of the following identifies the root cause of this issue and the correct command required on interface `Gi0/0.40` to resolve host connectivity?
- The subinterface lacks a relay configuration to bridge Layer 2 broadcasts across subnets; configure `ip helper-address 10.10.2.100` on interface `Gi0/0.40`.Answer
- BThe DHCP scope is depleted on the server; increase the pool size on the server by modifying the subnet mask to `255.255.240.0`.
- CThe default gateway IP address resides on an invalid subnet boundary; change the interface IP configuration to `10.40.16.1 255.255.255.0`.
- DThe router interface is blocking DHCP packets due to a missing default route; execute `ip route 0.0.0.0 0.0.0.0 10.10.2.100` on the subinterface.