diff options
author | Philippe Guibert <philippe.guibert@6wind.com> | 2019-01-30 17:07:36 +0100 |
---|---|---|
committer | Philippe Guibert <philippe.guibert@6wind.com> | 2019-01-30 17:10:31 +0100 |
commit | c1779b7dcd4bed95be5e6314f4c38f0d88138562 (patch) | |
tree | 8801e4781210fbc933e76147a8ec6b037ea67cf1 /bgpd | |
parent | bgpd: increase bgp restart timer value from 1-3600 to 1-4095 (diff) | |
download | frr-c1779b7dcd4bed95be5e6314f4c38f0d88138562.tar.xz frr-c1779b7dcd4bed95be5e6314f4c38f0d88138562.zip |
bgpd: enlarge bgp stalepath timer range from 1-3600 to 1-4095
the maximum value for stalepath timer is extended to 4095 to align with
bgp restart timer value.
Signed-off-by: Philippe Guibert <philippe.guibert@6wind.com>
Diffstat (limited to 'bgpd')
-rw-r--r-- | bgpd/bgp_vty.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bgpd/bgp_vty.c b/bgpd/bgp_vty.c index f19e361d6..be6c06d23 100644 --- a/bgpd/bgp_vty.c +++ b/bgpd/bgp_vty.c @@ -1945,7 +1945,7 @@ DEFUN (no_bgp_graceful_restart, DEFUN (bgp_graceful_restart_stalepath_time, bgp_graceful_restart_stalepath_time_cmd, - "bgp graceful-restart stalepath-time (1-3600)", + "bgp graceful-restart stalepath-time (1-4095)", "BGP specific commands\n" "Graceful restart capability parameters\n" "Set the max time to hold onto restarting peer's stale paths\n" @@ -1979,7 +1979,7 @@ DEFUN (bgp_graceful_restart_restart_time, DEFUN (no_bgp_graceful_restart_stalepath_time, no_bgp_graceful_restart_stalepath_time_cmd, - "no bgp graceful-restart stalepath-time [(1-3600)]", + "no bgp graceful-restart stalepath-time [(1-4095)]", NO_STR "BGP specific commands\n" "Graceful restart capability parameters\n" |