diff options
| author | Robert Marko | 2019-03-14 10:03:16 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2019-03-21 14:17:21 +0000 |
| commit | a8cf037604c4a7f58ff54339b359c62c73d32ad4 (patch) | |
| tree | c66b783e7efc2a5be0350b0447dc15cd2c52ab2b | |
| parent | 81ac3bce0157f96fbc31cf6e965eecb170e48c88 (diff) | |
| download | netifd-a8cf037604c4a7f58ff54339b359c62c73d32ad4.tar.gz | |
netifd: wireless: Add support for GCMP cipher
This patch will add support for using GCMP as cipher suite.
This is not a strong cipher but is only one supported by
wil6210 driver in order to have encrypted traffic.
Signed-off-by: Robert Marko <robimarko@gmail.com>
| -rw-r--r-- | scripts/netifd-wireless.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/netifd-wireless.sh b/scripts/netifd-wireless.sh index 991544e..4c64e25 100644 --- a/scripts/netifd-wireless.sh +++ b/scripts/netifd-wireless.sh @@ -200,6 +200,7 @@ wireless_vif_parse_encryption() { *tkip+aes|*tkip+ccmp|*aes+tkip|*ccmp+tkip) wpa_cipher="CCMP TKIP";; *aes|*ccmp) wpa_cipher="CCMP";; *tkip) wpa_cipher="TKIP";; + *gcmp) wpa_cipher="GCMP";; esac # 802.11n requires CCMP for WPA |