An administrator attempts to secure VLAN 20 on a Cisco Catalyst switch by executing the commands `ip dhcp snooping vlan 20` and `ip arp inspection vlan 20`. Access interface GigabitEthernet0/2 is in VLAN 20 and remains in its default untrusted state for both security features. Clients connected to GigabitEthernet0/2 are configured with static IP addresses, but all outgoing ARP packets from these clients are intercepted and dropped by the switch, preventing any network communication. Which root cause explains why Dynamic ARP Inspection (DAI) is dropping this ARP traffic?
- Global DHCP snooping was not activated using the `ip dhcp snooping` command, causing the DHCP binding database to remain unpopulated and DAI to reject all ARP packets on untrusted ports.Cevap
- BPort security was configured with sticky MAC address learning on GigabitEthernet0/2, but the administrator failed to save the running configuration to the startup configuration.
- CThe access port GigabitEthernet0/2 has a native VLAN mismatch with the upstream switch trunk link, causing DAI to inspect ARP frames against the incorrect VLAN context.
- DThe `ip helper-address` command was misconfigured directly on GigabitEthernet0/2 rather than on the Layer 3 Switched Virtual Interface (SVI) for VLAN 20.
Cevap
Global DHCP snooping was not activated using the `ip dhcp snooping` command, preventing the switch from building the DHCP binding database required by Dynamic ARP Inspection (DAI) to validate ARP packets on untrusted ports.
The correct option explains that Dynamic ARP Inspection (DAI) depends directly on the DHCP snooping binding database to inspect ARP packets received on untrusted ports. Enabling DHCP snooping on a VLAN (`ip dhcp snooping vlan 20`) without executing the global `ip dhcp snooping` command leaves DHCP snooping globally disabled. As a result, the switch does not build a binding database. When DAI is enabled on VLAN 20 (`ip arp inspection vlan 20`), it intercepts all ARP packets on untrusted ports; because the binding table is empty and no ARP ACL is defined for static hosts, DAI drops all incoming ARP packets.
Adım Adım Çözüm
Anahtar Kavram
Dynamic ARP Inspection (DAI) reliance on the DHCP Snooping Binding Database and global feature enablement prerequisites.