I am trying to drop MNDP packets in a bridge. This is the setup:
Code: Select all
A <-> ether3 B ether1 <-> C
Code: Select all
/interface bridge port
add bridge=bridge hw=no interface=ether1
add bridge=bridge hw=no interface=ether3
/interface bridge filter
add action=log chain=forward dst-port=5678 ip-protocol=udp mac-protocol=ip
add action=drop chain=forward dst-port=5678 ip-protocol=udp mac-protocol=ip
What am I doing wrong? How can I drop those packets?
Thanks, Hendrik