STIGhubSTIGhub
STIGsSearchCompare

STIGhub

A free tool to search and browse the entire DISA STIG library. Saves up to 75% in security compliance research time.

Navigation

  • Browse STIGs
  • Search
  • Compare Versions

Resources

  • About
  • Release Notes
  • VPAT
  • DISA STIG Library
STIGs updated 5 hours ago
Powered by Pylon
© 2026 Beacon Cloud Solutions, Inc. All rights reserved.
← Back to Dell OS10 Switch Router Security Technical Implementation Guide

V-269858

CAT II (Medium)

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

Rule ID

SV-269858r1137911_rule

STIG

Dell OS10 Switch Router Security Technical Implementation Guide

Version

V1R2

CCIs

CCI-001414

Discussion

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 routers 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.

Check Content

This requirement is not applicable for the DODIN Backbone.

Review the multicast topology diagram and determine if router interfaces are enabled for IPv4 or IPv6 multicast routing.

If the router is enabled for multicast routing, verify all interfaces enabled for PIM have a neighbor filter bound to the interface. The neighbor filter must only accept PIM control plane traffic from the documented PIM neighbors.

Step 1: Verify that a PIM neighbor filter has been configured.

!
ip access-list PIM_NBR_FILTER
 seq 10 permit ip 10.10.10.2/32 any
 
Step 2: Verify all interfaces enabled for PIM have the neighbor filter bound to the interface.

!
interface vlan100
 no shutdown
 ip pim sparse-mode
 ip pim neighbor-filter PIM_NBR_FILTER

If PIM neighbor filters are not bound to all interfaces that have PIM enabled, this is a finding.

Fix Text

This requirement is not applicable for the DODIN Backbone.

Configure neighbor filters to only accept PIM control plane traffic from documented PIM neighbors. Bind neighbor filters to all PIM enabled interfaces.

Step 1: Configure an ACL that only permits documented neighbors.

OS10(config)# ip access-list PIM_NBR_FILTER
OS10(config-ipv4-acl)# permit ip 10.10.10.2/32 any

Step 2: Apply the ACL to the PIM interfaces.

OS10(config)# interface vlan 100
OS10(conf-if-vl-100)# ip pim neighbor-filter PIM_NBR_FILTER