UCF STIG Viewer Logo

The MPLS router with RSVP-TE enabled must be configured with message pacing to adjust maximum burst and maximum number of RSVP messages to an output queue based on the link speed and input queue size of adjacent core routers.


Overview

Finding ID Version Rule ID IA Controls Severity
V-216609 CISC-RT-000610 SV-216609r531085_rule Low
Description
RSVP-TE can be used to perform constraint-based routing when building LSP tunnels within the network core that will support QoS and traffic engineering requirements. RSVP-TE is also used to enable MPLS Fast Reroute, a network restoration mechanism that will reroute traffic onto a backup LSP in case of a node or link failure along the primary path. When there is a disruption in the MPLS core, such as a link flap or router reboot, the result is a significant amount of RSVP signaling, such as "PathErr" and "ResvErr" messages that need to be sent for every LSP using that link. When RSVP messages are sent out, they are sent either hop by hop or with the router alert bit set in the IP header. This means that every router along the path must examine the packet to determine if additional processing is required for these RSVP messages. If there is enough signaling traffic in the network, it is possible for an interface to receive more packets for its input queue than it can hold, resulting in dropped RSVP messages and hence slower RSVP convergence. Increasing the size of the interface input queue can help prevent dropping packets; however, there is still the risk of having a burst of signaling traffic that can fill the queue. Solutions to mitigate this risk are RSVP message pacing or refresh reduction to control the rate at which RSVP messages are sent. RSVP refresh reduction includes the following features: RSVP message bundling, RSVP Message ID to reduce message processing overhead, Reliable delivery of RSVP messages using Message ID, and summary refresh to reduce the amount of information transmitted every refresh interval.
STIG Date
Cisco IOS Router RTR Security Technical Implementation Guide 2022-09-14

Details

Check Text ( C-17844r287199_chk )
Review the router configuration to determine RSVP messages are rate limited.

Step 1: Determine if MPLS TE is enabled globally and at least one interface as shown in the example below.

mpls traffic-eng tunnels



interface GigabitEthernet0/2
ip address x.x.x.x 255.255.255.0
mpls traffic-eng tunnels
mpls ip

Step 2: If MPLS TE is enabled, verify that message pacing is enabled.

ip rsvp signaling rate-limit period 30 burst 9 maxsize 2100 limit 50

Note: The command ip rsvp msg-pacing has been deprecated by the command ip rsvp signaling rate-limit.

If the router with RSVP-TE enabled does not rate limit RSVP messages based on the link speed and input queue size of adjacent core routers, this is a finding.
Fix Text (F-17840r287200_fix)
Configure the router to rate limit RSVP messages per interface as shown in the example.

R2(config)#ip rsvp signaling rate-limit burst 9 maxsize 2100 period 30 limit 50