diff options
author | Christian Breunig <christian@breunig.cc> | 2023-12-28 13:13:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-28 13:13:34 +0100 |
commit | e9310778ddb0118278396017026cb6fc1daff0c9 (patch) | |
tree | 7ce31b429b8397b08a41dd3cca12cb0a2c6d8138 /interface-definitions | |
parent | b0fc2507aab533c1d6c4472667f39f9c11f40e69 (diff) | |
parent | f39eb894d991d296a82c69d1ab783011b5d0ed2f (diff) | |
download | vyos-1x-e9310778ddb0118278396017026cb6fc1daff0c9.tar.gz vyos-1x-e9310778ddb0118278396017026cb6fc1daff0c9.zip |
Merge pull request #2695 from aapostoliuk/T5842-circinus
T5842: Rewritten PPTP to get_config_dict
Diffstat (limited to 'interface-definitions')
-rw-r--r-- | interface-definitions/vpn-pptp.xml.in | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/interface-definitions/vpn-pptp.xml.in b/interface-definitions/vpn-pptp.xml.in index 96f87f3e2..7bb8db798 100644 --- a/interface-definitions/vpn-pptp.xml.in +++ b/interface-definitions/vpn-pptp.xml.in @@ -15,6 +15,9 @@ <children> #include <include/accel-ppp/max-concurrent-sessions.xml.i> #include <include/accel-ppp/mtu-128-16384.xml.i> + <leafNode name="mtu"> + <defaultValue>1436</defaultValue> + </leafNode> <leafNode name="outside-address"> <properties> <help>External IP address to which VPN clients will connect</help> @@ -35,6 +38,9 @@ <leafNode name="require"> <properties> <help>Authentication protocol for remote access peer PPTP VPN</help> + <completionHelp> + <list>pap chap mschap mschap-v2</list> + </completionHelp> <valueHelp> <format>pap</format> <description>Require the peer to authenticate itself using PAP [Password Authentication Protocol].</description> @@ -51,7 +57,11 @@ <format>mschap-v2</format> <description>Require the peer to authenticate itself using MS-CHAPv2 [Microsoft Challenge Handshake Authentication Protocol, Version 2].</description> </valueHelp> + <constraint> + <regex>(pap|chap|mschap|mschap-v2)</regex> + </constraint> </properties> + <defaultValue>mschap-v2</defaultValue> </leafNode> <leafNode name="mppe"> <properties> @@ -75,6 +85,7 @@ <list>deny prefer require</list> </completionHelp> </properties> + <defaultValue>prefer</defaultValue> </leafNode> #include <include/accel-ppp/auth-mode.xml.i> <node name="local-users"> @@ -97,6 +108,7 @@ <properties> <help>Static client IP address</help> </properties> + <defaultValue>*</defaultValue> </leafNode> </children> </tagNode> @@ -109,6 +121,16 @@ </node> #include <include/radius-auth-server-ipv4.xml.i> #include <include/accel-ppp/radius-additions.xml.i> + <node name="radius"> + <children> + <leafNode name="timeout"> + <defaultValue>30</defaultValue> + </leafNode> + <leafNode name="acct-timeout"> + <defaultValue>30</defaultValue> + </leafNode> + </children> + </node> </children> </node> #include <include/accel-ppp/default-pool.xml.i> |