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-pptp.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-pptp.xml.in')
-rw-r--r-- | interface-definitions/vpn-pptp.xml.in | 121 |
1 files changed, 121 insertions, 0 deletions
diff --git a/interface-definitions/vpn-pptp.xml.in b/interface-definitions/vpn-pptp.xml.in new file mode 100644 index 000000000..28a53acb9 --- /dev/null +++ b/interface-definitions/vpn-pptp.xml.in @@ -0,0 +1,121 @@ +<?xml version="1.0"?> +<interfaceDefinition> + <node name="vpn"> + <children> + <node name="pptp" owner="${vyos_conf_scripts_dir}/vpn_pptp.py"> + <properties> + <help>Point to Point Tunneling Protocol (PPTP) Virtual Private Network (VPN)</help> + <priority>901</priority> + </properties> + <children> + <node name="remote-access"> + <properties> + <help>Remote access PPTP VPN</help> + </properties> + <children> + #include <include/accel-ppp/mtu-128-16384.xml.i> + <leafNode name="outside-address"> + <properties> + <help>External IP address to which VPN clients will connect</help> + <constraint> + <validator name="ipv4-address"/> + </constraint> + </properties> + </leafNode> + #include <include/name-server-ipv4.xml.i> + #include <include/accel-ppp/wins-server.xml.i> + <node name="client-ip-pool"> + <properties> + <help>Pool of client IP addresses (must be within a /24)</help> + </properties> + <children> + #include <include/accel-ppp/client-ip-pool-start-stop.xml.i> + </children> + </node> + #include <include/accel-ppp/gateway-address.xml.i> + <node name="authentication"> + <properties> + <help>Authentication for remote access PPTP VPN</help> + </properties> + <children> + <leafNode name="require"> + <properties> + <help>Authentication protocol for remote access peer PPTP VPN</help> + <valueHelp> + <format>pap</format> + <description>Require the peer to authenticate itself using PAP [Password Authentication Protocol].</description> + </valueHelp> + <valueHelp> + <format>chap</format> + <description>Require the peer to authenticate itself using CHAP [Challenge Handshake Authentication Protocol].</description> + </valueHelp> + <valueHelp> + <format>mschap</format> + <description>Require the peer to authenticate itself using CHAP [Challenge Handshake Authentication Protocol].</description> + </valueHelp> + <valueHelp> + <format>mschap-v2</format> + <description>Require the peer to authenticate itself using MS-CHAPv2 [Microsoft Challenge Handshake Authentication Protocol, Version 2].</description> + </valueHelp> + </properties> + </leafNode> + <leafNode name="mppe"> + <properties> + <help>Specifies mppe negotioation preference. (default require mppe 128-bit stateless</help> + <valueHelp> + <format>deny</format> + <description>deny mppe</description> + </valueHelp> + <valueHelp> + <format>prefer</format> + <description>ask client for mppe, if it rejects do not fail</description> + </valueHelp> + <valueHelp> + <format>require</format> + <description>ask client for mppe, if it rejects drop connection</description> + </valueHelp> + <constraint> + <regex>(deny|prefer|require)</regex> + </constraint> + <completionHelp> + <list>deny prefer require</list> + </completionHelp> + </properties> + </leafNode> + #include <include/accel-ppp/auth-mode.xml.i> + <node name="local-users"> + <properties> + <help>Local user authentication for remote access PPTP VPN</help> + </properties> + <children> + <tagNode name="username"> + <properties> + <help>User name for authentication</help> + </properties> + <children> + #include <include/generic-disable-node.xml.i> + <leafNode name="password"> + <properties> + <help>Password for authentication</help> + </properties> + </leafNode> + <leafNode name="static-ip"> + <properties> + <help>Static client IP address</help> + </properties> + </leafNode> + </children> + </tagNode> + </children> + </node> + #include <include/radius-server-ipv4.xml.i> + #include <include/accel-ppp/radius-additions.xml.i> + </children> + </node> + </children> + </node> + </children> + </node> + </children> + </node> +</interfaceDefinition> |