diff options
Diffstat (limited to 'op-mode-definitions/show-interfaces.xml')
-rw-r--r-- | op-mode-definitions/show-interfaces.xml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/op-mode-definitions/show-interfaces.xml b/op-mode-definitions/show-interfaces.xml new file mode 100644 index 000000000..39b0f0a2c --- /dev/null +++ b/op-mode-definitions/show-interfaces.xml @@ -0,0 +1,27 @@ +<?xml version="1.0"?> +<interfaceDefinition> + <node name="show"> + <children> + <node name="interfaces"> + <properties> + <help>Show network interface information</help> + </properties> + <command>${vyos_op_scripts_dir}/show_interfaces.py --action=show-brief</command> + <children> + <leafNode name="counters"> + <properties> + <help>Show network interface counters</help> + </properties> + <command>${vyos_op_scripts_dir}/show_interfaces.py --action=show-count</command> + </leafNode> + <leafNode name="detail"> + <properties> + <help>Show detailed information of all interfaces</help> + </properties> + <command>${vyos_op_scripts_dir}/show_interfaces.py --action=show</command> + </leafNode> + </children> + </node> + </children> + </node> +</interfaceDefinition> |