diff options
| author | Jafar Al-Gharaibeh <jafar@atcorp.com> | 2024-09-13 11:57:56 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-13 11:57:56 -0400 | 
| commit | 38bd668b31fe9368eb523b97e0a8049f077150cd (patch) | |
| tree | 77f000122b492f5236b652272470545aa7f34003 | |
| parent | 5074633d052fbbe1a74967d349db1cd16bc09f58 (diff) | |
| parent | 69e31a547f8520fd967cc34dc0cd3a8f915d07f8 (diff) | |
Merge pull request #16818 from ak503/ospf_gr
ospfd: missing '[no]ip ospf graceful-restart hello-delay <N>' commands
| -rw-r--r-- | ospfd/ospf_vty.c | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/ospfd/ospf_vty.c b/ospfd/ospf_vty.c index 13138914fa..7ae4ea04cb 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);  | 
