Skip to content

Commit

Permalink
Merge pull request #15020 from FRRouting/mergify/bp/stable/9.0/pr-15014
Browse files Browse the repository at this point in the history
ospfd: fix some ospf cmds' param range (backport #15014)
  • Loading branch information
donaldsharp authored Dec 14, 2023
2 parents 2cefe5d + 3bc9880 commit d6febc2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion doc/user/ospfd.rst
Original file line number Diff line number Diff line change
Expand Up @@ -812,7 +812,7 @@ Graceful Restart
affects the restarting router.
By default 'strict-lsa-checking' is enabled"

.. clicmd:: graceful-restart helper supported-grace-time
.. clicmd:: graceful-restart helper supported-grace-time (10-1800)


Supports as HELPER for configured grace period.
Expand Down
6 changes: 3 additions & 3 deletions ospfd/ospf_vty.c
Original file line number Diff line number Diff line change
Expand Up @@ -8077,7 +8077,7 @@ DEFUN_HIDDEN (ospf_dead_interval,

DEFUN (ip_ospf_dead_interval_minimal,
ip_ospf_dead_interval_minimal_addr_cmd,
"ip ospf dead-interval minimal hello-multiplier (1-10) [A.B.C.D]",
"ip ospf dead-interval minimal hello-multiplier (2-20) [A.B.C.D]",
"IP Information\n"
"OSPF interface commands\n"
"Interval time after which a neighbor is declared down\n"
Expand All @@ -8098,7 +8098,7 @@ DEFUN (ip_ospf_dead_interval_minimal,

DEFUN (no_ip_ospf_dead_interval,
no_ip_ospf_dead_interval_cmd,
"no ip ospf dead-interval [<(1-65535)|minimal hello-multiplier (1-10)> [A.B.C.D]]",
"no ip ospf dead-interval [<(1-65535)|minimal hello-multiplier (2-20)> [A.B.C.D]]",
NO_STR
"IP Information\n"
"OSPF interface commands\n"
Expand Down Expand Up @@ -8165,7 +8165,7 @@ DEFUN (no_ip_ospf_dead_interval,

DEFUN_HIDDEN (no_ospf_dead_interval,
no_ospf_dead_interval_cmd,
"no ospf dead-interval [<(1-65535)|minimal hello-multiplier (1-10)> [A.B.C.D]]",
"no ospf dead-interval [<(1-65535)|minimal hello-multiplier (2-20)> [A.B.C.D]]",
NO_STR
"OSPF interface commands\n"
"Interval time after which a neighbor is declared down\n"
Expand Down

0 comments on commit d6febc2

Please sign in to comment.