[openwrt/luci] Changing disassoc_low_ack wireless settings breaks 5g wireless [X5000R]
See original GitHub issueSteps to reproduce:
- Network -> Wireless -> Edit a 5g SSID
- Interface Configuration -> Advanced
- Uncheck ‘Disassociate On Low Acknowledgement’
- Save & apply
Actual behavior:
Changes show the following:
# /etc/config/wireless
uci del wireless.radio1.band
uci del wireless.radio1.channel
uci add wireless.wifinet4.disassoc_low_ack='0'
Applying the changes disables wireless. Trying to edit the network again gives an error
TypeError
Cannot read properties of undefined (reading 'value')
This may be related to #5468
Expected behavior:
Example: Replace the following lines and remove this
wireless.radio1.band
and wireless.radio1.channel
should not be deleted.
Additional Information:
OpenWrt version information from system /etc/openwrt_release
root@Tvroom:~# cat /etc/openwrt_release
DISTRIB_ID='OpenWrt'
DISTRIB_RELEASE='21.02.2'
DISTRIB_REVISION='r16495-bf0c965af0'
DISTRIB_TARGET='ramips/mt7621'
DISTRIB_ARCH='mipsel_24kc'
DISTRIB_DESCRIPTION='OpenWrt 21.02.2 r16495-bf0c965af0'
DISTRIB_TAINTS=''
root@Tvroom:~# opkg list-installed | grep luci
liblucihttp-lua - 2021-06-11-3dc89af4-1
liblucihttp0 - 2021-06-11-3dc89af4-1
luci - git-20.074.84698-ead5e81
luci-app-acl - git-21.194.67638-1d6053e
luci-app-firewall - git-22.089.67741-3856d50
luci-app-opkg - git-21.312.69848-4745991
luci-base - git-22.083.69138-0a0ce2a
luci-lib-base - git-20.232.39649-1f6dc29
luci-lib-ip - git-20.250.76529-62505bd
luci-lib-jsonc - git-22.097.61937-bc85ba5
luci-lib-nixio - git-20.234.06894-c4a4e43
luci-mod-admin-full - git-19.253.48496-3f93650
luci-mod-network - git-22.046.85061-dd54dce
luci-mod-status - git-22.046.85784-0ac2542
luci-mod-system - git-22.019.40321-7a37d02
luci-proto-ipv6 - git-21.148.49484-14511e5
luci-proto-ppp - git-21.163.64918-6c6559a
luci-ssl - git-20.244.36115-e10f954
luci-theme-bootstrap - git-22.084.39047-f1d687e
rpcd-mod-luci - 20210614
Issue Analytics
- State:
- Created a year ago
- Comments:12 (6 by maintainers)
Top Results From Across the Web
[openwrt/luci] Changing disassoc_low_ack wireless settings ...
[openwrt/luci] Changing disassoc_low_ack wireless settings breaks 5g ... Edit a 5g SSID; Interface Configuration -> Advanced; Uncheck 'Disassociate On Low ...
Read more >Setting `disassoc_low_ack '0'` kills 5g wireless - OpenWrt Forum
I'm running nightlies on a TOTOLINK X500R and ran into a problem when disabling this option via LUCI. wireless.radio1.band and wireless.radio1.
Read more >X5000R wireless 5GHz issue - Installing and Using OpenWrt
can render LUCI GUI to work in perfect harmony with 5GHz radio by following ... Changing wireless settings breaks wireless [X5000R] #5468
Read more >Lost Wifi connection on smart TV - Installing and Using OpenWrt
Hi all, I am using router Totolink X5000R with openwrt 21.02 I have a problem when my TV (Samsung SmartTV) connect to wifi...
Read more >X5000R wireless 5GHz issue - Installing and Using OpenWrt
Because using LUCI to do the setting is broken for 5GHz radio, ... your changes are not showing up in the wireless config...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
This is caused by a too old libiwinfo in OpenWrt base which does not understand the new
option path ...+1
syntax used to identify the 5GHz radio phy. This has all sorts of weird side effects, like not being to identify the available operation modes, frequencies and so on.I backported libiwinfo updates into the openwrt-21.02 branch now, the autobuilders will pick those up eventually and push new package versions to the binary repos. To fix the issue, you can then upgrade
libiwinfo20210430
via opkg.OpenWrt 21.02.4 will contain the updated package directly then.
21.02.3 with upgraded packages is working.