diff options
author | Christian Breunig <christian@breunig.cc> | 2024-04-22 06:59:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-22 06:59:09 +0200 |
commit | b5d3d36d1f70e53ef6a8a6634ab863d94d791bf2 (patch) | |
tree | ab470519b8d5d63b7b19ba56bc3d688761c87f18 /interface-definitions | |
parent | 0cb4294fdfe5ae0e0e8fd06436f38b67f16413a2 (diff) | |
parent | 78ea623df20b44309cc6ac9848ed18e97fc4ed03 (diff) | |
download | vyos-1x-b5d3d36d1f70e53ef6a8a6634ab863d94d791bf2.tar.gz vyos-1x-b5d3d36d1f70e53ef6a8a6634ab863d94d791bf2.zip |
Merge pull request #3337 from Embezzle/T6237
T6237: IPSec remote access VPN: ability to set EAP ID of clients
Diffstat (limited to 'interface-definitions')
-rw-r--r-- | interface-definitions/vpn_ipsec.xml.in | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/interface-definitions/vpn_ipsec.xml.in b/interface-definitions/vpn_ipsec.xml.in index 833019d68..7f425d982 100644 --- a/interface-definitions/vpn_ipsec.xml.in +++ b/interface-definitions/vpn_ipsec.xml.in @@ -768,6 +768,26 @@ <children> #include <include/ipsec/authentication-id.xml.i> #include <include/ipsec/authentication-x509.xml.i> + <leafNode name="eap-id"> + <properties> + <help>Remote EAP ID for client authentication</help> + <valueHelp> + <format>txt</format> + <description>Remote EAP ID for client authentication</description> + </valueHelp> + <completionHelp> + <list>any</list> + </completionHelp> + <valueHelp> + <format>any</format> + <description>Allow any EAP ID</description> + </valueHelp> + <constraint> + <regex>[[:ascii:]]{1,64}</regex> + </constraint> + </properties> + <defaultValue>any</defaultValue> + </leafNode> <leafNode name="client-mode"> <properties> <help>Client authentication mode</help> |