A network engineer provisions a new subinterface `GigabitEthernet0/0.40` on a branch router to serve an isolated IoT subnet (). Devices connected to VLAN 40 are unable to reach external resources and auto-assign link-local IPv4 addresses in the range. A terminal capture on the router shows the following configuration:
text
interface GigabitEthernet0/0.10
description Corporate_Users
encapsulation dot1Q 10
ip address 172.16.10.1 255.255.255.0
ip helper-address 10.10.10.50
!
interface GigabitEthernet0/0.40
description IoT_Devices
encapsulation dot1Q 40
ip address 172.16.40.1 255.255.255.0
Existing client workstations on `GigabitEthernet0/0.10` receive leases dynamically from the central DHCP server at without issue. Which configuration change on the branch router will resolve the IP addressing failure for VLAN 40?
- Add the command `ip helper-address 10.10.10.50` under the `GigabitEthernet0/0.40` subinterface interface configuration mode.Answer
- BReconfigure `GigabitEthernet0/0.40` to use `encapsulation dot1Q 10` so it can share the existing DHCP relay agent setup.
- CConfigure the central DHCP server to enable APIPA relaying for unconfigured subinterfaces.
- DIncrease the usable host capacity on `GigabitEthernet0/0.10` to include the network range.