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-269899

CAT II (Medium)

The Dell OS10 multicast Designated Router (DR) must be configured to filter the Internet Group Management Protocol (IGMP) and Multicast Listener Discovery (MLD) Report messages to allow hosts to join a multicast group only from sources that have been approved by the organization.

Rule ID

SV-269899r1052082_rule

STIG

Dell OS10 Switch Router Security Technical Implementation Guide

Version

V1R2

CCIs

CCI-002403

Discussion

Real-time multicast traffic can entail multiple large flows of data. Large unicast flows tend to be fairly isolated (i.e., someone doing a file download here or there), whereas multicast can have broader impact on bandwidth consumption, resulting in extreme network congestion. Hence, it is imperative that there is multicast admission control to restrict which multicast groups hosts are allowed to join via IGMP or MLD.

Check Content

Review the configuration of the DR to verify that it is filtering IGMP or MLD report messages, allowing hosts to only join multicast groups from sources that have been approved.

Note: This requirement is only applicable to Source Specific Multicast (SSM) implementation.

Step 1: Verify that SSM is in use. If not, this requirement is not applicable.

!
ip access-list ssm-1
 seq 10 permit ip any 236.0.0.0/8
 
!
ip pim ssm-range ssm-1

Step 2: Verify that each interface applies an appropriate inbound IGMP filter that permits or denies IGMP messages.

!
interface vlan100
 no shutdown
 ip access-group IGMP_FILTER in
 
!
ip access-list IGMP_FILTER
 seq 10 deny 2 224.0.0.22  239.8.0.0/16 ttl eq 1
 seq 20 permit 2 224.0.0.0/24 238.5.0.0/16
 seq 30 permit ip any any

If the DR is not filtering IGMP or MLD report messages, this is a finding.

Fix Text

Configure the DR to filter the IGMP and MLD report messages to allow hosts to join only those multicast groups from sources that have been approved.

OS10(config)# ip access-list IGMP_FILTER
OS10(config-ipv4-acl)# deny 2 224.0.0.22 239.8.0.0/16 ttl eq 1
OS10(config-ipv4-acl)# permit 2 224.0.0.0/24 238.5.0.0/16
OS10(config-ipv4-acl)# permit ip any any

OS10(config)# interface vlan 100
OS10(conf-if-vl-100)# ip access-group IGMP_FILTER in