diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-06-29 19:16:53 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-06-29 19:18:21 +0200 |
commit | 6b64f2eeb192ee1133d3f90be2ae2854a0c00ddc (patch) | |
tree | 2a7934510cce1883d1f6c221bec1657824571ff2 /interface-definitions/vpn-sstp.xml.in | |
parent | fba14cd5f49802f70bcfaf93aaa25d4440e2f836 (diff) | |
download | vyos-1x-6b64f2eeb192ee1133d3f90be2ae2854a0c00ddc.tar.gz vyos-1x-6b64f2eeb192ee1133d3f90be2ae2854a0c00ddc.zip |
xml: streamline interface definition filenames, drop _
Some files that described the CLI used underscores to split CLI levels, some
others did not. This commit removes all underscores from the filename and only
makes use of a hyphen.
Diffstat (limited to 'interface-definitions/vpn-sstp.xml.in')
-rw-r--r-- | interface-definitions/vpn-sstp.xml.in | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/interface-definitions/vpn-sstp.xml.in b/interface-definitions/vpn-sstp.xml.in new file mode 100644 index 000000000..195d581df --- /dev/null +++ b/interface-definitions/vpn-sstp.xml.in @@ -0,0 +1,69 @@ +<?xml version="1.0"?> +<interfaceDefinition> + <node name="vpn"> + <children> + <node name="sstp" owner="${vyos_conf_scripts_dir}/vpn_sstp.py"> + <properties> + <help>Secure Socket Tunneling Protocol (SSTP) server</help> + <priority>901</priority> + </properties> + <children> + <node name="authentication"> + <properties> + <help>Authentication for remote access SSTP Server</help> + </properties> + <children> + #include <include/accel-ppp/auth-local-users.xml.i> + #include <include/accel-ppp/auth-mode.xml.i> + #include <include/accel-ppp/auth-protocols.xml.i> + #include <include/radius-server-ipv4.xml.i> + #include <include/accel-ppp/radius-additions.xml.i> + <node name="radius"> + <children> + #include <include/accel-ppp/radius-additions-rate-limit.xml.i> + </children> + </node> + </children> + </node> + #include <include/interface/mtu-68-1500.xml.i> + #include <include/accel-ppp/gateway-address.xml.i> + #include <include/name-server-ipv4-ipv6.xml.i> + <node name="client-ip-pool"> + <properties> + <help>Client IP pools and gateway setting</help> + </properties> + <children> + #include <include/accel-ppp/client-ip-pool-subnet.xml.i> + </children> + </node> + #include <include/accel-ppp/client-ipv6-pool.xml.i> + #include <include/port-number.xml.i> + <leafNode name="port"> + <defaultValue>443</defaultValue> + </leafNode> + <node name="ppp-options"> + <properties> + <help>PPP (Point-to-Point Protocol) settings</help> + </properties> + <children> + #include <include/accel-ppp/ppp-mppe.xml.i> + #include <include/accel-ppp/ppp-options-ipv4.xml.i> + #include <include/accel-ppp/ppp-options-ipv6.xml.i> + #include <include/accel-ppp/lcp-echo-interval-failure.xml.i> + #include <include/accel-ppp/lcp-echo-timeout.xml.i> + </children> + </node> + <node name="ssl"> + <properties> + <help>SSL Certificate, SSL Key and CA</help> + </properties> + <children> + #include <include/pki/ca-certificate.xml.i> + #include <include/pki/certificate.xml.i> + </children> + </node> + </children> + </node> + </children> + </node> +</interfaceDefinition> |