DISA STIGS Viewer

The Juniper PE router providing Virtual Private LAN Services (VPLS) must be configured to have traffic storm control thresholds on CE-facing interfaces.

Overview

Finding ID Version Rule ID IA Controls Severity
V-254005 JUEX-RT-000330 SV-254005r844048_rule   Medium
Description
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.
STIG Date
Juniper EX Series Switches Router Security Technical Implementation Guide 2024-06-10

Details

Check Text (C-57457r844046_chk)
Review the router configuration to verify that storm control is enabled on CE-facing interfaces deploying VPLS.

Verify that a stateless firewall filter has been applied to each VPLS routing instances.

[edit]
routing-instances {
<name> {
forwarding-options {
family vpls {
flood {
input <filter name>;
}
}
}
}
}

Verify the filter defines traffic types associated with storm control (i.e., broadcast, multicast, and unknown unicast storms).

firewall {
family vpls {
filter <filter name> {
term <term name> {
from {
traffic-type broadcast;
}
then {
policer <policer name>;
accept;
}
}
term <term name> {
from {
traffic-type multicast;
}
then {
policer <policer name>;
accept;
}
}
term <term name> {
from {
traffic-type unknown-unicast;
}
then {
policer <policer name>;
accept;
}
}
}
}
}

Verify that the policer rate limits in accordance with local requirements.

firewall {
policer <policer name> {
if-exceeding {
bandwidth-limit <value>;
burst-size-limit <value>;
}
then discard;
}
}

Note: Only EX9200-series devices currently support VPLS.

If storm control is not enabled for broadcast traffic, this is a finding.
Fix Text (F-57408r844047_fix)
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>