Merge pull request #16824 from FRRouting/mergify/bp/stable/10.1/pr-16818

ospfd: missing '[no]ip ospf graceful-restart hello-delay <N>' commands (backport #16818)
This commit is contained in:
Donald Sharp 2024-09-13 19:52:36 -04:00 committed by GitHub
commit 367d7ed583
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -13245,6 +13245,10 @@ static void ospf_vty_if_init(void)
install_element(INTERFACE_NODE, &ip_ospf_hello_interval_cmd);
install_element(INTERFACE_NODE, &no_ip_ospf_hello_interval_cmd);
/* "ip ospf graceful-restart" commands. */
install_element(INTERFACE_NODE, &ip_ospf_gr_hdelay_cmd);
install_element(INTERFACE_NODE, &no_ip_ospf_gr_hdelay_cmd);
/* "ip ospf network" commands. */
install_element(INTERFACE_NODE, &ip_ospf_network_cmd);
install_element(INTERFACE_NODE, &no_ip_ospf_network_cmd);