mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-02-13 21:19:06 +01:00
wifi-scripts: fix encryption setting of default OpenWrt SSID
Some checks are pending
Build all core packages / Build all core packages for selected target (push) Waiting to run
Some checks are pending
Build all core packages / Build all core packages for selected target (push) Waiting to run
Commit01a87f4bd0changed the encryption setting of the default SSID "OpenWrt" from "none" to "open". The correct setting as per the documentation [1] is "none", though. While this invalid setting won't cause a wrong hostapd setup, it will at least cause malfunction in LuCI. Change the default encryption setting back to "none". [1] https://openwrt.org/docs/guide-user/network/wifi/basic#encryption_modes Fixes:01a87f4bd0Signed-off-by: Shine <4c.fce2@proton.me> Link: https://github.com/openwrt/openwrt/pull/21925 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> (cherry picked from commit4ab5fcc04f)
This commit is contained in:
parent
5f1b0fbf9b
commit
8c895dc4c5
1 changed files with 1 additions and 1 deletions
|
|
@ -83,7 +83,7 @@ for (let phy_name, phy in board.wlan) {
|
|||
country = '00';
|
||||
encryption = 'owe';
|
||||
} else {
|
||||
encryption = 'open';
|
||||
encryption = 'none';
|
||||
}
|
||||
if (board.wlan.defaults) {
|
||||
defaults = board.wlan.defaults.ssids?.[band_name]?.ssid ? board.wlan.defaults.ssids?.[band_name] : board.wlan.defaults.ssids?.all;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue