-
Notifications
You must be signed in to change notification settings - Fork 6.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for WPA3 enterprise only mode #83460
Add support for WPA3 enterprise only mode #83460
Conversation
Remove EAP TLS SHA256 security, as it was added to support the AKM of 00-0F-AC:5 in RSN IE, but actually this AKM is used by WPA3 enterprise only mode. Signed-off-by: Maochen Wang <[email protected]>
@MaochenWang1 the description shouldn't be copy-paste of all commit logs, it should have a summary describing the context of the changes (why, what..). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bc5dc57
to
c23db8b
Compare
updated, please review |
f3dbaa8
to
1f4799b
Compare
Hi @krish2718 @jukkar please review again. |
Change Wi-Fi suiteb type into WPA3 enterprise security type, it includes suiteB, suiteB-192 and WPA3 enterprise only mode. Support setting WPA3 enterprise only mode, which should use cipher_config->key_mgmt as WPA-EAP-SHA256, and the AKM in RSN IE will show 00-0F-AC:5. Signed-off-by: Maochen Wang <[email protected]>
Fix typo of EAP method, instead of EPA. Signed-off-by: Maochen Wang <[email protected]>
For 'wifi status' and 'wifi ap status' cmd of the hostap case, originally only support getting 'EAP-TLS' for the enterprise mode, which is not correct. Now support getting the specific enterprise mode, including the WPA3 enterprise mode and the EAP method type. Signed-off-by: Maochen Wang <[email protected]>
Support printing WPA3 enterprise type in scan result for more accurate display, including the suiteb, suiteb-192 and WPA3 enterprise only. Signed-off-by: Maochen Wang <[email protected]>
1f4799b
to
9880339
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @MaochenWang1 .
|
1 similar comment
Add check that should enable MFP when connect to WPA3 network, as MFP required is mandatory for WPA3 network. Signed-off-by: Maochen Wang <[email protected]>
Fix wrong parameter count error when input 'wifi connect' in enterprise mode. Signed-off-by: Maochen Wang <[email protected]>
9880339
to
962fc5c
Compare
Hi @krish2718 please review again. |
net: wifi: fix wifi connect parameter count error
Fix wrong parameter count error when input 'wifi connect' in enterprise mode.
net: wifi: should enable MFP when connect to WPA3 network
Add check that should enable MFP when connect to WPA3 network.
net: wifi: support printing WPA3 enterprise in scan result
Support printing WPA3 enterprise type in scan result, including the suiteb, suiteb-192 and WPA3 enterprise only.
hostap: support getting enterprise type by status cmd
For 'wifi status' and 'wifi ap status' cmd, support getting the specific enterprise mode, including the WPA3 enterprise mode and the EAP method type.
net: wifi: fix typo of EAP method
hostap: add WPA3 enterprise security type
Change Wi-Fi suiteb type into WPA3 enterprise security type. Support setting WPA3 enterprise only mode, which should use cipher_config->key_mgmt as WPA-EAP-SHA256, and the AKM in RSN IE will show 00-0F-AC:5.
net: l2: wifi: remove EAP TLS SHA256 security
Remove EAP TLS SHA256 security, as it should be replaced by WPA3 enterprise only mode.