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 /data/templates | |
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 'data/templates')
-rw-r--r-- | data/templates/ipsec/swanctl/remote_access.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/ipsec/swanctl/remote_access.j2 b/data/templates/ipsec/swanctl/remote_access.j2 index adfa32bde..6bced88c7 100644 --- a/data/templates/ipsec/swanctl/remote_access.j2 +++ b/data/templates/ipsec/swanctl/remote_access.j2 @@ -33,7 +33,7 @@ auth = pubkey {% elif rw_conf.authentication.client_mode.startswith("eap") %} auth = {{ rw_conf.authentication.client_mode }} - eap_id = %any + eap_id = {{ '%any' if rw_conf.authentication.eap_id == 'any' else rw_conf.authentication.eap_id }} {% endif %} {% if rw_conf.authentication.client_mode is vyos_defined('eap-tls') or rw_conf.authentication.client_mode is vyos_defined('x509') %} {# pass all configured CAs as filenames, separated by commas #} |