Hi,
I wrote this rule in firewall, and for whatever reason I can get access from Guest zone to these port in LAN.
config rule
option src 'guest_zone'
option dest 'lan'
option name 'Guest2LanBlock'_NotWorking
option proto 'tcp'
option target 'DROP'
option dest_port '777 10000'
However, this rule working:
option src 'guest_zone'
option dest *
option name 'Guest2LanBlock_OK'
option proto 'tcp'
option target 'DROP'
option dest_port '777 10000'
This rule, which in theory should completely prevent access from guest zone to LAN don't have any effect:
config rule
option src 'guest_zone'
option dest 'lan'
option name 'Guest2LANdis'
option target 'DROP'
How to solve this problem?
Thanks in advance for any suggestion(s).
(Last edited by LinuksGuru on 29 Aug 2017, 15:03)