Help us improve your experience.

Let us know what you think.

Do you have time for a two-minute survey?

Navigation

Example: Enabling Join Suppression

This example describes how to enable PIM join suppression.

Requirements

Before you begin:

Overview

PIM join suppression enables a router on a multiaccess network to defer sending join messages to an upstream router when it sees identical join messages on the same network. Eventually, only one router sends these join messages, and the other routers suppress identical messages. Limiting the number of join messages improves scalability and efficiency by reducing the number of messages sent to the same router.

This example includes the following statements:

  • override-interval—Sets the maximum time in milliseconds to delay sending override join messages. When a router sees a prune message for a join it is currently suppressing, it waits before it sends an override join message. Waiting helps avoid multiple downstream routers sending override join messages at the same time. The override interval is a random timer with a value of 0 through the maximum override value.
  • propagation-delay—Sets a value in milliseconds for a prune pending timer, which specifies how long to wait before executing a prune on an upstream router. During this period, the router waits for any prune override join messages that might be currently suppressed. The period for the prune pending timer is the sum of the override-interval value and the value specified for propagation-delay.
  • reset-tracking-bit—Enables PIM join suppression on each multiaccess downstream interface. This statement resets a tracking bit field (T-bit) on the LAN prune delay hello option from the default of 1 (join suppression disabled) to 0 (join suppression enabled).

    When multiple identical join messages are received, a random join suppression timer is activated, with a range of 66 through 84 milliseconds. The timer is reset each time join suppression is triggered.

Figure 1 shows the topology used in this example.

Figure 1: Join Suppression

Join Suppression

The items in the figure represent the following functions:

  • Host 0 is the multicast source.
  • Host 1, Host 2, Host 3, and Host 4 are receivers.
  • Router R0 is the first-hop router and the RP.
  • Router R1 is an upstream router.
  • Routers R2, R3, R4, and R5 are downstream routers in the multicast LAN.

This example shows the configuration of the downstream devices: Routers R2, R3, R4, and R5.

Configuration

CLI Quick Configuration

To quickly configure this example, copy the following commands, paste them into a text file, remove any line breaks, change any details necessary to match your network configuration, and then copy and paste the commands into the CLI at the [edit] hierarchy level.

[edit]set protocols pim traceoptions file pim.log set protocols pim traceoptions file size 5m set protocols pim traceoptions file world-readable set protocols pim traceoptions flag join detail set protocols pim traceoptions flag prune detail set protocols pim traceoptions flag normal detail set protocols pim traceoptions flag register detail set protocols pim rp static address 10.255.112.160 set protocols pim interface all mode sparse set protocols pim interface all version 2 set protocols pim interface fxp0.0 disable set protocols pim reset-tracking-bit set protocols pim propagation-delay 500 set protocols pim override-interval 4000

Step-by-Step Procedure

The following example requires you to navigate various levels in the configuration hierarchy. For information about navigating the CLI, see Using the CLI Editor in Configuration Mode in the Junos OS CLI User Guide .

To configure PIM join suppression on a non-RP downstream router in the multicast LAN:

  1. Configure PIM sparse mode on the interfaces.

    [edit]user@host# edit protocols pim[edit protocols pim]user@host# set rp static address 10.255.112.160[edit protocols pim]user@host# set interface all mode sparse version 2[edit protocols pim]user@host# set interface all version 2[edit protocols pim]user@host# set interface fxp0.0 disable
  2. Enable the join suppression timer.

    [edit protocols pim]user@host# set reset-tracking-bit
  3. Configure the prune override interval value.

    [edit protocols pim]user@host# set override-interval 4000
  4. Configure the propagation delay of the link.

    [edit protocols pim]user@host# set propagation-delay 500
  5. (Optional) Configure PIM tracing operations.

    [edit protocols pim]user@host# set traceoptions file pim.log size 5m world-readable[edit protocols pim]user@host# set traceoptions flag join detail[edit protocols pim]user@host# set traceoptions flag normal detail[edit protocols pim]user@host# set traceoptions flag register detail
  6. If you are done configuring the device, commit the configuration.

    [edit protocols pim]user@host# commit

Results

From configuration mode, confirm your configuration by entering the show protocols command. If the output does not display the intended configuration, repeat the instructions in this example to correct the configuration.

user@host# show protocolspim {traceoptions {file pim.log size 5m world-readable;flag join detail;flag prune detail;flag normal detail;flag register detail;}rp {static {address 10.255.112.160;}}interface all {mode sparse;version 2;}interface fxp0.0 {disable;}reset-tracking-bit;propagation-delay 500;override-interval 4000;}

Verification

To verify the configuration, run the following commands on the upstream and downstream routers:

Published: 2012-06-27