diff options
author | Nataliia Solomko <natalirs1985@gmail.com> | 2024-08-27 13:50:16 +0300 |
---|---|---|
committer | Nataliia Solomko <natalirs1985@gmail.com> | 2024-09-04 13:49:13 +0300 |
commit | c9c37a56cdee45dfa7d4b2e677e88a19afde8ac7 (patch) | |
tree | 26d3855fd02c9e7ea35ea8907cd18bd4d8445e41 /op-mode-definitions/show-openfabric.xml.in | |
parent | 2277371fe18577502ce318c23789f86d1ec97be7 (diff) | |
download | vyos-1x-c9c37a56cdee45dfa7d4b2e677e88a19afde8ac7.tar.gz vyos-1x-c9c37a56cdee45dfa7d4b2e677e88a19afde8ac7.zip |
openfabric: T6652: Add support for OpenFabric protocol
OpenFabric is a routing protocol providing link-state routing with efficient flooding for topologies like spine-leaf networks.
FRR implements OpenFabric in a daemon called fabricd
Diffstat (limited to 'op-mode-definitions/show-openfabric.xml.in')
-rw-r--r-- | op-mode-definitions/show-openfabric.xml.in | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/op-mode-definitions/show-openfabric.xml.in b/op-mode-definitions/show-openfabric.xml.in new file mode 100644 index 000000000..2f489866e --- /dev/null +++ b/op-mode-definitions/show-openfabric.xml.in @@ -0,0 +1,51 @@ +<?xml version="1.0"?> +<interfaceDefinition> + <node name="show"> + <children> + <node name="openfabric"> + <properties> + <help>Show OpenFabric routing protocol</help> + </properties> + <children> + <node name="database"> + <properties> + <help>Show OpenFabric link state database</help> + </properties> + <children> + #include <include/vtysh-generic-detail.xml.i> + </children> + <command>${vyos_op_scripts_dir}/vtysh_wrapper.sh $@</command> + </node> + <node name="interface"> + <properties> + <help>Show OpenFabric interfaces</help> + <completionHelp> + <script>${vyos_completion_dir}/list_interfaces</script> + </completionHelp> + </properties> + <children> + #include <include/vtysh-generic-detail.xml.i> + </children> + <command>${vyos_op_scripts_dir}/vtysh_wrapper.sh $@</command> + </node> + #include <include/vtysh-generic-interface-tagNode.xml.i> + <node name="neighbor"> + <properties> + <help>Show OpenFabric neighbor adjacencies</help> + </properties> + <children> + #include <include/vtysh-generic-detail.xml.i> + </children> + <command>${vyos_op_scripts_dir}/vtysh_wrapper.sh $@</command> + </node> + <leafNode name="summary"> + <properties> + <help>Show OpenFabric information summary</help> + </properties> + <command>${vyos_op_scripts_dir}/vtysh_wrapper.sh $@</command> + </leafNode> + </children> + </node> + </children> + </node> +</interfaceDefinition> |