Hi,
I am creating a VLAN pool, for guest users to access internet only.
How can i deny access to all the local lan VLANs?
My Guest VLAN subnet is 192.168.9.0
So i need to deny access to all the VLANs:
192.168.1.0
192.168.2.0
192.168.3.0
192.168.4.0
192.168.5.0
192.168.6.0
192.168.7.0
192.168.8.0
I have tried the following access-list configuration:
access-list 127 permit ip 192.168.9.0 0.0.0.255 192.168.1.0 0.0.0.7
access-list 127 permit ip 192.168.9.0 0.0.0.255 192.168.9.0 0.0.0.255
access-list 127 deny ip 192.168.9.0 0.0.0.255 192.168.0.0 0.0.7.255
access-list 127 permit ip any any
But it didnt work, as i couldnt ping any local lan ips, nor browse any website.
Thanks