diff options
author | Runar Borge <runar@borge.nu> | 2018-06-07 23:40:00 +0200 |
---|---|---|
committer | Runar Borge <runar@borge.nu> | 2018-06-07 23:40:00 +0200 |
commit | a10e594c1ad8f1bd51f2be9e82960a43c78ebced (patch) | |
tree | 6aad05f03efc0919f4157e925f22c96be2404fc6 | |
parent | ffabc3f80faae407a558c5827fe114254c686b98 (diff) | |
download | vyos-1x-a10e594c1ad8f1bd51f2be9e82960a43c78ebced.tar.gz vyos-1x-a10e594c1ad8f1bd51f2be9e82960a43c78ebced.zip |
T689: Convert show bridge to new syntax
-rw-r--r-- | op-mode-definitions/show-bridge.xml | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/op-mode-definitions/show-bridge.xml b/op-mode-definitions/show-bridge.xml new file mode 100644 index 000000000..53fe9175d --- /dev/null +++ b/op-mode-definitions/show-bridge.xml @@ -0,0 +1,37 @@ +<?xml version="1.0"?> +<interfaceDefinition> + <node name="show"> + <children> + <node name="bridge"> + <properties> + <help>Show bridging information</help> + </properties> + <command>/sbin/brctl show</command> + </node> + <tagNode name="bridge"> + <properties> + <help>Show bridge information for a given bridge interface</help> + <completionHelp> + <script>${vyatta_sbindir}/vyatta-interfaces.pl --show bridge</script> + </completionHelp> + </properties> + <command>/sbin/brctl show '$3'</command> + <children> + <node name="macs"> + <properties> + <help>Show bridge Media Access Control (MAC) address table</help> + </properties> + <command>/sbin/brctl showmacs '$3'</command> + </node> + <node name="spanning-tree"> + <properties> + <help>Show bridge spanning tree information</help> + </properties> + <command>/sbin/brctl showstp '$3'</command> + </node> + </children> + </tagNode> + + </children> + </node> +</interfaceDefinition> |