I have a few VLANs across a pair of 8212s and a 5412.
Specifically I have a LAN vlan, 23 and a server VLAN, 45 that I am trying to lock down to a few specific IPs
So I can add a standard access list:
ip access-list standard "45-out"
10 permit 172.23.11.61 0.0.0.0
11 permit 172.23.11.82 0.0.0.0
and apply this to vlan 45 on the way out
vlan 45 ip access-group 45-out out
however with this applied, VLAN 45 cannot see anything other than those 2 hosts.
What I would like is for VLAN 45 to be able to route anywhere, but only for some specific hosts to see machines on VLAN 45.
What am I missing?
Thanks for any help
Tom