diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-03-21 11:35:21 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-03-21 11:35:23 +0100 |
commit | 3cb84afe3a6b9f22a35e0a887f7ca350644d6c8a (patch) | |
tree | 15d57b133aab018e4d0bf81d2af0ac07f5b13ea7 /interface-definitions | |
parent | b666f8ba97dc792aac90fad4c4c99e47caca7baf (diff) | |
download | vyos-1x-3cb84afe3a6b9f22a35e0a887f7ca350644d6c8a.tar.gz vyos-1x-3cb84afe3a6b9f22a35e0a887f7ca350644d6c8a.zip |
isis: T3417: move from cli tagNode to node
As there can only be one running IS-IS process (FRR limitation) there is no need
in having a tagNode here. This adds artifical restrictions/limitations when
moving on to support VRFs for IS-IS protocol.
Diffstat (limited to 'interface-definitions')
-rw-r--r-- | interface-definitions/protocols-isis.xml.in | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/interface-definitions/protocols-isis.xml.in b/interface-definitions/protocols-isis.xml.in index 0afa8dcb1..e6982aca3 100644 --- a/interface-definitions/protocols-isis.xml.in +++ b/interface-definitions/protocols-isis.xml.in @@ -2,14 +2,10 @@ <interfaceDefinition> <node name="protocols"> <children> - <tagNode name="isis" owner="${vyos_conf_scripts_dir}/protocols_isis.py"> + <node name="isis" owner="${vyos_conf_scripts_dir}/protocols_isis.py"> <properties> <help>Intermediate System to Intermediate System (IS-IS)</help> <priority>610</priority> - <valueHelp> - <format>text(TAG)</format> - <description>ISO Routing area tag</description> - </valueHelp> </properties> <children> <node name="area-password"> @@ -101,6 +97,15 @@ </node> </children> </node> + <leafNode name="domain"> + <properties> + <help>Domain name used for this instance</help> + <valueHelp> + <format>txt</format> + <description>IS-IS routing area domain/tag</description> + </valueHelp> + </properties> + </leafNode> <node name="domain-password"> <properties> <help>Set the authentication password for a routing domain</help> @@ -766,7 +771,7 @@ </children> </tagNode> </children> - </tagNode> + </node> </children> </node> </interfaceDefinition> |