Configure a router to act as a PIM sparse-mode rendezvous point and an MSDP peer:
- [edit]
- routing-options {
-
- interface-routes {
- rib-group ifrg;
- }
-
- rib-groups {
-
- ifrg {
- import-rib [inet.0 inet.2];
- }
-
- mcrg {
- export-rib inet.2;
- import-rib inet.2;
- }
- }
- }
- protocols {
-
- bgp {
-
-
group lab {
- type internal;
- family any;
-
- neighbor 192.168.6.18 {
-
local-address 192.168.6.17;
- }
- }
- }
-
-
pim {
-
-
dense-groups {
- 224.0.1.39/32;
- 224.0.1.40/32;
- }
-
rib-group mcrg;
-
-
rp {
-
-
local {
- address 192.168.1.1;
- }
- }
-
-
interface all {
- mode sparse-dense;
- version 1;
- }
- }
-
-
msdp {
-
rib-group mcrg;
-
-
group lab {
-
-
peer 192.168.6.18 {
- local-address 192.168.6.17;
- }
- }
- }
- }