From: Stephen Worley Date: Mon, 19 Oct 2020 18:08:18 +0000 (-0400) Subject: zebra: add alias for "show ip/ipv6 ro" X-Git-Tag: base_7.6~393^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=refs%2Fpull%2F7344%2Fhead;p=mirror%2Ffrr.git zebra: add alias for "show ip/ipv6 ro" Add an alias so people can still type `show ip ro`. It became ambigious in a recent release. Signed-off-by: Stephen Worley --- diff --git a/zebra/zebra_vty.c b/zebra/zebra_vty.c index 920fdd6baa..762da5d0d3 100644 --- a/zebra/zebra_vty.c +++ b/zebra/zebra_vty.c @@ -1768,6 +1768,15 @@ DEFPY (show_route, return CMD_SUCCESS; } +ALIAS_HIDDEN (show_route, + show_ro_cmd, + "show ro", + SHOW_STR + IP_STR + IPV6_STR + "IP routing table\n"); + + DEFPY (show_route_detail, show_route_detail_cmd, "show\ @@ -3905,6 +3914,7 @@ void zebra_vty_init(void) install_element(VIEW_NODE, &show_vrf_cmd); install_element(VIEW_NODE, &show_vrf_vni_cmd); install_element(VIEW_NODE, &show_route_cmd); + install_element(VIEW_NODE, &show_ro_cmd); install_element(VIEW_NODE, &show_route_detail_cmd); install_element(VIEW_NODE, &show_route_summary_cmd); install_element(VIEW_NODE, &show_ip_nht_cmd);