Skip to content

Commit f4fb21d

Browse files
author
GitTensor Miner
committed
luci-mod-network: rename WPA3 mixed mode to Transition Mode
Fix issue #8289: Rename 'WPA2-PSK/WPA3-SAE Mixed Mode' to 'WPA2-PSK/WPA3-SAE Transition Mode' to clarify that OpenWrt implements WPA3 Personal Transition mode, not Compatibility mode. This helps differentiate between Transition and Compatibility modes as specified in WPA3 Spec v3.4+. Note: Per WPA3 Spec v3.4 Sections 11.2 and 11.4, WPA3-Personal Transition Mode does not operate in the 6 GHz band or Sub 1 GHz band. Fixes: #8289
1 parent a8e7143 commit f4fb21d

File tree

1 file changed

+3
-1
lines changed
  • modules/luci-mod-network/htdocs/luci-static/resources/view/network

1 file changed

+3
-1
lines changed

modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1370,7 +1370,9 @@ return view.extend({
13701370

13711371
if (has_ap_sae || has_sta_sae) {
13721372
crypto_modes.push(['sae', 'WPA3-SAE', 31]);
1373-
crypto_modes.push(['sae-mixed', 'WPA2-PSK/WPA3-SAE Mixed Mode', 30]);
1373+
// Note: Per WPA3 Spec v3.4 Sections 11.2 and 11.4, WPA3-Personal Transition Mode
1374+
// does not operate in the 6 GHz band or Sub 1 GHz band
1375+
crypto_modes.push(['sae-mixed', 'WPA2-PSK/WPA3-SAE Transition Mode', 30]);
13741376
}
13751377

13761378
if (has_ap_wep || has_sta_wep) {

0 commit comments

Comments
 (0)