UCF STIG Viewer Logo

The Cisco multicast switch must be configured to bind a Protocol Independent Multicast (PIM) neighbor filter to interfaces that have PIM enabled.


Overview

Finding ID Version Rule ID IA Controls Severity
V-221133 CISC-RT-000800 SV-221133r622190_rule Medium
Description
PIM is a routing protocol used to build multicast distribution trees for forwarding multicast traffic across the network infrastructure. PIM traffic must be limited to only known PIM neighbors by configuring and binding a PIM neighbor filter to those interfaces that have PIM enabled. If a PIM neighbor filter is not applied to those interfaces that have PIM enabled, unauthorized switches can join the PIM domain, discover and use the rendezvous points, and also advertise their rendezvous points into the domain. This can result in a denial of service by traffic flooding or result in the unauthorized transfer of data.
STIG Date
Cisco NX-OS Switch RTR Security Technical Implementation Guide 2021-03-29

Details

Check Text ( C-22848r409888_chk )
Step 1: Verify all interfaces enabled for PIM have a neighbor policy bound to the interface as shown in the example below:

interface Ethernet2/1
no switchport
ip address 10.1.12.1/24
ip pim sparse-mode
ip pim neighbor-policy prefix-list PIM_NEIGHBOR
no shutdown

Step 2: Review the configured prefix list for filtering PIM neighbors as shown in the example below:

ip prefix-list PIM_NEIGHBOR seq 5 permit 10.1.12.2/32
ip prefix-list PIM_NEIGHBOR seq 10 deny 0.0.0.0/0 le 32

If PIM neighbor ACLs are not bound to all interfaces that have PIM enabled, this is a finding.
Fix Text (F-22837r409889_fix)
Configure neighbor prefix lists to only accept PIM control plane traffic from documented PIM neighbors.

Step 1: Configure prefix list for each PIM neighbor.

SW1(config)# ip prefix-list PIM_NEIGHBOR seq 5 permit 10.1.12.2/32
SW1(config)# ip prefix-list PIM_NEIGHBOR deny 0.0.0.0/0 le 32

Step 2: Apply a prefix to all interfaces enabled for PIM.

SW1(config)# int e2/1
SW1(config-if)# ip pim neighbor-policy prefix-list PIM_NEIGHBOR
SW1(config-if)# end