Please read this before reporting a bug:
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
FS#65314 - [wpa_supplicant] Enable WPA 3 Enterprise and Fast Initial Link Setup
Attached to Project:
Arch Linux
Opened by Szabolcs Sipos (labuwx) - Wednesday, 29 January 2020, 03:58 GMT
Last edited by Toolybird (Toolybird) - Monday, 02 January 2023, 01:18 GMT
Opened by Szabolcs Sipos (labuwx) - Wednesday, 29 January 2020, 03:58 GMT
Last edited by Toolybird (Toolybird) - Monday, 02 January 2023, 01:18 GMT
|
DetailsDescription:
WPA 3 got partially (SAE, OWE) enabled in v2:2.9-4. It would be great if the enterprise features were also enabled. Fast Initial Link Setup (802.11ai) reduces connection setup time therefore it is another way to achieve fast roaming, besides Fast BSS Transition (802.11r). AFAIK neither method works with WPA 3 Enterprise so one might choose to stick with WPA 2 but use a stronger hash algorithm for key derivation, such as SHA384. Required build options: # WPA 3 Enterprise CONFIG_SUITEB=y CONFIG_SUITEB192=y # FILS (802.11ai) CONFIG_FILS=y CONFIG_FILS_SK_PFS=y # SHA384 CONFIG_SHA384=y |
This task depends upon
Closed by Toolybird (Toolybird)
Monday, 02 January 2023, 01:18 GMT
Reason for closing: Fixed
Additional comments about closing: wpa_supplicant 2:2.10-8
Monday, 02 January 2023, 01:18 GMT
Reason for closing: Fixed
Additional comments about closing: wpa_supplicant 2:2.10-8
FS#61119see also https://bbs.archlinux.org/viewtopic.php?id=244079Other distributions do support this already.
FS#73495. If you apply the attached diff is that enough? It does not enable CONFIG_SHA384 as that is enabled by CONFIG_SUITEB192 and CONFIG_OWE which also enables CONFIG_SHA512 so SAE finite cyclic groups 19, 20 and 21 should be supported.Assuming you have the base-devel group plus git installed
git clone https://github.com/archlinux/svntogit-community.git --single-branch --branch 'packages/wpa_supplicant' wpa_supplicant # Obtain PKGBUILD
cd wpa_supplicant/trunk/
curl -o PKGBUILD.diff https://bugs.archlinux.org/task/65314?getfile=22127 # Obtain patch
git apply PKGBUILD.diff # Apply patch
makepkg -rsi # Build then install package.