summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitrii Turlupov <turlupov@zts.ru>2024-09-13 15:22:18 +0200
committerDmitrii Turlupov <turlupov@zts.ru>2024-09-13 15:26:04 +0200
commit69e31a547f8520fd967cc34dc0cd3a8f915d07f8 (patch)
treebb5d388fc6db964d4609cae9252e135f936baf74
parentMerge pull request #16779 from louis-6wind/fix-as-path-exclude (diff)
downloadfrr-69e31a547f8520fd967cc34dc0cd3a8f915d07f8.tar.xz
frr-69e31a547f8520fd967cc34dc0cd3a8f915d07f8.zip
ospfd: fix missing '[no]ip ospf graceful-restart hello-delay <N>' commands
Signed-off-by: Dmitrii Turlupov <turlupov@bk.ru>
Diffstat (limited to '')
-rw-r--r--ospfd/ospf_vty.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/ospfd/ospf_vty.c b/ospfd/ospf_vty.c
index 13138914f..7ae4ea04c 100644
--- a/ospfd/ospf_vty.c
+++ b/ospfd/ospf_vty.c
@@ -13184,6 +13184,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);