Link to home
Start Free TrialLog in
Avatar of JesusFreak42
JesusFreak42

asked on

How to Creat a an ACL on a VLAN that isolates iton a 6500 Cisco Chassis

I have a VLAN that I want to completely isolate. How do I make an ACL to do that?
ASKER CERTIFIED SOLUTION
Avatar of Don Johnston
Don Johnston
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
If you want to completely isolate a VLAN do not create an SVI. If there is no router within the VLAN traffic cannot end up in another network segment.

If you just need to deny access to certain network ranges use ACLs

//Define an extended access-list with name ACL_VLAN100
Router(config)#ip access-list extended ACL_VLAN100
//Permit Traffic from 192.168.1.0/24 to 192.168.2.0/24
Router(config-ext-nacl)#permit ip 192.168.1.0 0.0.0.255 192.168.2.0 0.0.0.255

Router(config)#interface vlan100
//Apply ACL_VLAN100 to SVI inbound. Traffic coming from VLAN100 is being inspected
Router(config-if)#ip access-group ACL_VLAN100 in

Open in new window


Keep in mind that there is an implicit deny any any hidden at the end of the ACL which means you have to explicitly allow traffic to pass.
Avatar of JesusFreak42
JesusFreak42

ASKER

Simplest solution and works.