diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-08-01 12:30:53 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-08-01 12:55:17 +0200 |
commit | 0284d6796298bca0b06385ef9e8dd7565a7551b7 (patch) | |
tree | accba6c09d90b2ecef4c9268e054b5eef2699376 /op-mode-definitions/include/bgp | |
parent | 0d1ad777daf25ef415bf45032d41b587baf20781 (diff) | |
download | vyos-1x-0284d6796298bca0b06385ef9e8dd7565a7551b7.tar.gz vyos-1x-0284d6796298bca0b06385ef9e8dd7565a7551b7.zip |
op-mode: bgp: T1513: extend "show bgp" command tree
Add the following new commands:
* show bgp mac hash
* show bgp martian next-hop
* show bgp memory
* show bgp next-hop
* show bgp next-hop detail
* show bgp next-hop ip
* show bgp next-hop ip detail
* show bgp statistics
* show bgp statistics-all
* show bgp wide
* show bgp cidr-only
* show bgp cidr-only wide
* show bgp ipv4 wide
* show bgp ipv6 wide
Diffstat (limited to 'op-mode-definitions/include/bgp')
-rw-r--r-- | op-mode-definitions/include/bgp/afi-common.xml.i | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/op-mode-definitions/include/bgp/afi-common.xml.i b/op-mode-definitions/include/bgp/afi-common.xml.i index e48482282..7fc59f3b0 100644 --- a/op-mode-definitions/include/bgp/afi-common.xml.i +++ b/op-mode-definitions/include/bgp/afi-common.xml.i @@ -31,10 +31,25 @@ </properties> <command>${vyos_op_scripts_dir}/vtysh_wrapper.sh $@</command> </leafNode> -<leafNode name="summary"> +<node name="summary"> <properties> <help>Summary of BGP neighbor status</help> </properties> <command>${vyos_op_scripts_dir}/vtysh_wrapper.sh $@</command> -</leafNode> + <children> + <leafNode name="established"> + <properties> + <help>Show only sessions in Established state</help> + </properties> + <command>${vyos_op_scripts_dir}/vtysh_wrapper.sh $@</command> + </leafNode> + <leafNode name="failed"> + <properties> + <help>Show only sessions not in Established state</help> + </properties> + <command>${vyos_op_scripts_dir}/vtysh_wrapper.sh $@</command> + </leafNode> + </children> +</node> +#include <include/vtysh-generic-wide.xml.i> <!-- included end --> |