summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bgpd/bgp_vty.c4
-rw-r--r--bgpd/bgpd.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/bgpd/bgp_vty.c b/bgpd/bgp_vty.c
index 0a0c3bc79f..d30b057cbc 100644
--- a/bgpd/bgp_vty.c
+++ b/bgpd/bgp_vty.c
@@ -2698,7 +2698,7 @@ DEFUN (bgp_default_shutdown,
NO_STR
BGP_STR
"Configure BGP defaults\n"
- "Do not automatically activate peers upon configuration\n")
+ "Apply administrative shutdown to newly configured peers\n")
{
VTY_DECLVAR_CONTEXT(bgp, bgp);
bgp->autoshutdown = !strmatch(argv[0]->text, "no");
@@ -11612,7 +11612,7 @@ void bgp_vty_init(void)
install_element(BGP_NODE, &bgp_listen_range_cmd);
install_element(BGP_NODE, &no_bgp_listen_range_cmd);
- /* "neighbors auto-shutdown" command */
+ /* "bgp default shutdown" command */
install_element(BGP_NODE, &bgp_default_shutdown_cmd);
/* "neighbor remote-as" commands. */
diff --git a/bgpd/bgpd.c b/bgpd/bgpd.c
index 19f0c8cabf..4ff0ef41e0 100644
--- a/bgpd/bgpd.c
+++ b/bgpd/bgpd.c
@@ -7151,7 +7151,7 @@ int bgp_config_write(struct vty *vty)
/* BGP default autoshutdown neighbors */
if (bgp->autoshutdown)
- vty_out(vty, " bgp default auto-shutdown\n");
+ vty_out(vty, " bgp default shutdown\n");
/* BGP client-to-client reflection. */
if (bgp_flag_check(bgp, BGP_FLAG_NO_CLIENT_TO_CLIENT))