-
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.
Merge pull request #17436 from LabNConsulting/aceelindem/ospf-multi-i…
…nstance-default ospfd: OSPF multi-instance default origination fixes
- Loading branch information
Showing
10 changed files
with
574 additions
and
21 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
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,19 @@ | ||
! | ||
hostname r1 | ||
password zebra | ||
log file /tmp/r1-frr.log | ||
ip forwarding | ||
! | ||
interface lo | ||
ip address 1.1.1.1/32 | ||
ip ospf area 0 | ||
! | ||
interface r1-eth0 | ||
ip address 10.1.1.1/24 | ||
ip ospf area 0 | ||
! | ||
! | ||
router ospf | ||
ospf router-id 1.1.1.1 | ||
distance 20 | ||
! |
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,37 @@ | ||
! | ||
hostname r2 | ||
password zebra | ||
! debug ospf event | ||
! debug ospf lsa | ||
! debug ospf default-information | ||
! debug ospf zebra redistribute | ||
|
||
ip forwarding | ||
! | ||
interface lo1 | ||
ip address 2.2.2.1/32 | ||
ip ospf 1 area 0 | ||
no shut | ||
! | ||
interface lo2 | ||
ip address 2.2.2.2/32 | ||
ip ospf 2 area 0 | ||
no shut | ||
! | ||
interface r2-eth0 | ||
ip address 10.1.1.2/24 | ||
ip ospf 1 area 0 | ||
! | ||
interface r2-eth1 | ||
ip address 10.1.2.2/24 | ||
ip ospf 2 area 0 | ||
! | ||
router ospf 1 | ||
ospf router-id 2.2.2.1 | ||
distance 20 | ||
! | ||
router ospf 2 | ||
ospf router-id 2.2.2.2 | ||
distance 20 | ||
! | ||
|
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,19 @@ | ||
! | ||
hostname r3 | ||
password zebra | ||
log file /tmp/r3-frr.log | ||
ip forwarding | ||
! | ||
interface lo | ||
ip address 3.3.3.1/32 | ||
ip ospf area 0 | ||
! | ||
interface r3-eth0 | ||
ip address 10.1.2.3/24 | ||
ip ospf area 0 | ||
! | ||
! | ||
router ospf | ||
ospf router-id 3.3.3.1 | ||
distance 20 | ||
! |
Oops, something went wrong.