diff options
author | Karl Quan <kquan@nvidia.com> | 2023-02-14 16:54:59 +0100 |
---|---|---|
committer | Karl Quan <kquan@nvidia.com> | 2023-02-15 23:14:28 +0100 |
commit | 83856649b35f45243205420aac515b635e712323 (patch) | |
tree | c9d9276bd6b0721a0d5e9e89926f18dcaedf2701 /bgpd/bgp_vty.h | |
parent | Merge pull request #12776 from patrasar/Issue_12755 (diff) | |
download | frr-83856649b35f45243205420aac515b635e712323.tar.xz frr-83856649b35f45243205420aac515b635e712323.zip |
bgpd: BGP troubleshooting - Add a keyword self-originate to display only self-originated prefixes when looking at the BGP table for a given address-family
Add a keyword self-originate" to extend current CLI commands to filter out self-originated routes only
a\) CLI to show ipv4/ipv6 self-originated routes
"show [ip] bgp [afi] [safi] [all] self-originate [wide|json]"
b\) CLI to show evpn self-originated routes
"show bgp l2vpn evpn route [detail] [type <ead|macip|multicast|es|prefix|1|2|3|4|5>] self-originate [json]"
Signed-off-by: Karl Quan <kquan@nvidia.com>
Diffstat (limited to 'bgpd/bgp_vty.h')
-rw-r--r-- | bgpd/bgp_vty.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bgpd/bgp_vty.h b/bgpd/bgp_vty.h index 019789dff..e3e3c0d88 100644 --- a/bgpd/bgp_vty.h +++ b/bgpd/bgp_vty.h @@ -43,6 +43,9 @@ struct bgp; BGP_AF_MODIFIER_STR BGP_AF_MODIFIER_STR BGP_AF_MODIFIER_STR \ BGP_AF_MODIFIER_STR BGP_AF_MODIFIER_STR +#define BGP_SELF_ORIG_CMD_STR "self-originate" +#define BGP_SELF_ORIG_HELP_STR "Display only self-originated routes\n" + #define SHOW_GR_HEADER \ "Codes: GR - Graceful Restart," \ " * - Inheriting Global GR Config,\n" \ |