Hello,
If you run a "show igmp snooping cache" Do you see a lot of ports reporting on the following addresses?
224.0.0.251 (bonjour/MDNS)
239.255.255.250 (SSDP)
239.255.255.253 (SLP)
224.0.0.252 (LLMNR)
If so, we may need to block some of that traffic, if it isn't being used.
Vi block_mdns.pol
entry slp {
if {
destination-address 239.255.255.253/32;
} then {
deny;
count slp;
}
}
entry bonjour-mdns {
if {
destination-address 224.0.0.251/32;
} then {
deny;
count bonjour-mdns;
}
}
entry llmnr {
if {
destination-address 224.0.0.252/32;
} then {
count llmnr;
deny;
}
}
entry ssdp {
if {
destination-address 239.255.255.250/32;
} then {
count ssdp;
deny;
}
}
:wq to exit
apply to the edge ports on ingress to prevent the packets from even coming into the network at all.
Thanks
Brad