Hi,
I have a server on 192.168.1.0/24 subnet with IP 192.168.1.2 and I want only my PC 192.168.1.10 allow to access the server, but not other host on the same network.
server + my PC + other host -> switch -> RB1000U -> internet
the firewall on the RB1000U will not work if the hosts are on the same subnet with the rules as below:
ip firewall filter add chain=forward src-address=192.168.1.10 dst-address=192.168.1.2 action=accept
ip firewall filter add chain=forward src-address=192.168.1.0/24 dst-address=192.168.1.2 action=drop
Just wondering is there any way that I can get this work?
Thanks.