Information
Real-time multicast traffic can entail multiple large flows of data. An attacker can flood a network segment with multicast packets, over-using the available bandwidth and thereby creating a denial-of-service (DoS) condition. Hence, it is imperative that join messages are only accepted for authorized multicast groups.
NOTE: Nessus has provided the target output to assist in reviewing the benchmark to ensure target compliance.
Solution
Configure the RP to filter PIM join messages for any undesirable multicast groups as shown in the example below:
Step 1: Configure a PIM Join filter as shown in the example below:
SW1(config)# route-map PIM_JOIN_FILTER deny
SW1(config-route-map)# match ip multicast group 239.8.0.0/8
SW1(config-route-map)# route-map PIM_JOIN_FILTER permit 20
SW1(config-route-map)# match ip multicast group 224.0.0.0/4
SW1(config-route-map)# exit
Step 2: Apply the PIM Join filter to the appropriate interfaces.
SW1(config)# int e2/1
SW1(config-if)# ip pim jp-policy PIM_JOIN_FILTER in
SW1(config-if)# end