Turgon wrote: » One for the floor! I have been looking at VLAN filter today but didnt get much time on it. The objective is to allow devices in a VLAN to be able to access only what they should access and drop the rest. I wanted the devices in the VLAN to be able to telnet one another but that didnt come off. I played with a few ACL statements. Assume devices are in subnet 10.1.1.x If anyone has any insights it would most welcome. Will try and get at it tomorrow if time allows.
ConstantlyLearning wrote: » Good article.VLAN Access Control Lists (VACLs) Tier 1 - CCIE Blog I did up a lab there and it worked fine. (To deny ICMP traffic from 10.1.1.0 to 10.1.1.0 and allow everything else) 2 hosts connected to a 3550 on vlan 1. On the 3550 I created an access list: access-list 100 permit ICMP 10.1.1.0 0.0.0.255 10.1.1.0 0.0.0.255 I then created the access-map to drop anything matching the access-list and to allow (forward) anything else. Then applied the access-map to vlan 1 Tested and it worked fine. What did you try to do exactly Turgon?
Turgon wrote: » The VLAN concerned is secured in terms of what it can connect to and what can connect to it.
CiskHo wrote: » GJ! ^Sounds like a working VACL to me!