mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-01-28 01:17:30 +01:00
wifi-scripts: ucode: fix unencrypted sta connection
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
add missing key_mgmt option Fixes: https://github.com/openwrt/openwrt/issues/17578 Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
parent
886c4f054e
commit
aa0b5eb429
1 changed files with 2 additions and 0 deletions
|
|
@ -159,6 +159,8 @@ function setup_sta(data, config) {
|
|||
config.group = 'GCMP';
|
||||
}
|
||||
|
||||
config.key_mgmt ??= 'NONE';
|
||||
|
||||
config.basic_rate = ratelist(config.basic_rate);
|
||||
config.mcast_rate = ratestr(config.mcast_rate);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue