diff options
author | Nathan Bahr <nbahr@atcorp.com> | 2024-10-30 22:03:04 +0100 |
---|---|---|
committer | Nathan Bahr <nbahr@atcorp.com> | 2025-01-09 22:58:22 +0100 |
commit | 590c937e8a1ddca9d2a11580a289dd406ea6d82c (patch) | |
tree | b227df3b92b5774e00b843ce10ef0befbae8147f /tests/topotests/pim_mrib/r4/frr.conf | |
parent | pimd: Implement rpf lookup mode as a list (diff) | |
download | frr-590c937e8a1ddca9d2a11580a289dd406ea6d82c.tar.xz frr-590c937e8a1ddca9d2a11580a289dd406ea6d82c.zip |
tests: Add tests for new RPF lookup group and source list features
Expand existing pim_mrib tests to include testing lookup modes
specific to source and/or group as defined in prefix lists.
Signed-off-by: Nathan Bahr <nbahr@atcorp.com>
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 |