diff options
author | Christian Breunig <christian@breunig.cc> | 2024-01-03 18:58:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-03 18:58:17 +0100 |
commit | 1cc70ce273cbddb5ea9eb4148808c6c2aaf3d28f (patch) | |
tree | 3a175bdd292e31fc91f2215dd4aaa4b5f01c39a1 /interface-definitions/vpn_pptp.xml.in | |
parent | 4f56a3df61cd66234fa2fda254869c17eaf1eca6 (diff) | |
parent | df2db15dde6ef928556a4e632bce3222428c6486 (diff) | |
download | vyos-1x-1cc70ce273cbddb5ea9eb4148808c6c2aaf3d28f.tar.gz vyos-1x-1cc70ce273cbddb5ea9eb4148808c6c2aaf3d28f.zip |
Merge pull request #2719 from c-po/sagitta-backports-accel-ppp
Backports for Accel-PPP based serviced T5801, T5842 and T5688
Diffstat (limited to 'interface-definitions/vpn_pptp.xml.in')
-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> |