This repository has been archived by the owner on Dec 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 79
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 #271 from nre-learning/cumulus_vx_fix
Cumulus VX fix. Closes #265
- Loading branch information
Showing
9 changed files
with
51 additions
and
31 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
2 changes: 1 addition & 1 deletion
2
lessons/fundamentals/lesson-99-cumulus-demo/stage1/configs/leaf1/frr.conf
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
router bgp 65002 | ||
bgp router-id 10.1.1.2 | ||
neighbor 10.10.10.1 remote-as 65001 | ||
address-family ipv4 unicast | ||
neighbor 10.10.10.1 remote-as 65001 | ||
neighbor 10.10.10.1 activate | ||
redistribute connected | ||
|
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
2 changes: 1 addition & 1 deletion
2
lessons/fundamentals/lesson-99-cumulus-demo/stage1/configs/leaf2/frr.conf
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
router bgp 65003 | ||
bgp router-id 10.1.1.3 | ||
neighbor 10.10.20.1 remote-as 65001 | ||
address-family ipv4 unicast | ||
neighbor 10.10.20.1 remote-as 65001 | ||
neighbor 10.10.20.1 activate | ||
redistribute connected | ||
|
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
4 changes: 2 additions & 2 deletions
4
lessons/fundamentals/lesson-99-cumulus-demo/stage1/configs/spine/frr.conf
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
router bgp 65001 | ||
bgp router-id 10.1.1.1 | ||
neighbor 10.10.10.2 remote-as 65002 | ||
neighbor 10.10.20.2 remote-as 65003 | ||
address-family ipv4 unicast | ||
neighbor 10.10.10.2 remote-as 65002 | ||
neighbor 10.10.10.2 activate | ||
neighbor 10.10.20.2 remote-as 65003 | ||
neighbor 10.10.20.2 activate | ||
redistribute connected | ||
|