-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
ospfd:fix show_ip_ospf_gr_helper #14710
ospfd:fix show_ip_ospf_gr_helper #14710
Conversation
0f5068c
to
0c8c95f
Compare
0c8c95f
to
1666237
Compare
ci:rerun |
@Mergifyio backport dev/9.1 |
❌ No backport have been created
GitHub error: |
Could you put a decent description in the commit message what is the actual fix here? |
791ddd5
to
e9924fc
Compare
@teletajp please write a more detailed explanation (as in the PR's description) to the commit. With real outputs, it would be even better. |
Fix for the command "show ip ospf vrf NAME graceful-restart helper". FRR did not show information by vrf's name. If i have router ospf vrf red, vtysh's command 'show ip ospf vrf red graceful-restart helper' will not show anything. But command 'show ip ospf vrf all graceful-restart helper' will work normally. This fix fixes the display of information by vrf's name. Example: frr1# show ip ospf vrf vrf-1 graceful-restart helper VRF Name: vrf-1 OSPF Router with ID (192.168.255.81) Graceful restart helper support enabled. Strict LSA check is enabled. Helper supported for Planned and Unplanned Restarts. Supported Graceful restart interval: 1800(in seconds). Signed-off-by: teletajp <[email protected]>
e9924fc
to
62754e1
Compare
I added a description to the commit |
@Mergifyio backport stable/9.1 |
✅ Backports have been created
|
ospfd:fix show_ip_ospf_gr_helper (backport #14710)
Small fix for the command "show ip ospf vrf NAME graceful-restart helper detail". FRR did not show information by vrf's name.
Error description: If i have
router ospf vrf red
, vtysh's commandshow ip ospf vrf red graceful-restart helper
will not show anything. But commandshow ip ospf vrf all graceful-restart helper
will work normally. This fix fixes the display of information by vrf's name.