Information
A traffic storm occurs when packets flood a VPLS bridge, creating excessive traffic and degrading network performance. Traffic storm control prevents VPLS bridge disruption by suppressing traffic when the number of packets reaches configured threshold levels. Traffic storm control monitors incoming traffic levels on a port and drops traffic when the number of packets reaches the configured threshold level during any one-second interval.
Solution
Configure storm control for each CE-facing interface deploying VPLS bridge domains. Base the suppression threshold on expected traffic rates plus some additional capacity.
Configure a policer to rate limit traffic providing storm control in accordance with organizational requirements.
set firewall policer <policer name> if-exceeding bandwidth-limit <value> burst-size-limit <value>
set firewall policer <policer name> then discard
Configure the filter providing storm control to specify traffic types and rate limit broadcast, multicast, and unknown unicast storms.
set firewall family vpls filter <filter name> term <term name> from traffic-type broadcast
set firewall family vpls filter <filter name> term <term name> then policer <policer name> accept
set firewall family vpls filter <filter name> term <term name> from traffic-type multicast
set firewall family vpls filter <filter name> term <term name> then policer <policer name> accept
set firewall family vpls filter <filter name> term <term name> from traffic-type unknown-unicast
set firewall family vpls filter <filter name> term <term name> then policer <policer name> accept
Apply the storm control filter to all CE-facing instances deploying VPLS bridge domains.
set routing-instances <instance name> forwarding-options family vpls flood input <filter name>