SV-283863r1203838_rule
V-283863
SRG-NET-000364-RTR-000115
NOKI-RT-000450
CAT II
10
Configure the DR to filter the IGMP and MLD report messages to allow hosts to join only multicast groups from sources that have been approved, as shown in the example below:
Create Prefix-List IPv4 Multicast Source:
- configure router policy-options
- config>router>policy-options# begin
- config>router>policy-options# prefix-list Multicast-Source-IPv4
- config>router>policy-options>prefix-list$ prefix 172.200.200.2/32 exact
- config>router>policy-options>prefix-list$ exit
Create Prefix-List IPv6 Multicast Source:
- configure router policy-options
- config>router>policy-options# begin
- config>router>policy-options# prefix-list Multicast-Source-IPv6
- config>router>policy-options>prefix-list$ prefix 2001:acad:1234:200::2/128 exact
- config>router>policy-options>prefix-list$ exit
Create a policy statement for IGMP:
- config>router>policy-options# policy-statement IMPORT_IGMP_JOIN
- config>router>policy-options>policy-statement$ entry 10
- config>router>policy-options>policy-statement>entry# from prefix-list "Multicast-Source-IPv4"
- config>router>policy-options>policy-statement>entry$ action accept
- config>router>policy-options>policy-statement>entry>action$ exit
- config>router>policy-options>policy-statement>entry$ exit
- config>router>policy-options>policy-statement$ default-action drop
- config>router>policy-options>policy-statement>default-action$ exit
- config>router>policy-options>policy-statement$ exit
- config>router>policy-options# commit
Create a policy statement for MLD:
- config>router>policy-options# policy-statement IMPORT_MLD_JOIN
- config>router>policy-options>policy-statement$ entry 10
- config>router>policy-options>policy-statement>entry$ from prefix-list "Multicast-Source-IPv6"
- config>router>policy-options>policy-statement>entry$ action accept
- config>router>policy-options>policy-statement>entry>action$ exit
- config>router>policy-options>policy-statement>entry$ exit
- config>router>policy-options>policy-statement$ default-action drop
- config>router>policy-options>policy-statement>default-action$ exit
- config>router>policy-options>policy-statement$ exit
- config>router>policy-options# commit
- config>router>policy-options# exit all
Apply import policy to the IGMP and MLD interface:
- configure router igmp interface "TO-CE" import "IMPORT_IGMP_JOIN"
- configure router mld interface "TO-CE" import "IMPORT_MLD_JOIN"
Review the configuration of the DR to verify it is filtering IGMP and MLD report messages, allowing hosts to only join multicast groups from sources that have been approved.
Verify the import policy is applied on the IGMP and MLD interface using the command below:
- show router igmp interface "TO-CE" detail | match "Import-Policy"
Import-Policy : IMPORT_IGMP_JOIN Subnet Check : Enabled
- show router mld interface "TO-CE" detail | match "Import-Policy"
Import-Policy : IMPORT_IGMP_JOIN
If the DR is not filtering IGMP and MLD report messages, this is a finding.
V-283863
False
NOKI-RT-000450
Review the configuration of the DR to verify it is filtering IGMP and MLD report messages, allowing hosts to only join multicast groups from sources that have been approved.
Verify the import policy is applied on the IGMP and MLD interface using the command below:
- show router igmp interface "TO-CE" detail | match "Import-Policy"
Import-Policy : IMPORT_IGMP_JOIN Subnet Check : Enabled
- show router mld interface "TO-CE" detail | match "Import-Policy"
Import-Policy : IMPORT_IGMP_JOIN
If the DR is not filtering IGMP and MLD report messages, this is a finding.
M
5746