How to drop MNDP packets?
Posted: Mon Nov 16, 2020 12:51 pm
Hi,
I am trying to drop MNDP packets in a bridge. This is the setup:
"B" has a bridge with ether1 and ether3, because it needs to be transparent for most traffic. But I don't want to forward MNDP packets between A and C. So that's what I have on B:
Unfortunately, A still can see C and vice versa. The log-rule shows the packets. If I place the log-role after the drop-rule, then I don't see the packets in the log of B, but A and C still can see each other.
What am I doing wrong? How can I drop those packets?
Thanks, Hendrik
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