A network administrator is implementing Layer 2 security on VLAN 30 of a Cisco Catalyst switch. The VLAN contains both dynamic DHCP clients and devices with statically configured IP addresses. DHCP Snooping is active on VLAN 30.
To allow traffic from the static IP devices that do not exist in the DHCP snooping binding database, the administrator creates an ARP Access Control List (ACL) named `STATIC_DEVICES` matching the static MAC and IP pairs, and executes the following command:
`Switch(config)# ip arp inspection filter STATIC_DEVICES vlan 30`
Immediately after applying this command, static IP hosts communicate successfully, but all dynamic DHCP clients on VLAN 30 lose connectivity because their ARP packets are dropped by Dynamic ARP Inspection (DAI).
Which configuration modification must be made to permit ARP traffic from both static IP devices and dynamic DHCP clients?
- Re-enter the command with the `static` keyword: `ip arp inspection filter STATIC_DEVICES vlan 30 static`.Cevap
- BSave the configuration using `copy running-config startup-config` and reload the switch to force DAI to populate static entries into the binding database.
- CConfigure `ip dhcp snooping trust` on all host access ports on VLAN 30 to bypass DAI validation.
- DAdd `ip arp inspection validate src-mac dst-mac ip` in global configuration mode to bypass binding database checks.