From: David Schweizer Date: Mon, 24 Aug 2020 06:12:16 +0000 (+0200) Subject: bgpd: additional no bgp shutdown cli command X-Git-Tag: base_7.5~51^2~2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=1b6e7a8874bcd7c5a48d2c849e64b0dd67f49f7e;p=mirror%2Ffrr.git bgpd: additional no bgp shutdown cli command * Added a "no bgp shutdown message MSG..." cli command for ease of use with copy/paste. Because of current limitations with DEFPY/ALIAS and the message string concatenation, a new command instead of an ALIAS had to be implemented. Signed-off-by: David Schweizer --- diff --git a/bgpd/bgp_vty.c b/bgpd/bgp_vty.c index 6938d301fe..3083e8d354 100644 --- a/bgpd/bgp_vty.c +++ b/bgpd/bgp_vty.c @@ -3639,6 +3639,18 @@ DEFPY(no_bgp_shutdown, no_bgp_shutdown_cmd, "no bgp shutdown", return CMD_SUCCESS; } +DEFPY(no_bgp_shutdown_msg, no_bgp_shutdown_msg_cmd, + "no bgp shutdown message MSG...", NO_STR BGP_STR + "Disable administrative shutdown of the BGP instance\n" + "Add a shutdown message (RFC 8203)\n" "Shutdown message\n") +{ + VTY_DECLVAR_CONTEXT(bgp, bgp); + + bgp_shutdown_disable(bgp); + + return CMD_SUCCESS; +} + DEFUN (neighbor_remote_as, neighbor_remote_as_cmd, "neighbor remote-as <(1-4294967295)|internal|external>", @@ -16081,6 +16093,7 @@ void bgp_vty_init(void) install_element(BGP_NODE, &bgp_shutdown_cmd); install_element(BGP_NODE, &bgp_shutdown_msg_cmd); install_element(BGP_NODE, &no_bgp_shutdown_cmd); + install_element(BGP_NODE, &no_bgp_shutdown_msg_cmd); /* "neighbor remote-as" commands. */ install_element(BGP_NODE, &neighbor_remote_as_cmd);