Aby zablokować ruch multicastów na danym porcie należy:
1. Upewnić się, że port wychodzący i przychodzący są połączone w jednym bridge'u.
Bridge -> [zakładka] Ports -> {ether1,ether2}
2. Dodać filtr w Bridge'ach blokujący pakiety przychodzące i wychodzące.
Bridge -> [zakładka] Filters -> [+] -> -> Chain: forward -> Interfaces -> In. interface: ether2 -> [zakładka] Advanced -> Packet type: multicast -> [zakładka] Action -> Action: block
Bridge -> [zakładka] Filters -> [+] -> -> Chain: forward -> Interfaces -> Out. interface: ether2 -> [zakładka] Advanced -> Packet type: multicast -> [zakładka] Action -> Action: block
Export z mikrotika
/interface bridge
add name=bridge_LAN
/interface bridge filter
add action=drop chain=forward in-interface=\
ether2 packet-type=multicast
add action=drop chain=forward out-interface=\
ether2 packet-type=multicast
/interface bridge port
add bridge=bridge_LAN interface=ether1
add bridge=bridge_LAN interface=ether2
http://u-to-l.blogspot.com/2012/06/dealing-with-multicast-traffic-on.html