Hello,
We have a setup of Nexus 93180YC-EX running running 7.0(3)I7(6) OS version. On one of the VLAN/VXLAN we want to limit communication between hosts.
Host should be reachable only from outside network, but inside VLAN only communication with Anycast gateway should be allowed.
To achieve that, following config was applied ( MAC aaaa.bbbb.cccc in this case is distributed anycast gateway MAC):
mac access-list ACL-NETWORK
10 permit aaaa.bbbb.cccc 0000.0000.0000 any #Allow any traffic from anycast gateway
20 permit any aaaa.bbbb.cccc 0000.0000.0000 #Allow any traffic to anycast gateway
30 permit any ffff.ffff.ffff 0000.0000.0000 #Allow direct broadcast for ARP
statistics per-entry
vlan access-map VACL-NETWORK 10
match mac address ACL-NETWORK
action forward
vlan filter VACL-NETWORK vlan-list 1695
This configuration works, but I‘ve noted that if hosts still have ARP cache, or configured static ARP entries, they able to communicate within VLAN. Issue does not depend on whenever devices connected to same switch, or the VXLAN between different LEAF‘s used.
Am I missing something in configuration?
Thank you in advance,
Alex