I have 3 physical ports connected together via a bridge to create a single physical network. I fail to block traffic between two IPs using the following firewall rules:
config defaults
option input 'REJECT'
option output 'ACCEPT'
option forward 'REJECT'
option synflood_protect '1'
config zone
option name 'lan'
option input 'ACCEPT'
option output 'ACCEPT'
option forward 'REJECT'
list network 'lan'
config rule
option name 'Block 102 to 108'
option src 'lan'
option dest 'lan'
list proto 'all'
list src_ip '192.168.1.102'
list dest_ip '192.168.1.108'
option target 'REJECT'
Any help would be much appreciated.