diff options
author | Daniil Baturin <daniil@sentrium.io> | 2019-12-10 05:12:15 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-10 05:12:15 +0700 |
commit | be09f1ec2bbc2ba23c718b01a5f3b52dde44695f (patch) | |
tree | b5509a7d1d12ac7270f4177526cc51a1e8b6cd64 /interface-definitions/include/address-ipv4-ipv6-dhcp.xml.i | |
parent | eced4a49c67d2e0e3e131193afe679aee0c5c679 (diff) | |
parent | 0b3e8ee977604f2412dfcfa3da5ad24d56c1c7a5 (diff) | |
download | vyos-1x-be09f1ec2bbc2ba23c718b01a5f3b52dde44695f.tar.gz vyos-1x-be09f1ec2bbc2ba23c718b01a5f3b52dde44695f.zip |
Merge pull request #178 from c-po/t1843-xml-preprocessor
Add GCC preprocessor support for XML files
Diffstat (limited to 'interface-definitions/include/address-ipv4-ipv6-dhcp.xml.i')
-rw-r--r-- | interface-definitions/include/address-ipv4-ipv6-dhcp.xml.i | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/interface-definitions/include/address-ipv4-ipv6-dhcp.xml.i b/interface-definitions/include/address-ipv4-ipv6-dhcp.xml.i new file mode 100644 index 000000000..fb46f2c09 --- /dev/null +++ b/interface-definitions/include/address-ipv4-ipv6-dhcp.xml.i @@ -0,0 +1,29 @@ +<leafNode name="address"> + <properties> + <help>IP address</help> + <completionHelp> + <list>dhcp dhcpv6</list> + </completionHelp> + <valueHelp> + <format>ipv4net</format> + <description>IPv4 address and prefix length</description> + </valueHelp> + <valueHelp> + <format>ipv6net</format> + <description>IPv6 address and prefix length</description> + </valueHelp> + <valueHelp> + <format>dhcp</format> + <description>Dynamic Host Configuration Protocol</description> + </valueHelp> + <valueHelp> + <format>dhcpv6</format> + <description>Dynamic Host Configuration Protocol for IPv6</description> + </valueHelp> + <constraint> + <validator name="ip-cidr"/> + <regex>(dhcp|dhcpv6)</regex> + </constraint> + <multi/> + </properties> +</leafNode> |