Hello,
For VPLS on MX, You need to use VPLS flood filter with appropriate policer(s):
aarseniev@mx# show firewall family vpls filter flood-filter-10M
term broadcast-traffic {
from {
traffic-type broadcast;
}
then {
policer POLICER-BUM;
accept;
}
}
term multicast-traffic {
from {
traffic-type multicast;
}
then {
policer POLICER-BUM;
accept;
}
}
term unknown-unicast-traffic {
from {
traffic-type unknown-unicast;
}
then {
policer POLICER-BUM;
accept;
}
}
[edit]
aarseniev@mx# show firewall policer POLICER-BUM
if-exceeding {
bandwidth-limit 10m;
burst-size-limit 10m;
}
then discard;
routing-instances {
<RI-NAME> {
forwarding-options {
family vpls {
flood {
input flood-filter-10M;
}
}
}
}
}
HTH
Thanks
Alex
#MX480BroadcastSolution