diff options
author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2023-03-31 23:57:29 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-31 23:57:29 +0300 |
commit | 960b635f98b3fcad3d8890e6b7651519a85dabeb (patch) | |
tree | 2789494d62355cdd0648a0084b7a97aa70d8bea1 /interface-definitions/include | |
parent | 11ace86f58261908f1ab15366b73aeddb14745c9 (diff) | |
parent | 11b1d043310833447ddeea3b68fba2a1d1f5799d (diff) | |
download | vyos-1x-960b635f98b3fcad3d8890e6b7651519a85dabeb.tar.gz vyos-1x-960b635f98b3fcad3d8890e6b7651519a85dabeb.zip |
Merge pull request #1920 from jestabro/https-allow-client
http-api: T5126: allow restricting client IP address
Diffstat (limited to 'interface-definitions/include')
-rw-r--r-- | interface-definitions/include/allow-client.xml.i | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/interface-definitions/include/allow-client.xml.i b/interface-definitions/include/allow-client.xml.i new file mode 100644 index 000000000..03a0b3ff8 --- /dev/null +++ b/interface-definitions/include/allow-client.xml.i @@ -0,0 +1,33 @@ + <node name="allow-client"> + <properties> + <help>Restrict to allowed IP client addresses</help> + </properties> + <children> + <leafNode name="address"> + <properties> + <help>Allowed IP client addresses</help> + <valueHelp> + <format>ipv4</format> + <description>IPv4 address</description> + </valueHelp> + <valueHelp> + <format>ipv6</format> + <description>IPv6 address</description> + </valueHelp> + <valueHelp> + <format>ipv4net</format> + <description>IPv4 address and prefix length</description> + </valueHelp> + <valueHelp> + <format>ipv6net</format> + <description>IPv6 address and prefix length</description> + </valueHelp> + <constraint> + <validator name="ip-address"/> + <validator name="ip-cidr"/> + </constraint> + <multi/> + </properties> + </leafNode> + </children> + </node> |