Configuring a PIM Anycast RP Router with MSDP
Add the address
statement at the [edit protocols
pim rp local]
hierarchy level to specify the RP address (the
same address as the secondary lo0 interface).
For all interfaces, use the mode
statement to set
the mode to sparse and the version
statement to
specify PIM version 2 at the [edit protocols pim rp local interface
all]
hierarchy level. When configuring all interfaces, exclude
the fxp0.0 management interface by adding the disable
statement for that interface.
protocols { pim { rp { local { family inet; address 198.51.100.253; } interface all { mode sparse; version 2; } interface fxp0.0 { disable; } } } }
To configure MSDP peering, add the peer
statement
to configure the address of the MSDP peer at the [edit protocols
msdp]
hierarchy level. For MSDP peering, use the unique, primary
addresses instead of the anycast address. To specify the local address
for MSDP peering, add the local-address
statement at the [edit protocols msdp peer]
hierarchy level.
protocols { msdp { peer 198.51.100.250 { local-address 198.51.100.254; } } }