I have created a VLAN that I only want certain subnets or ranges of address to access:
ip access-list standard "CAMSEC"
10 permit 10.10.10.0 0.0.0.255
15 permit 10.82.20.0 0.0.0.255
20 permit 10.90.0.0 0.0.255.255
25 permit 10.86.0.0 0.0.255.255
40 deny 0.0.0.0 255.255.255.255
exit
I then applien this to the particular VLAN with the "ip access-group CAMSEC in" command, however traffic from any subnet within my network is still allowed. Do I need an extended access list, and if so how would I create and apply this to the VLAN?
#VLAN#ACLs