luci-mod-network: add WiFi 7 (802.11be / EHT) advanced configuration options#8461
luci-mod-network: add WiFi 7 (802.11be / EHT) advanced configuration options#8461prokowsoftware wants to merge 1 commit intoopenwrt:masterfrom
Conversation
Is this for client mode? |
No, disable_eht here is for AP mode only. In a typical deployment, the AP advertises its capabilities via beacons and the client adapts accordingly — so disabling EHT on the AP side is sufficient to fall back to 802.11ax (HE). disable_eht is also supported by wpa_supplicant (client mode), but that use case is niche — it would only be needed if you want a station to avoid EHT even when the AP offers it (e.g. for debugging or compatibility testing). We didn't include it here as it's outside the scope of this PR. |
Okay so what's the point of this option? |
|
Good question. The difference is subtle but useful in practice: When you set htmode to an HE (WiFi 6) mode, you reconfigure the entire radio — channel width, beamforming, everything — for 802.11ax. disable_eht lets you keep your EHT channel configuration (e.g. EHT320) but disable the 802.11be-specific features, so the AP falls back to HE for client associations. This is useful for:
If you want to permanently run in WiFi 6 mode, yes — just select an HE htmode. disable_eht is more of a diagnostic/transitional toggle. |
|
To be honest, the main motivation for this PR was sae_pwe. We were unable to properly configure our AP with WPA3/SAE — clients kept failing to associate — until we set sae_pwe=2 (H&P + H2E). Without this option exposed in the UI, it required manual UCI editing every time. The EHT options came along naturally as we were already working with WiFi 7 hardware (QCN9274) and the wireless configuration page. |
|
We are also waiting for a newer kernel in OpenWrt (6.12+) to properly support MLO (Multi-Link Operation). Once that lands in a stable release, we plan to extend this with MLO configuration options as well. |
320MHz is EHT only.
Which version of OpenWrt are you using? |
|
And the additional options are available in the wifi scripts? |
|
@prokowsoftware: Nice work, thanks! Have you seen recent @castiel652 and @systemcrash comments? |
|
Thanks for the review, @castiel652 and @systemcrash!
You're correct, and thank you for the correction. 320 MHz channel width is defined exclusively in IEEE 802.11be (EHT) - there is no 802.11ax (HE) equivalent. Using The realistic use cases for
Even if hostapd's compiled-in default is correct, the option was not exposed in the LuCI UI - so users had no way to see what value was in effect or change it without manual UCI editing. In our specific case (OpenWrt 24.10, QCN9274, 6 GHz), client associations were failing with WPA3/SAE until we explicitly set This PR targets OpenWrt 24.10, where the EHT htmodes were introduced in #7302.
Yes - all five options map to hostapd configuration keys that are handled by OpenWrt's
We tested |
Use HE80/HE160?????
You should check the hostapd conf file
No. This PR targets master branch. Check again.
Are you sure about the first four options? |
|
Is this for 24.10 only? ( meaning that 25.12 works fine? ) |
|
@systemcrash @castiel652 — thanks for the continued discussion! To answer your question directly: we're planning to test the latest OpenWrt (25.x) this week. Our changes were developed and tested against 24.10.2, so we haven't yet verified whether they're required on the latest tree or whether some of the issues we encountered (particularly the sae_pwe default and EHT-related UI behavior) are already addressed there. We'll report back once we've had a chance to run through it on current master. |
Summary
PR #7302 (merged Oct 2024) added basic 802.11be mode selection (EHT htmodes) but did not expose advanced EHT-specific configuration options in the UI. This PR adds the missing options.
New options in the Advanced tab (radio device):
disable_eht) — fall back to 802.11ax (WiFi 6 / HE)punct_bitmap) — bitmask of 20 MHz sub-channels to exclude; shown only for EHT160 and EHT320 modeseht_su_beamformer) — enable Single-User Transmit Beamformer capabilityeht_mu_beamformer) — enable Multi-User Transmit Beamformer capabilityNew option in the Wireless Security tab (interface):
sae_pwe) — selects the mechanism for SAE password element derivation (H&P, H2E, or both); H2E is required for WiFi 7 on 6 GHz; shown only forsaeandsae-mixedencryption modesTesting
Tested on a Radxa device with QCN9274 (802.11be) card running OpenWrt.