diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-06-06 16:27:09 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-06-06 16:54:57 +0200 |
commit | 459e32b3697396d032d50e9b5b5ab98518ce5cec (patch) | |
tree | 14f75afa557a4e13b65cf1a33b8bf474850167ee /op-mode-definitions/show-interfaces-vxlan.xml | |
parent | 35d8f6ecc6b657bb842619eff15e8e71a66b7891 (diff) | |
download | vyos-1x-459e32b3697396d032d50e9b5b5ab98518ce5cec.tar.gz vyos-1x-459e32b3697396d032d50e9b5b5ab98518ce5cec.zip |
op-mode: T2546: migrate show interfaces tunnel,input,pseudo-ethernet,l2tpv3 ...
Migrate additional show commands to XML
* show interfaces tunnel ...
* show interfaces input ...
* show interfaces pseudo-ethernet ...
* show interfaces l2tpv3 ...
* show interfaces bridge ...
* show interfaces vti ...
* show interfaces vxlan ...
Diffstat (limited to 'op-mode-definitions/show-interfaces-vxlan.xml')
-rw-r--r-- | op-mode-definitions/show-interfaces-vxlan.xml | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/op-mode-definitions/show-interfaces-vxlan.xml b/op-mode-definitions/show-interfaces-vxlan.xml new file mode 100644 index 000000000..4e3cb93cd --- /dev/null +++ b/op-mode-definitions/show-interfaces-vxlan.xml @@ -0,0 +1,42 @@ +<?xml version="1.0"?> +<interfaceDefinition> + <node name="show"> + <children> + <node name="interfaces"> + <children> + <tagNode name="vxlan"> + <properties> + <help>Show VXLAN interface information</help> + <completionHelp> + <path>interfaces vxlan</path> + </completionHelp> + </properties> + <command>${vyos_op_scripts_dir}/show_interfaces.py --intf="$4"</command> + <children> + <leafNode name="brief"> + <properties> + <help>Show summary of the specified VXLAN interface information</help> + </properties> + <command>${vyos_op_scripts_dir}/show_interfaces.py --intf="$4" --action=show-brief</command> + </leafNode> + </children> + </tagNode> + <node name="vxlan"> + <properties> + <help>Show VXLAN interface information</help> + </properties> + <command>${vyos_op_scripts_dir}/show_interfaces.py --intf-type=vxlan --action=show-brief</command> + <children> + <leafNode name="detail"> + <properties> + <help>Show detailed VXLAN interface information</help> + </properties> + <command>${vyos_op_scripts_dir}/show_interfaces.py --intf-type=vxlan --action=show</command> + </leafNode> + </children> + </node> + </children> + </node> + </children> + </node> +</interfaceDefinition> |