diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-04-18 08:15:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-18 08:15:19 +0200 |
commit | cf1ad0c6e182dc82a8792d8a3af98de1f1b834e9 (patch) | |
tree | aaff64fccfe5b3f2eb874c5d2bf3edfd27aa3a80 /data | |
parent | 3b3b33e4ffe46747014342238807bfdacbe74db4 (diff) | |
parent | 26010aee52bc95ca0b09a149c2b4add404dd1bef (diff) | |
download | vyos-1x-cf1ad0c6e182dc82a8792d8a3af98de1f1b834e9.tar.gz vyos-1x-cf1ad0c6e182dc82a8792d8a3af98de1f1b834e9.zip |
Merge pull request #353 from alainlamar/T2306
feature: T2306: Add new cipher suites to the WiFi configuration
Diffstat (limited to 'data')
-rw-r--r-- | data/templates/wifi/hostapd.conf.tmpl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/data/templates/wifi/hostapd.conf.tmpl b/data/templates/wifi/hostapd.conf.tmpl index e2fb9ca8f..d6068e4db 100644 --- a/data/templates/wifi/hostapd.conf.tmpl +++ b/data/templates/wifi/hostapd.conf.tmpl @@ -572,6 +572,16 @@ wpa_pairwise={{ sec_wpa_cipher | join(" ") }} {%- endif -%} {% endif %} +{% if sec_wpa_group_cipher -%} +# Optional override for automatic group cipher selection +# This can be used to select a specific group cipher regardless of which +# pairwise ciphers were enabled for WPA and RSN. It should be noted that +# overriding the group cipher with an unexpected value can result in +# interoperability issues and in general, this parameter is mainly used for +# testing purposes. +group_cipher={{ sec_wpa_group_cipher | join(" ") }} +{% endif %} + {% if sec_wpa_passphrase -%} # IEEE 802.11 specifies two authentication algorithms. hostapd can be # configured to allow both of these or only one. Open system authentication |