hello,
i have basic setup, one wan one lan interface.
What i am trying to do is to prevent specific internal ip from seeing other internal ips, but able to access internet. so:
0 chain=input action=accept src-address=192.168.0.151
dst-address=192.168.0.99
here i allow specific ip to acces router itself.
1 chain=forward action=drop src-address=192.168.0.151
dst-address=192.168.0.0/24
here i want that specific ip not to access 192.168.0.xxx.
what is wrong here?