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 Juniper Router RTR Security Technical Implementation Guide

V-217090

CAT II (Medium)

The Juniper 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-217090r878059_rule

STIG

Juniper Router RTR Security Technical Implementation Guide

Version

V3R2

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.

Verify that a group policy has been configured to filter IGMP join requests as shown in the example below.

protocols {
    igmp {
        interface ge-1/0/1.0 {
            group-policy MULTICAST_JOIN_POLICY;
        }
    }

Verify that the policy only allows join requests for those sources that have been approved.

policy-options {
    …
    …
    …
    }
    policy-statement MULTICAST_JOIN_POLICY {
        term BAD_SOURCES {
            from {
                source-address-filter x.x.x.x/32 exact;
                source-address-filter x.x.x.x/24 orlonger;
            }
            then reject;
        }
        …
        …
        …
        }
        term ALLOW_APPROVED {
            then accept;
        }
    }

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

If the DR is not filtering IGMP or MLD report messages to only allow joins for approved sources, 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.

Configure a multicast join policy to filter unauthorized multicast sources.

[edit policy-options policy-statement MULTICAST_JOIN_POLICY]
set term BAD_SOURCES from source-address-filter x.x.x.x/32 exact
set term BAD_SOURCES from source-address-filter x.x.x.x/24 orlonger
set term BAD_SOURCES then reject
set term ALLOW_APPROVED then accept

 Apply the policy to all interfaces enabled for IGMP.

[edit protocols igmp]
set interface ge-1/0/1.0 group-policy MULTICAST_JOIN_POLICY