diff options
author | John Estabrook <jestabro@sentrium.io> | 2019-07-01 13:57:52 -0500 |
---|---|---|
committer | John Estabrook <jestabro@sentrium.io> | 2019-07-01 13:57:52 -0500 |
commit | d56d52990f5b30a1b03b2479767e91aa3aa2cdc5 (patch) | |
tree | f49803d26a24719a3bb25cced8ed0d0b9d717d46 /interface-definitions | |
parent | 2abd3cf50c6fedf79ce0f01337ef8bb1eb44116e (diff) | |
download | vyos-1x-d56d52990f5b30a1b03b2479767e91aa3aa2cdc5.tar.gz vyos-1x-d56d52990f5b30a1b03b2479767e91aa3aa2cdc5.zip |
[service https] T1443: add service https and service https api
Diffstat (limited to 'interface-definitions')
-rw-r--r-- | interface-definitions/https.xml | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/interface-definitions/https.xml b/interface-definitions/https.xml new file mode 100644 index 000000000..828de449c --- /dev/null +++ b/interface-definitions/https.xml @@ -0,0 +1,87 @@ +<?xml version="1.0"?> +<!-- HTTPS configuration --> +<interfaceDefinition> + <node name="service"> + <children> + <node name="https" owner="${vyos_conf_scripts_dir}/https.py"> + <properties> + <help>HTTPS configuration</help> + <priority>1001</priority> + </properties> + <children> + <leafNode name="listen-address"> + <properties> + <help>Addresses to listen for HTTPS requests</help> + <valueHelp> + <format>ipv4</format> + <description>HTTPS IPv4 address</description> + </valueHelp> + <valueHelp> + <format>ipv6</format> + <description>HTTPS IPv6 address</description> + </valueHelp> + <multi/> + <constraint> + <validator name="ipv4-address"/> + <validator name="ipv6-address"/> + </constraint> + </properties> + </leafNode> + <node name="api" owner="${vyos_conf_scripts_dir}/http-api.py"> + <properties> + <help>VyOS HTTP API configuration</help> + <priority>1002</priority> + </properties> + <children> + <leafNode name="port"> + <properties> + <help>Port for HTTP API service</help> + <valueHelp> + <format>1-65535</format> + <description>Numeric IP port</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 1-65535"/> + </constraint> + </properties> + </leafNode> + <node name="keys"> + <properties> + <help>HTTP API keys</help> + </properties> + <children> + <tagNode name="id"> + <properties> + <help>HTTP API id</help> + </properties> + <children> + <leafNode name="key"> + <properties> + <help>HTTP API plaintext key</help> + </properties> + </leafNode> + </children> + </tagNode> + </children> + </node> + <leafNode name="strict"> + <properties> + <help>Enforce strict path checking</help> + <valueless/> + </properties> + </leafNode> + <leafNode name="debug"> + <properties> + <help>Debug</help> + <valueless/> + <hidden/> + </properties> + </leafNode> + </children> + </node> + </children> + </node> + </children> + </node> +</interfaceDefinition> + |