summaryrefslogtreecommitdiff
path: root/interface-definitions
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2019-08-19 23:46:19 +0200
committerGitHub <noreply@github.com>2019-08-19 23:46:19 +0200
commit246d2dbad9df96ac895e88c9103eefa9f4cf04d7 (patch)
tree8e67e590dcc9d1709626435d751435e567f9f8b9 /interface-definitions
parent5d858f0e6ad05b032c88c88a08c15d0876c44e8b (diff)
parent4bd223a00ee35ff92aff4cb19d08c1c6c9190e10 (diff)
downloadvyos-1x-246d2dbad9df96ac895e88c9103eefa9f4cf04d7.tar.gz
vyos-1x-246d2dbad9df96ac895e88c9103eefa9f4cf04d7.zip
Merge pull request #109 from c-po/t1580-dummy
T1580 dummy
Diffstat (limited to 'interface-definitions')
-rw-r--r--interface-definitions/interfaces-dummy.xml51
1 files changed, 51 insertions, 0 deletions
diff --git a/interface-definitions/interfaces-dummy.xml b/interface-definitions/interfaces-dummy.xml
new file mode 100644
index 000000000..7c425480a
--- /dev/null
+++ b/interface-definitions/interfaces-dummy.xml
@@ -0,0 +1,51 @@
+<?xml version="1.0"?>
+<interfaceDefinition>
+ <node name="interfaces">
+ <children>
+ <tagNode name="dummy" owner="${vyos_conf_scripts_dir}/interface-dummy.py">
+ <properties>
+ <help>Dummy interface name</help>
+ <priority>300</priority>
+ <constraint>
+ <regex>dum[0-9]+$</regex>
+ </constraint>
+ <constraintErrorMessage>Dummy interface must be named dumN</constraintErrorMessage>
+ <valueHelp>
+ <format>dumN</format>
+ <description>Dummy interface name</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>
+ <leafNode name="disable">
+ <properties>
+ <help>Disable interface</help>
+ </properties>
+ </leafNode>
+ </children>
+ </tagNode>
+ </children>
+ </node>
+</interfaceDefinition>