-
Notifications
You must be signed in to change notification settings - Fork 1.5k
bgpd:send EOR during GR only when fib install comeplete for wfi enabled #19522
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
ton31337
merged 1 commit into
FRRouting:master
from
vijayalaxmi-basavaraj:bgp_gr_wait_forfib_install
Sep 27, 2025
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 @@ | ||
| # BGP Graceful Restart FIB Suppress Test Module |
This file contains hidden or 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,49 @@ | ||
| hostname r1 | ||
| ! | ||
| interface r1-eth0 | ||
| ip address 192.168.12.1/24 | ||
| ipv6 address fd00:12::1/64 | ||
| ! | ||
| interface r1-eth1 | ||
| ip address 192.168.13.1/24 | ||
| ipv6 address fd00:13::1/64 | ||
| ! | ||
| interface lo | ||
| ip address 192.168.1.1/32 | ||
| ipv6 address 2001:DB8:F::1/128 | ||
| ! | ||
| ip route 192.168.11.1/32 Null0 | ||
| ip route 192.168.11.2/32 Null0 | ||
| ipv6 route 2001:db8:1::1/128 Null0 | ||
| ipv6 route 2001:db8:1::2/128 Null0 | ||
| ! | ||
| router bgp 100 | ||
| no bgp ebgp-requires-policy | ||
| bgp router-id 192.168.1.1 | ||
| neighbor 192.168.12.2 remote-as 100 | ||
| neighbor 192.168.12.2 timers 3 10 | ||
| neighbor 192.168.12.2 timers connect 5 | ||
| neighbor 192.168.13.3 remote-as 100 | ||
| neighbor 192.168.13.3 timers 3 10 | ||
| neighbor 192.168.13.3 timers connect 5 | ||
| neighbor fd00:12::2 remote-as 100 | ||
| neighbor fd00:12::2 timers 3 10 | ||
| neighbor fd00:12::2 timers connect 5 | ||
| neighbor fd00:13::3 remote-as 100 | ||
| neighbor fd00:13::3 timers 3 10 | ||
| neighbor fd00:13::3 timers connect 5 | ||
| ! | ||
| address-family ipv4 unicast | ||
| redistribute static | ||
| neighbor 192.168.12.2 activate | ||
| neighbor 192.168.13.3 activate | ||
| exit-address-family | ||
| ! | ||
| address-family ipv6 unicast | ||
| redistribute static | ||
| neighbor fd00:12::2 activate | ||
| neighbor fd00:13::3 activate | ||
| exit-address-family | ||
| ! | ||
| line vty | ||
| ! | ||
This file contains hidden or 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,52 @@ | ||
| hostname r2 | ||
| ! | ||
| interface r2-eth0 | ||
| ip address 192.168.12.2/24 | ||
| ipv6 address fd00:12::2/64 | ||
| ! | ||
| interface r2-eth1 | ||
| ip address 192.168.23.2/24 | ||
| ipv6 address fd00:23::2/64 | ||
| ! | ||
| interface lo | ||
| ip address 192.168.2.2/32 | ||
| ipv6 address 2001:DB8:F::2/128 | ||
| ! | ||
| ip route 192.168.22.1/32 Null0 | ||
| ip route 192.168.22.2/32 Null0 | ||
| ipv6 route 2001:db8:2::1/128 Null0 | ||
| ipv6 route 2001:db8:2::2/128 Null0 | ||
| ! | ||
| router bgp 100 | ||
| no bgp ebgp-requires-policy | ||
| bgp router-id 192.168.2.2 | ||
| bgp graceful-restart | ||
| bgp graceful-restart preserve-fw-state | ||
| bgp suppress-fib-pending | ||
| neighbor 192.168.12.1 remote-as 100 | ||
| neighbor 192.168.12.1 timers 3 10 | ||
| neighbor 192.168.12.1 timers connect 5 | ||
| neighbor 192.168.23.3 remote-as 100 | ||
| neighbor 192.168.23.3 timers 3 10 | ||
| neighbor 192.168.23.3 timers connect 5 | ||
| neighbor fd00:12::1 remote-as 100 | ||
| neighbor fd00:12::1 timers 3 10 | ||
| neighbor fd00:12::1 timers connect 5 | ||
| neighbor fd00:23::3 remote-as 100 | ||
| neighbor fd00:23::3 timers 3 10 | ||
| neighbor fd00:23::3 timers connect 5 | ||
| ! | ||
| address-family ipv4 unicast | ||
| redistribute static | ||
| neighbor 192.168.12.1 activate | ||
| neighbor 192.168.23.3 activate | ||
| exit-address-family | ||
| ! | ||
| address-family ipv6 unicast | ||
| redistribute static | ||
| neighbor fd00:12::1 activate | ||
| neighbor fd00:23::3 activate | ||
| exit-address-family | ||
| ! | ||
| line vty | ||
| ! |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.