UCF STIG Viewer Logo

The administrator must ensure that boundaries are established at the enclave perimeter for all administrative scoped multicast traffic.


Overview

Finding ID Version Rule ID IA Controls Severity
V-30579 NET-MCAST-009 SV-40318r1_rule Medium
Description
A scope zone is an instance of a connected region of a given scope. Zones of the same scope cannot overlap while zones of a smaller scope will fit completely within a zone of a larger scope. For example, Admin-local scope is smaller than Site-local scope, so the administratively configured boundary fits within the bounds of a site. According to RFC 4007 IPv6 Scoped Address Architecture (section 5), scope zones are also required to be “convex from a routing perspective”—that is, packets routed within a zone must not pass through any links that are outside of the zone. This requirement forces each zone to be one contiguous island rather than a series of separate islands. As stated in the DoD IPv6 IA Guidance for MO3, “One should be able to identify all interfaces of a zone by drawing a closed loop on their network diagram, engulfing some routers and passing through some routers to include only some of their interfaces.” Administrative scoped multicast addresses are locally assigned and are to be used exclusively by the enterprise network or enclave. Hence, administrative scoped multicast traffic must not cross the perimeter of the enclave in either direction. Admin-local scope could be used to contain multicast traffic to a portion of an enclave or within a site. This can make it more difficult for a malicious user to access sensitive traffic if the traffic is restricted to links that the user does not have access to. Admin-local scope is encouraged for any multicast traffic within a network that is intended for network management as well as control plane traffic that must reach beyond link-local destinations.
STIG Date
Perimeter Router Security Technical Implementation Guide Cisco 2018-11-28

Details

Check Text ( C-39199r1_chk )
An administratively scoped IP multicast region is defined to be a topological region in which there are one or more boundary routers with common boundary definitions. Such a router is said to be a boundary for multicast scoped addresses in the range defined in its configuration. In order to support administratively scoped multicast, a multicast boundary router will drop multicast traffic matching an interface's boundary definition in either direction.

The IPv4 administrative scoped multicast address space is 239/8 which is divided into two scope levels: the Local Scope and Organization Local Scope. The Local Scope range is 239.255.0.0/16 and can expand into the reserved ranges 239.254.0.0/16 and 239.253.0.0/16 if 239.255.0.0/16 is exhausted. The IPv4 Organization Local Scope is 239.192.0.0/14 is the space from which an organization should allocate sub-ranges when defining scopes for private use. This scope can be expanded to 239.128.0.0/10, 239.64.0.0/10, and 239.0.0.0/10 if necessary. The scope of IPv6 multicast packets are determined by the scope value where 4 (ffx4::/16) is Admin-local, 5 (ffx5::/16) is Site-local, and 8 (ffx8::/16) is Organization-local.

Review the perimeter router or multi-layer switch to determine if multicast routing is enabled on any external-facing interface. If enabled, determine if there is a multicast boundary configured on the external-facing interface to ensure that no administrative scope traffic is not allowed into or out of the enclave.

The following examples will establish a multicast boundary on the external-facing interface to ensure that no administrative scoped traffic is allowed into or out of the enclave:

IPv4

ip multicast-routing
!
interface FastEthernet0/1
description DISN CORE facing
ip address 198.18.0.1 255.255.255.0
ip pim sparse-mode
ip multicast boundary MCAST_ADMIN_SCOPED_BOUNDARY
!
ip access-list standard MCAST_ADMIN_SCOPED_BOUNDARY
deny 239.0.0.0 0.255.255.255
permit 224.0.0.0 15.255.255.255
!

Note: The filter used by multicast boundary command will effect multicast traffic outside of the administratively scoped IPv4 multicast space. To allow global multicast traffic to pass by this boundary, ensure that the filter will permit the global address space (224.0.1.0-238.255.255.255) if the enclave has deployed inter-domain multicast routing.

IPv6

ipv6 multicast-routing
!
interface FastEthernet0/1
description DISN CORE facing
ipv6 address 2001:1:0:146::/64 eui-64
ipv6 multicast boundary scope 8

Note: Filtering the scope value of 8 will ensure that any multicast traffic received by the interface in either direction with a scope equal to or less than 8 (organization-local) will be dropped. Hence, all administrative scoped traffic will be dropped while allowing global multicast traffic (scope of 14) to be forwarded for an inter-domain multicast routing deployment.

Fix Text (F-34302r1_fix)
Local Scope range is 239.255.0.0/16 and can expand into the reserved ranges 239.254.0.0/16 and 239.253.0.0/16 if 239.255.0.0/16 is exhausted. The IPv4 Organization Local Scope is 239.192.0.0/14 is defined to be and is the space from which an organization should allocate sub- ranges when defining scopes for private use. The scope of IPv6 multicast packets are determined by the scope value where 4 is Admin-local, 5 is Site-local, and 8 is Organization-local. Configure the necessary boundary to ensure packets addressed to these administratively scoped multicast addresses do not cross the applicable administrative boundaries.