It seems that I can simply allow only one-way traffic between the internet port (ether1) and the two local ports (ether2 and ether3) thusly:
Code: Select all
/ip firewall filter
add chain=forward in-bridge-port=ether2 out-interface=ether1 action=accept
add chain=forward in-bridge-port=ether3 out-interface=ether1 action=accept
add chain=forward in-interface=ether1 action=accept
add chain=forward action=drop
I've scoured the forum, as well as looked through the documentation, but I have found no details on these options.
Pointers anyone?