diff options
| author | Donatas Abraitis <donatas.abraitis@gmail.com> | 2021-08-10 11:04:57 +0300 |
|---|---|---|
| committer | Donatas Abraitis <donatas.abraitis@gmail.com> | 2021-08-10 11:06:22 +0300 |
| commit | 77a3a95eaa96e2f938825efeec2faf9de67c30b0 (patch) | |
| tree | 3f4bfda14d1d2c71eae0b469c17c1917fc3977f2 | |
| parent | 96870ecb059ab4cc2bd2b294c6cea97e5883ac9f (diff) | |
bgpd: Auto-complete for `show bgp <afi> <safi> large-community-list`
```
exit1-debian-9# show ip bgp large-community-list
(1-500) large-community-list number
LCOMMUNITY_LIST_NAME large-community-list name
large-testas
```
Signed-off-by: Donatas Abraitis <donatas.abraitis@gmail.com>
| -rw-r--r-- | bgpd/bgp_route.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bgpd/bgp_route.c b/bgpd/bgp_route.c index 65a1aa21a7..2b8a2eae3c 100644 --- a/bgpd/bgp_route.c +++ b/bgpd/bgp_route.c @@ -11715,7 +11715,7 @@ static int bgp_show_lcommunity_list(struct vty *vty, struct bgp *bgp, DEFUN (show_ip_bgp_large_community_list, show_ip_bgp_large_community_list_cmd, - "show [ip] bgp [<view|vrf> VIEWVRFNAME] ["BGP_AFI_CMD_STR" ["BGP_SAFI_WITH_LABEL_CMD_STR"]] large-community-list <(1-500)|WORD> [exact-match] [json]", + "show [ip] bgp [<view|vrf> VIEWVRFNAME] ["BGP_AFI_CMD_STR" ["BGP_SAFI_WITH_LABEL_CMD_STR"]] large-community-list <(1-500)|LCOMMUNITY_LIST_NAME> [exact-match] [json]", SHOW_STR IP_STR BGP_STR |
