diff options
author | Donald Sharp <donaldsharp72@gmail.com> | 2025-01-15 16:20:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-15 16:20:24 +0100 |
commit | 5867c3216169d44e7a9538e824f1e4a1e1e0466e (patch) | |
tree | c58778ae604bbddec6c336fd9b4562f4c8191304 /tests/topotests/pim_mrib/r4/frr.conf | |
parent | Merge pull request #17854 from enkechen-panw/flag-reflected (diff) | |
parent | doc: Document rpf-lookup-mode changes (diff) | |
download | frr-5867c3216169d44e7a9538e824f1e4a1e1e0466e.tar.xz frr-5867c3216169d44e7a9538e824f1e4a1e1e0466e.zip |
Merge pull request #17776 from nabahr/group-rpf-mode
PIMD: RPF lookup mode per-group, per-source
Diffstat (limited to 'tests/topotests/pim_mrib/r4/frr.conf')
-rw-r--r-- | tests/topotests/pim_mrib/r4/frr.conf | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/tests/topotests/pim_mrib/r4/frr.conf b/tests/topotests/pim_mrib/r4/frr.conf index 8432a7a35..8d9d8f7e2 100644 --- a/tests/topotests/pim_mrib/r4/frr.conf +++ b/tests/topotests/pim_mrib/r4/frr.conf @@ -18,12 +18,24 @@ interface r4-eth1 ip igmp ip pim ! +interface r4-dum0 + ip address 10.10.0.4/24 + ip igmp + ip pim + ip pim passive +! ip forwarding ! ip route 10.0.0.0/24 10.0.2.2 50 -ip route 10.0.1.0/24 10.0.3.3 50 +ip route 10.0.1.0/24 10.0.2.2 50 +! +ip prefix-list SRCPLIST permit 10.0.0.1/32 +ip prefix-list SRCPLIST2 permit 10.0.1.1/32 +ip prefix-list GRPPLIST permit 239.1.1.1/32 +ip prefix-list GRPPLIST2 permit 239.2.2.2/32 ! router pim rpf-lookup-mode mrib-then-urib rp 10.0.0.1 224.0.0.0/4 + rp 10.0.1.1 225.0.0.0/24 !
\ No newline at end of file |