diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-08-21 18:33:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-21 18:33:53 +0200 |
commit | 8520b829e381382af66833f6ea61aa04e03c332b (patch) | |
tree | f63836e5a7c9b950a5f0aca0cfeb084a91f933c1 /interface-definitions | |
parent | 63855b5c6b674d102804b43bcda85499a43973a4 (diff) | |
parent | d553b380d59961093f777ce55f7e98cc8bd1844b (diff) | |
download | vyos-1x-8520b829e381382af66833f6ea61aa04e03c332b.tar.gz vyos-1x-8520b829e381382af66833f6ea61aa04e03c332b.zip |
Merge pull request #111 from c-po/t1601-loopback
T1601 loopback
Diffstat (limited to 'interface-definitions')
-rw-r--r-- | interface-definitions/interfaces-loopback.xml | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/interface-definitions/interfaces-loopback.xml b/interface-definitions/interfaces-loopback.xml new file mode 100644 index 000000000..267731b1c --- /dev/null +++ b/interface-definitions/interfaces-loopback.xml @@ -0,0 +1,46 @@ +<?xml version="1.0"?> +<interfaceDefinition> + <node name="interfaces"> + <children> + <tagNode name="loopback" owner="${vyos_conf_scripts_dir}/interface-loopback.py"> + <properties> + <help>Loopback interface</help> + <priority>300</priority> + <constraint> + <regex>lo$</regex> + </constraint> + <constraintErrorMessage>Loopback interface must be named lo</constraintErrorMessage> + <valueHelp> + <format>lo</format> + <description>Loopback interface</description> + </valueHelp> + </properties> + <children> + <leafNode name="address"> + <properties> + <help>IP address</help> + <valueHelp> + <format>ipv4net</format> + <description>IPv4 address and prefix length</description> + </valueHelp> + <valueHelp> + <format>ipv6net</format> + <description>IPv6 address and prefix length</description> + </valueHelp> + <multi/> + </properties> + </leafNode> + <leafNode name="description"> + <properties> + <help>Interface description</help> + <constraint> + <regex>^.{1,256}$</regex> + </constraint> + <constraintErrorMessage>Interface description too long (limit 256 characters)</constraintErrorMessage> + </properties> + </leafNode> + </children> + </tagNode> + </children> + </node> +</interfaceDefinition> |