diff options
author | l0crian1 <ryan.claridge13@gmail.com> | 2025-03-28 14:38:59 -0400 |
---|---|---|
committer | l0crian1 <ryan.claridge13@gmail.com> | 2025-03-28 14:38:59 -0400 |
commit | 4b489bee561c8ab4cc73f3aa713939aa492084b8 (patch) | |
tree | 37979436cbb0763e492e1d508fb1928db2155a85 | |
parent | 2530451719a680af4162fe3f901e91ec2e89c3b2 (diff) | |
download | vyos-1x-4b489bee561c8ab4cc73f3aa713939aa492084b8.tar.gz vyos-1x-4b489bee561c8ab4cc73f3aa713939aa492084b8.zip |
t7254: op-mode: Add spanning-tree op-mode commands:
Added stp.py to create output for spanning-tree info
Modified op-mode-definitions\show-bridge.xml.in to add these commands:
show bridge spanning-tree
show bridge spanning-tree detail
show bridge <interface> spanning-tree
show bridge <interface> spanning-tree detail
-rw-r--r-- | op-mode-definitions/show-bridge.xml.in | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/op-mode-definitions/show-bridge.xml.in b/op-mode-definitions/show-bridge.xml.in index 1212ab1f9..40fadac8b 100644 --- a/op-mode-definitions/show-bridge.xml.in +++ b/op-mode-definitions/show-bridge.xml.in @@ -7,6 +7,20 @@ <help>Show bridging information</help> </properties> <children> + <node name="spanning-tree"> + <properties> + <help>View Spanning Tree info for all bridges</help> + </properties> + <command>${vyos_op_scripts_dir}/stp.py show_stp</command> + <children> + <leafNode name="detail"> + <properties> + <help>Show detailed Spanning Tree info for all bridges</help> + </properties> + <command>${vyos_op_scripts_dir}/stp.py show_stp --detail</command> + </leafNode> + </children> + </node> <node name="vlan"> <properties> <help>View the VLAN filter settings of the bridge</help> @@ -44,6 +58,20 @@ </properties> <command>bridge -c link show | grep "master $3"</command> <children> + <node name="spanning-tree"> + <properties> + <help>View Spanning Tree info for specified bridges</help> + </properties> + <command>${vyos_op_scripts_dir}/stp.py show_stp --ifname=$3</command> + <children> + <leafNode name="detail"> + <properties> + <help>Show detailed Spanning Tree info for specified bridge</help> + </properties> + <command>${vyos_op_scripts_dir}/stp.py show_stp --ifname=$3 --detail</command> + </leafNode> + </children> + </node> <leafNode name="mdb"> <properties> <help>Displays the multicast group database for the bridge</help> |