-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Now with a full AutoRP implementation, we can test AutoRP in a full network setup beginning with candidate RP announcements all the way through discovery and active RP selection. Signed-off-by: Nathan Bahr <[email protected]>
- Loading branch information
Showing
6 changed files
with
696 additions
and
220 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
! | ||
hostname r3 | ||
password zebra | ||
log file /tmp/r3-frr.log | ||
! | ||
debug pim autorp | ||
! | ||
interface r3-eth0 | ||
ip address 10.0.1.3/24 | ||
ip igmp | ||
ip pim | ||
! | ||
interface r3-eth1 | ||
ip address 10.0.3.3/24 | ||
ip igmp | ||
ip pim | ||
! | ||
ip forwarding | ||
! | ||
ip route 10.0.0.0/24 10.0.1.1 50 | ||
ip route 10.0.2.0/24 10.0.3.4 50 | ||
! | ||
router pim | ||
autorp discovery | ||
rp 10.0.3.4 224.0.1.0/24 | ||
! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
! | ||
hostname r4 | ||
password zebra | ||
log file /tmp/r4-frr.log | ||
! | ||
debug pim autorp | ||
! | ||
interface r4-eth0 | ||
ip address 10.0.2.4/24 | ||
ip igmp | ||
ip pim | ||
! | ||
interface r4-eth1 | ||
ip address 10.0.3.4/24 | ||
ip igmp | ||
ip pim | ||
! | ||
ip forwarding | ||
! | ||
ip route 10.0.0.0/24 10.0.2.2 50 | ||
ip route 10.0.1.0/24 10.0.2.2 50 | ||
! | ||
router pim | ||
autorp discovery | ||
rp 10.0.3.4 224.0.1.0/24 | ||
! |
Oops, something went wrong.