diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-03-21 20:30:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-21 20:30:28 +0100 |
commit | d2bf3bc3bd12f854cfa2ad8bdf5980e2cd6a90b9 (patch) | |
tree | 2cafb5b7553eb2fdb980201e36fc3a055bc3614f /op-mode-definitions/show-zebra.xml.in | |
parent | 300f1d2962f9f3f59cc13eac7c03c21f1c9a8eb1 (diff) | |
parent | 0a34f23012f5f0621d5d15a1a5c30c04dfc68bf9 (diff) | |
download | vyos-1x-d2bf3bc3bd12f854cfa2ad8bdf5980e2cd6a90b9.tar.gz vyos-1x-d2bf3bc3bd12f854cfa2ad8bdf5980e2cd6a90b9.zip |
Merge pull request #779 from c-po/isis-vrf
ISIS: add VRF support
Diffstat (limited to 'op-mode-definitions/show-zebra.xml.in')
-rw-r--r-- | op-mode-definitions/show-zebra.xml.in | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/op-mode-definitions/show-zebra.xml.in b/op-mode-definitions/show-zebra.xml.in new file mode 100644 index 000000000..b0ad37f49 --- /dev/null +++ b/op-mode-definitions/show-zebra.xml.in @@ -0,0 +1,54 @@ +<?xml version="1.0"?> +<interfaceDefinition> + <node name="show"> + <children> + <node name="zebra"> + <properties> + <help>Zebra routing information</help> + </properties> + <command>${vyos_op_scripts_dir}/vtysh_wrapper.sh $@</command> + <children> + <node name="client"> + <properties> + <help>Client information </help> + </properties> + <children> + <node name="summary"> + <properties> + <help>Brief Summary</help> + </properties> + <command>${vyos_op_scripts_dir}/vtysh_wrapper.sh $@</command> + </node> + </children> + </node> + <node name="dplane"> + <properties> + <help>Zebra dataplane information</help> + </properties> + <command>${vyos_op_scripts_dir}/vtysh_wrapper.sh $@</command> + </node> + <node name="router"> + <properties> + <help>Zebra Router Information</help> + </properties> + <children> + <node name="table"> + <properties> + <help>Table Information about this Zebra Router</help> + </properties> + <children> + <node name="summary"> + <properties> + <help>Summary Information</help> + </properties> + <command>${vyos_op_scripts_dir}/vtysh_wrapper.sh $@</command> + </node> + </children> + </node> + </children> + </node> + </children> + </node> + </children> + </node> +</interfaceDefinition> |