forked from FRRouting/frr
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: bmp tests for adj-rib-out and ecmp
add add-path detection in nlri parsing add bmpserver exception printing and log redirection to /var/log/bmpserver.log add 3rd peer in topotest for ecmp Signed-off-by: Maxence Younsi <[email protected]>
- Loading branch information
Showing
8 changed files
with
339 additions
and
126 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
router bgp 65502 | ||
bgp router-id 192.168.0.3 | ||
bgp log-neighbor-changes | ||
no bgp ebgp-requires-policy | ||
no bgp network import-check | ||
neighbor 192.168.0.1 remote-as 65501 | ||
neighbor 192:168::1 remote-as 65501 | ||
! | ||
address-family ipv4 unicast | ||
neighbor 192.168.0.1 activate | ||
no neighbor 192:168::1 activate | ||
redistribute connected | ||
exit-address-family | ||
! | ||
address-family ipv6 unicast | ||
neighbor 192:168::1 activate | ||
redistribute connected | ||
exit-address-family | ||
! |
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,8 @@ | ||
interface r3-eth0 | ||
ip address 192.168.0.3/24 | ||
ipv6 address 192:168::3/64 | ||
! | ||
interface r3-eth1 | ||
ip address 172.31.0.3/24 | ||
ipv6 address 172:31::3/64 | ||
! |
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
Oops, something went wrong.