diff options
author | Christian Breunig <christian@breunig.cc> | 2023-09-30 08:34:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-30 08:34:00 +0200 |
commit | 179703886441ef5508a63ba6d9d4c11b050d3ff8 (patch) | |
tree | e237614e3b17dd11e3656fabc63575e6320eba25 /interface-definitions/include/policy | |
parent | 6a9aa992ea49d6f8a2a088cff5a36283e0cca9a8 (diff) | |
parent | 9f7a5f79200782f7849cab72f55a39dedf45f214 (diff) | |
download | vyos-1x-179703886441ef5508a63ba6d9d4c11b050d3ff8.tar.gz vyos-1x-179703886441ef5508a63ba6d9d4c11b050d3ff8.zip |
Merge pull request #2325 from sever-sever/T5165
T5165: Migrate policy local-route rule x destination to address
Diffstat (limited to 'interface-definitions/include/policy')
-rw-r--r-- | interface-definitions/include/policy/local-route_rule_ipv4_address.xml.i | 20 | ||||
-rw-r--r-- | interface-definitions/include/policy/local-route_rule_ipv6_address.xml.i | 20 |
2 files changed, 40 insertions, 0 deletions
diff --git a/interface-definitions/include/policy/local-route_rule_ipv4_address.xml.i b/interface-definitions/include/policy/local-route_rule_ipv4_address.xml.i new file mode 100644 index 000000000..ffe73ee32 --- /dev/null +++ b/interface-definitions/include/policy/local-route_rule_ipv4_address.xml.i @@ -0,0 +1,20 @@ +<!-- include start from policy/local-route_rule_ipv4_address.xml.i --> +<leafNode name="address"> + <properties> + <help>IPv4 address or prefix</help> + <valueHelp> + <format>ipv4</format> + <description>Address to match against</description> + </valueHelp> + <valueHelp> + <format>ipv4net</format> + <description>Prefix to match against</description> + </valueHelp> + <constraint> + <validator name="ipv4-address"/> + <validator name="ip-prefix"/> + </constraint> + <multi/> + </properties> +</leafNode> +<!-- include end --> diff --git a/interface-definitions/include/policy/local-route_rule_ipv6_address.xml.i b/interface-definitions/include/policy/local-route_rule_ipv6_address.xml.i new file mode 100644 index 000000000..d8fb6c074 --- /dev/null +++ b/interface-definitions/include/policy/local-route_rule_ipv6_address.xml.i @@ -0,0 +1,20 @@ +<!-- include start from policy/local-route_rule_ipv6_address.xml.i --> +<leafNode name="address"> + <properties> + <help>IPv6 address or prefix</help> + <valueHelp> + <format>ipv6</format> + <description>Address to match against</description> + </valueHelp> + <valueHelp> + <format>ipv6net</format> + <description>Prefix to match against</description> + </valueHelp> + <constraint> + <validator name="ipv6-address"/> + <validator name="ipv6-prefix"/> + </constraint> + <multi/> + </properties> +</leafNode> +<!-- include end --> |