diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/sources/cli-command-syntax.md | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/docs/sources/cli-command-syntax.md b/docs/sources/cli-command-syntax.md index f183d281..fa7747dd 100644 --- a/docs/sources/cli-command-syntax.md +++ b/docs/sources/cli-command-syntax.md @@ -26,6 +26,8 @@ Note: Currently gobgp supports only **global** and **neighbor** subcommand. % gobgp global rib del <prefix> [-a <address family>] # show all Route information % gobgp global rib [-a <address family>] +# show a specific route information +% gobgp global rib [<prefix>|<host>] [-a <address family>] ``` - **Option** - \-a , \-\-address-family: specify the ipv4, ipv6, evpn, encap, or rtc @@ -58,9 +60,10 @@ Note: Currently gobgp supports only **global** and **neighbor** subcommand. ### Show Rib - local-rib/adj-rib-in/adj-rib-out - ```shell -% gobgp neighbor <neighbor address> local [-a <address family>] -% gobgp neighbor <neighbor address> adj-in [-a <address family>] -% gobgp neighbor <neighbor address> adj-out [-a <address family>] +# show all routes in [local|adj-in|adj-out] table +% gobgp neighbor <neighbor address> [local|adj-in|adj-out] [-a <address family>] +# show a specific route in [local|adj-in|adj-out] table +% gobgp neighbor <neighbor address> [local|adj-in|adj-out] [<prefix>|<host>] [-a <address family>] ``` - **Option** - \-a , \-\-address-family: specify the ipv4 or ipv6 @@ -167,4 +170,4 @@ Note: Currently gobgp supports only **global** and **neighbor** subcommand. Specify the options of action when you use the routepolicy add subcommand. - \-\-a-route : specify the action(accept, reject) of the route that match to the conditions - - \-\-a-community : specify the community operation of the route that match to the conditions
\ No newline at end of file + - \-\-a-community : specify the community operation of the route that match to the conditions |