We probably are a lot using an all bridged network to connect our clients.
we use pppoe to connect clients to our MK OS pppoe concetrator and gateway.
we are having problems with storms that are blocking the functioning of the network.
I suppose that with the correct rules on /interface bridge filter we can limit the broadcast packets, avoid ip storm and/or arp storms etc..
My idea is to allow pppoe and the network of my equipment (192.168.x.x) and to drop all other packets.
0 chain=forward mac-protocol=ip src-address=192.168.5.0/24 action=accept
1 chain=forward mac-protocol=ip dst-address=192.168.5.0/24 action=accept
2 chain=forward mac-protocol=0x8863 action=accept
3 chain=forward mac-protocol=0x8864 action=accept
4 chain=forward action=drop
But this way it dont work correctly, pings on my network sometimes dont work at all and I am not sure that I stop everything. In /ip firewall filter forward I can still see packets that are not pppoe nor 192.168.5.x
anybody else with same situation ?