Feel_For_YouACL დაადე WiFi-ს interface vlan-ს in-ზე. მაგალითად:
interface Vlan10
description Physical LAN
ip address 192.168.1.1 255.255.255.0
ip nat inside
end
interface Vlan15
description WIFI SUBNET
ip address 10.0.0.1 255.255.255.0
ip nat inside
end
ip access-list extended DENY_LAN
deny ip any 192.168.1.0 0.0.0.255
permit ip any any
Router#conf t
Router(config)#interface Vlan15
Router(config-if)#ip access-group DENY_LAN in
Router(config-if)#end
Router#wr