Hello.
I have a interface (the standard interface) 'LAN'. My smartphone and computer are connected via Wifi to this interface. How can I prevent forwarding packets between clients that are connected to this interface. For example:
Computer 1 with IP 192.168.1.3 listens on port 6789
On Computer 2 I can access Computer 1 on 192.168.1.3:6789 or I can ping this IP.
I don't want it to be possible that computers connected on the same interface can communicate with each other. How can I prevent this?
Setting up a firewall rule:
config rule
option name 'testrule'
option src 'lan'
option dest 'lan'
option proto 'all'
option target 'DROP'
option enabled '1'
did not work.