A network engineer is configuring a Cisco IOS router (R1) to act as a DHCP relay agent servicing clients across multiple subnets. Central DHCP services reside at IP address 172.16.100.5. The subinterface configuration on R1 is as follows:
text
interface GigabitEthernet0/0.10
encapsulation dot1Q 10
ip address 10.1.10.1 255.255.255.0
ip helper-address 172.16.100.5
!
interface GigabitEthernet0/0.20
encapsulation dot1Q 20
ip address 10.1.20.1 255.255.255.0
!
interface GigabitEthernet0/1
description Egress link towards DHCP Server
ip address 172.16.100.1 255.255.255.0
Clients connected to VLAN 10 successfully receive IP addresses, while clients on VLAN 20 fail to obtain lease parameters. Which TWO statements accurately explain the operation of the DHCP relay agent or the required configuration changes?
- The command ip helper-address 172.16.100.5 must be configured under interface GigabitEthernet0/0.20 so that DHCP broadcasts from VLAN 20 clients are relayed to the server.Cevap
- When forwarding a DHCP Discover packet from VLAN 10, the router inserts its local subinterface IP address (10.1.10.1) into the GIADDR field of the DHCP header.Cevap
- CThe command ip helper-address 172.16.100.5 should be removed from subinterface GigabitEthernet0/0.10 and applied under GigabitEthernet0/1, as helper addresses must be positioned on the egress interface pointing toward the server.
- DThe router converts client DHCP Discover broadcast frames into Layer 2 Ethernet broadcast frames before forwarding them out GigabitEthernet0/1 to reach all devices in the server broadcast domain.