-
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 #17151 from opensourcerouting/fix/send_link_bw_as_…
…non-transitive_to_ebgp bgpd: Handle non-transitive extended communities
- Loading branch information
Showing
11 changed files
with
213 additions
and
89 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
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,16 @@ | ||
! | ||
int r3-eth0 | ||
ip address 192.168.2.1/24 | ||
! | ||
int r3-eth1 | ||
ip address 192.168.3.1/24 | ||
! | ||
router bgp 65003 | ||
no bgp ebgp-requires-policy | ||
neighbor 192.168.2.2 remote-as external | ||
neighbor 192.168.2.2 timers 1 3 | ||
neighbor 192.168.2.2 timers connect 1 | ||
neighbor 192.168.3.2 remote-as external | ||
neighbor 192.168.3.2 timers 1 3 | ||
neighbor 192.168.3.2 timers connect 1 | ||
! |
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,10 @@ | ||
! | ||
int r4-eth0 | ||
ip address 192.168.3.2/24 | ||
! | ||
router bgp 65004 | ||
no bgp ebgp-requires-policy | ||
neighbor 192.168.3.1 remote-as external | ||
neighbor 192.168.3.1 timers 1 3 | ||
neighbor 192.168.3.1 timers connect 1 | ||
! |
Oops, something went wrong.