-
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 #17517 from FRRouting/mergify/bp/stable/10.2/pr-17501
bgpd: Fix Graceful-Restart for peer-groups (backport #17501)
- Loading branch information
Showing
12 changed files
with
151 additions
and
128 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 was deleted.
Oops, something went wrong.
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,21 @@ | ||
! | ||
interface r1-eth0 | ||
ip address 192.168.255.1/24 | ||
! | ||
interface r1-eth1 | ||
ip address 192.168.251.1/30 | ||
! | ||
ip forwarding | ||
! | ||
router bgp 65001 | ||
neighbor PG peer-group | ||
neighbor PG remote-as external | ||
neighbor PG timers 3 10 | ||
neighbor 192.168.255.3 peer-group PG | ||
neighbor r1-eth0 interface peer-group PG | ||
neighbor PG1 peer-group | ||
neighbor PG1 remote-as external | ||
neighbor PG1 timers 3 20 | ||
neighbor PG1 graceful-restart-disable | ||
neighbor 192.168.251.2 peer-group PG1 | ||
! |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 @@ | ||
! | ||
interface r2-eth0 | ||
ip address 192.168.255.2/24 | ||
! | ||
interface r2-eth1 | ||
ip address 192.168.251.2/30 | ||
! | ||
ip forwarding | ||
! | ||
router bgp 65002 | ||
neighbor PG peer-group | ||
neighbor PG remote-as external | ||
neighbor PG timers 3 10 | ||
neighbor r2-eth0 interface peer-group PG | ||
neighbor PG1 peer-group | ||
neighbor PG1 remote-as external | ||
neighbor PG1 timers 3 20 | ||
neighbor 192.168.251.1 peer-group PG1 | ||
! |
This file was deleted.
Oops, something went wrong.
5 changes: 5 additions & 0 deletions
5
tests/topotests/bgp_peer_group/r3/bgpd.conf → tests/topotests/bgp_peer_group/r3/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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.