diff options
author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2020-06-19 16:56:22 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-19 15:56:22 +0200 |
commit | a686e090b2bd19ce27d3d09318d63208448e0707 (patch) | |
tree | 227602605de719d2efbc6654d0c83779fba8419e /op-mode-definitions | |
parent | 4b5793bced424034daa944400eb8c2f198d0d0d2 (diff) | |
download | vyos-1x-a686e090b2bd19ce27d3d09318d63208448e0707.tar.gz vyos-1x-a686e090b2bd19ce27d3d09318d63208448e0707.zip |
op-mode: T2617: rewrite vyatta-op-quagga to XML
Diffstat (limited to 'op-mode-definitions')
-rw-r--r-- | op-mode-definitions/show-route-map.xml | 22 | ||||
-rw-r--r-- | op-mode-definitions/show-rpki.xml | 32 | ||||
-rw-r--r-- | op-mode-definitions/show-system.xml | 12 | ||||
-rw-r--r-- | op-mode-definitions/show-table.xml | 13 | ||||
-rw-r--r-- | op-mode-definitions/show-version.xml | 6 |
5 files changed, 85 insertions, 0 deletions
diff --git a/op-mode-definitions/show-route-map.xml b/op-mode-definitions/show-route-map.xml new file mode 100644 index 000000000..0e376757b --- /dev/null +++ b/op-mode-definitions/show-route-map.xml @@ -0,0 +1,22 @@ +<?xml version="1.0"?> +<interfaceDefinition> + <node name="show"> + <children> + <node name="route-map"> + <properties> + <help>Show route-map information</help> + </properties> + <command>/usr/bin/vtysh -c "show route-map"</command> + </node> + <tagNode name="route-map"> + <properties> + <help>Show specified route-map information</help> + <completionHelp> + <path>policy route-map</path> + </completionHelp> + </properties> + <command>/usr/bin/vtysh -c "show route-map $3"</command> + </tagNode> + </children> + </node> +</interfaceDefinition> diff --git a/op-mode-definitions/show-rpki.xml b/op-mode-definitions/show-rpki.xml new file mode 100644 index 000000000..d68c3b862 --- /dev/null +++ b/op-mode-definitions/show-rpki.xml @@ -0,0 +1,32 @@ +<?xml version="1.0"?> +<interfaceDefinition> + <node name="show"> + <children> + <node name="rpki"> + <properties> + <help>Show RPKI information</help> + </properties> + <children> + <leafNode name="cache-connection"> + <properties> + <help>Show RPKI cache connections</help> + </properties> + <command>/usr/bin/vtysh -c "show rpki cache-connection"</command> + </leafNode> + <leafNode name="cache-server"> + <properties> + <help>Show RPKI cache servers information</help> + </properties> + <command>/usr/bin/vtysh -c "show rpki cache-server"</command> + </leafNode> + <leafNode name="prefix-table"> + <properties> + <help>Show RPKI-validated prefixes</help> + </properties> + <command>/usr/bin/vtysh -c "show rpki prefix-table"</command> + </leafNode> + </children> + </node> + </children> + </node> +</interfaceDefinition> diff --git a/op-mode-definitions/show-system.xml b/op-mode-definitions/show-system.xml index a39d9b481..74b34ae92 100644 --- a/op-mode-definitions/show-system.xml +++ b/op-mode-definitions/show-system.xml @@ -124,6 +124,12 @@ </properties> <command>cat /proc/meminfo</command> </leafNode> + <leafNode name="routing-daemons"> + <properties> + <help>Show memory usage of all routing protocols</help> + </properties> + <command>/usr/bin/vtysh -c "show memory"</command> + </leafNode> </children> </node> <node name="processes"> @@ -152,6 +158,12 @@ </leafNode> </children> </node> + <leafNode name="routing-daemons"> + <properties> + <help>Show Quagga routing daemons</help> + </properties> + <command>/usr/bin/vtysh -c "show daemons"</command> + </leafNode> <leafNode name="storage"> <properties> <help>Show filesystem usage</help> diff --git a/op-mode-definitions/show-table.xml b/op-mode-definitions/show-table.xml new file mode 100644 index 000000000..b093a5de7 --- /dev/null +++ b/op-mode-definitions/show-table.xml @@ -0,0 +1,13 @@ +<?xml version="1.0"?> +<interfaceDefinition> + <node name="show"> + <children> + <leafNode name="table"> + <properties> + <help>Show routing tables</help> + </properties> + <command>/usr/bin/vtysh -c "show zebra router table summary"</command> + </leafNode> + </children> + </node> +</interfaceDefinition> diff --git a/op-mode-definitions/show-version.xml b/op-mode-definitions/show-version.xml index 8bf23de82..aae5bb008 100644 --- a/op-mode-definitions/show-version.xml +++ b/op-mode-definitions/show-version.xml @@ -20,6 +20,12 @@ </properties> <command>${vyos_op_scripts_dir}/show_version.py --all</command> </leafNode> + <leafNode name="quagga"> + <properties> + <help>Show Quagga version information</help> + </properties> + <command>/usr/bin/vtysh -c "show version"</command> + </leafNode> </children> </node> </children> |