An enterprise network administrator configures Dynamic ARP Inspection (DAI) on VLAN 10 using the command `ip arp inspection vlan 10`. Host devices dynamically receiving IPv4 configuration via DHCP operate without issue. However, a critical server connected to access switchport GigabitEthernet0/2 in VLAN 10 is configured with a static IPv4 address () and MAC address (). Network telemetry indicates that all network traffic from this server is dropped because DAI marks its ARP packets as invalid. Which configuration step correctly resolves the ARP packet drop for this static host while maintaining active DAI protection on VLAN 10?
- Define an ARP access list matching the server's IP and MAC address, then apply it to VLAN 10 using the `ip arp inspection filter` command.Cevap
- BConfigure `switchport port-security mac-address sticky 0011.2233.4455` on interface GigabitEthernet0/2 without saving the running-config to startup-config.
- CReassign interface GigabitEthernet0/2 to an unused native VLAN so untagged ARP frames bypass the switch DAI inspection engine.
- DConfigure the `ip helper-address` command on interface GigabitEthernet0/2 pointing to the enterprise DHCP server address.
Cevap
Define an ARP access list matching the server's IP and MAC address, then apply it to VLAN 10 using the `ip arp inspection filter` command.
Dynamic ARP Inspection (DAI) intercepts and validates all ARP packets on untrusted switch interfaces against the DHCP snooping binding database. Statically addressed hosts do not use DHCP and therefore lack entries in this database, causing DAI to discard their ARP traffic. To resolve this issue without disabling DAI, an administrator must create an ARP access list (`arp access-list`) defining the static IP and MAC address pairing, and associate it with the VLAN using `ip arp inspection filter <acl-name> vlan <vlan-id>`.
Adım Adım Çözüm
Anahtar Kavram
Dynamic ARP Inspection (DAI) Static ARP Access List Filtering