Daemon.notice: netifd: radio1 (1580): command failed: Not supported (-95)

I have GL.iNet GL-A1300 ipq40xx/generic on LuCI Master (25.358.59656~db91dbc) / OpenWrt SNAPSHOT (r32406-00e6c18a93)

[27 gru 2025, 15:01:05 CET] daemon.notice: netifd: radio1 (1580): command failed: Not supported (-95)
[27 gru 2025, 15:01:08 CET] daemon.notice: netifd: radio0 (2242): command failed: Not supported (-95)

i dont know what is supported or why is not supported?

root@GL-A1300:~# cat /etc/config/wireless 

config wifi-device 'radio0'
        option type 'mac80211'
        option path 'platform/soc/a000000.wifi'
        option band '2g'
        option channel '1'
        option htmode 'HT40'
        option country 'PL'
        option txantenna '3'
        option rxantenna '3'
        option disabled '1'

config wifi-iface 'default_radio0'
        option device 'radio0'
        option network 'lan'
        option mode 'ap'
        option ssid 'OpenWrt'
        option encryption 'none'

config wifi-device 'radio1'
        option type 'mac80211'
        option path 'platform/soc/a800000.wifi'
        option band '5g'
        option channel '36'
        option htmode 'VHT80'
        option txpower '1'
        option txantenna '3'
        option rxantenna '3'
        option country 'PL'

config wifi-iface 'default_radio1'
        option device 'radio1'
        option network 'lan'
        option mode 'ap'
        option ssid 'XXX_5G'
        option encryption 'psk2'
        option key 'XXXXXXXX'

root@GL-A1300:~# 

where is problem?

full bootlog:

Please reset the device to get rid of AI reducing radio power 100x (20dBm)

Once done do basic setup - set country on both radios, same crypto and network in both bands, optionally auto channel selection. Then we talk

Please connect to your OpenWrt device using ssh and copy the output of the following commands and post it here using the "Preformatted text </> " button (red circle; this works best in the 'Markdown' composer view in the blue oval):

Screenshot 2025-10-20 at 8.14.14 PM

Remember to redact passwords, VPN keys, MAC addresses and any public IP addresses you may have:

ubus call system board
cat /etc/config/network
cat /etc/config/wireless
cat /etc/config/dhcp
cat /etc/config/firewall
1 Like
root@GL-A1300:~# ubus call system board
{
        "kernel": "6.12.62",
        "hostname": "GL-A1300",
        "system": "ARMv7 Processor rev 5 (v7l)",
        "model": "GL.iNet GL-A1300",
        "board_name": "glinet,gl-a1300",
        "rootfs_type": "squashfs",
        "release": {
                "distribution": "OpenWrt",
                "version": "SNAPSHOT",
                "firmware_url": "https://downloads.openwrt.org/",
                "revision": "r32406-00e6c18a93",
                "target": "ipq40xx/generic",
                "description": "OpenWrt SNAPSHOT r32406-00e6c18a93",
                "builddate": "1766696438"
        }
}
root@GL-A1300:~# cat /etc/config/network

config interface 'loopback'
        option device 'lo'
        option proto 'static'
        list ipaddr '127.0.0.1/8'

config globals 'globals'
        option packet_steering '1'
        option dhcp_default_duid '000426639f3d05354042aafcccb182fd2edf'

config device
        option name 'br-lan'
        option type 'bridge'
        list ports 'lan1'
        list ports 'lan2'
        list ports 'wan'

config interface 'lan'
        option device 'br-lan'
        option proto 'static'
        option ip6assign '60'
        option ipaddr '192.168.1.2'
        option netmask '255.255.255.0'
        option gateway '192.168.1.1'
        option dns '192.168.1.1'

root@GL-A1300:~# cat /etc/config/wireless

config wifi-device 'radio0'
        option type 'mac80211'
        option path 'platform/soc/a000000.wifi'
        option band '2g'
        option channel '1'
        option htmode 'HT40'
        option country 'PL'
        option disabled '1'

config wifi-iface 'default_radio0'
        option device 'radio0'
        option network 'lan'
        option mode 'ap'
        option ssid 'OpenWrt'
        option encryption 'none'

config wifi-device 'radio1'
        option type 'mac80211'
        option path 'platform/soc/a800000.wifi'
        option band '5g'
        option channel '36'
        option htmode 'VHT80'
        option txpower '1'
        option country 'PL'

config wifi-iface 'default_radio1'
        option device 'radio1'
        option network 'lan'
        option mode 'ap'
        option ssid 'XXX_5G'
        option encryption 'psk2'
        option key 'XXXXXXXX'

root@GL-A1300:~# cat /etc/config/dhcp

config dnsmasq
        option domainneeded '1'
        option boguspriv '1'
        option filterwin2k '0'
        option localise_queries '1'
        option rebind_protection '1'
        option rebind_localhost '1'
        option local '/lan/'
        option domain 'lan'
        option expandhosts '1'
        option nonegcache '0'
        option cachesize '1000'
        option authoritative '1'
        option readethers '1'
        option leasefile '/tmp/dhcp.leases'
        option resolvfile '/tmp/resolv.conf.d/resolv.conf.auto'
        option nonwildcard '1'
        option localservice '1'
        option ednspacket_max '1232'
        option filter_aaaa '0'
        option filter_a '0'

config dhcp 'lan'
        option interface 'lan'
        option start '100'
        option limit '150'
        option leasetime '12h'
        option dhcpv4 'server'
        option ignore '1'

config dhcp 'wan'
        option interface 'wan'
        option ignore '1'

config odhcpd 'odhcpd'
        option maindhcp '0'
        option leasefile '/tmp/odhcpd.leases'
        option leasetrigger '/usr/sbin/odhcpd-update'
        option loglevel '4'
        option piodir '/tmp/odhcpd-piodir'
        option hostsdir '/tmp/hosts'

root@GL-A1300:~# cat /etc/config/firewall
config defaults
        option syn_flood        1
        option input            REJECT
        option output           ACCEPT
        option forward          REJECT
# Uncomment this line to disable ipv6 rules
#       option disable_ipv6     1

config zone
        option name             lan
        list   network          'lan'
        option input            ACCEPT
        option output           ACCEPT
        option forward          ACCEPT

config zone
        option name             wan
        list   network          'wan'
        list   network          'wan6'
        option input            REJECT
        option output           ACCEPT
        option forward          DROP
        option masq             1
        option mtu_fix          1

config forwarding
        option src              lan
        option dest             wan

# We need to accept udp packets on port 68,
# see https://dev.openwrt.org/ticket/4108
config rule
        option name             Allow-DHCP-Renew
        option src              wan
        option proto            udp
        option dest_port        68
        option target           ACCEPT
        option family           ipv4

# Allow IPv4 ping
config rule
        option name             Allow-Ping
        option src              wan
        option proto            icmp
        option icmp_type        echo-request
        option family           ipv4
        option target           ACCEPT

config rule
        option name             Allow-IGMP
        option src              wan
        option proto            igmp
        option family           ipv4
        option target           ACCEPT

# Allow DHCPv6 replies
# see https://github.com/openwrt/openwrt/issues/5066
config rule
        option name             Allow-DHCPv6
        option src              wan
        option proto            udp
        option dest_port        546
        option family           ipv6
        option target           ACCEPT

config rule
        option name             Allow-MLD
        option src              wan
        option proto            icmp
        option src_ip           fe80::/10
        list icmp_type          '130/0'
        list icmp_type          '131/0'
        list icmp_type          '132/0'
        list icmp_type          '143/0'
        option family           ipv6
        option target           ACCEPT

# Allow essential incoming IPv6 ICMP traffic
config rule
        option name             Allow-ICMPv6-Input
        option src              wan
        option proto    icmp
        list icmp_type          echo-request
        list icmp_type          echo-reply
        list icmp_type          destination-unreachable
        list icmp_type          packet-too-big
        list icmp_type          time-exceeded
        list icmp_type          bad-header
        list icmp_type          unknown-header-type
        list icmp_type          router-solicitation
        list icmp_type          neighbour-solicitation
        list icmp_type          router-advertisement
        list icmp_type          neighbour-advertisement
        option limit            1000/sec
        option family           ipv6
        option target           ACCEPT

# Allow essential forwarded IPv6 ICMP traffic
config rule
        option name             Allow-ICMPv6-Forward
        option src              wan
        option dest             *
        option proto            icmp
        list icmp_type          echo-request
        list icmp_type          echo-reply
        list icmp_type          destination-unreachable
        list icmp_type          packet-too-big
        list icmp_type          time-exceeded
        list icmp_type          bad-header
        list icmp_type          unknown-header-type
        option limit            1000/sec
        option family           ipv6
        option target           ACCEPT

config rule
        option name             Allow-IPSec-ESP
        option src              wan
        option dest             lan
        option proto            esp
        option target           ACCEPT

config rule
        option name             Allow-ISAKMP
        option src              wan
        option dest             lan
        option dest_port        500
        option proto            udp
        option target           ACCEPT


### EXAMPLE CONFIG SECTIONS
# do not allow a specific ip to access wan
#config rule
#       option src              lan
#       option src_ip   192.168.45.2
#       option dest             wan
#       option proto    tcp
#       option target   REJECT

# block a specific mac on wan
#config rule
#       option dest             wan
#       option src_mac  00:11:22:33:44:66
#       option target   REJECT

# block incoming ICMP traffic on a zone
#config rule
#       option src              lan
#       option proto    ICMP
#       option target   DROP

# port redirect port coming in on wan to lan
#config redirect
#       option src                      wan
#       option src_dport        80
#       option dest                     lan
#       option dest_ip          192.168.16.235
#       option dest_port        80
#       option proto            tcp

# port redirect of remapped ssh port (22001) on wan
#config redirect
#       option src              wan
#       option src_dport        22001
#       option dest             lan
#       option dest_port        22
#       option proto            tcp

### FULL CONFIG SECTIONS
#config rule
#       option src              lan
#       option src_ip   192.168.45.2
#       option src_mac  00:11:22:33:44:55
#       option src_port 80
#       option dest             wan
#       option dest_ip  194.25.2.129
#       option dest_port        120
#       option proto    tcp
#       option target   REJECT

#config redirect
#       option src              lan
#       option src_ip   192.168.45.2
#       option src_mac  00:11:22:33:44:55
#       option src_port         1024
#       option src_dport        80
#       option dest_ip  194.25.2.129
#       option dest_port        120
#       option proto    tcp
root@GL-A1300:~#

removed txantenna still same, i want low txpower.

Paste this in via ssh or luci-app-ttyd
Be sure to edit it BEFORE you paste to reflect your channels, passwords, country code…

cat << 'EOF' > /etc/config/wireless
config wifi-device 'radio0'
option type 'mac80211'
option path 'platform/soc/a000000.wifi'
option band '2g'
option channel '1'
option htmode 'HT20'
option country 'PL'
option disabled '0'

config wifi-iface 'default_radio0'
option device 'radio0'
option network 'lan'
option mode 'ap'
option ssid 'OpenWrt'
option encryption 'psk2'
option key 'YOUR_PASSWORD_HERE'

config wifi-device 'radio1'
option type 'mac80211'
option path 'platform/soc/a800000.wifi'
option band '5g'
option channel '36'
option htmode 'VHT80'
option country 'PL'
option disabled '0'

config wifi-iface 'default_radio1'
option device 'radio1'
option network 'lan'
option mode 'ap'
option ssid 'XXX_5G'
option encryption 'psk2'
option key 'XXXXXXXX'
EOF

Now verify and apply

cat /etc/config/wireless
wifi reload
dmesg | grep ath10k

Please make it UCI compliant.

i will play with it but wondering why those entries exists in logread but in dmesg they dont.

uci set wireless.radio0.channel='1'
uci set wireless.radio0.htmode='HT20'
uci set wireless.radio0.country='PL'
uci set wireless.radio0.disabled='0'
uci del wireless.radio0.txantenna
uci del wireless.radio0.rxantenna

uci set wireless.radio1.channel='36'
uci set wireless.radio1.htmode='VHT80'
uci set wireless.radio1.country='PL'
uci set wireless.radio1.disabled='0'
uci del wireless.radio1.txantenna
uci del wireless.radio1.rxantenna
uci del wireless.radio1.txpower

uci set wireless.default_radio0.ssid='OpenWrt_2.4G'
uci set wireless.default_radio0.encryption='psk2+ccmp'
uci set wireless.default_radio0.key='P@ssword12345678'

uci set wireless.default_radio1.ssid='OpenWrt_5G'
uci set wireless.default_radio0.encryption='psk2+ccmp'
uci set wireless.default_radio1.key='P@ssword12345678'

uci commit wireless
wifi reload
1 Like

Bonus:

wireless.default_radio0.iw_qos_map_set='0,63,255,255,255,255,255,255,255,255,255,255,255,255,255,255'
wireless.default_radio1.iw_qos_map_set='0,63,255,255,255,255,255,255,255,255,255,255,255,255,255,255'

# REBOOT

# Verify
uci show wireless | grep qos_map_set
grep "qos_map_set" /var/run/hostapd-phy*.conf
1 Like

did everything what you wrote 1:1 and still have Sat Dec 27 19:24:10 2025 daemon.notice netifd: radio0 (1577): command failed: Not supported (-95) in logread

root@GL-A1300:~# uci show wireless | grep qos_map_set
root@GL-A1300:~# uci show wireless | grep qos_map_set
root@GL-A1300:~# grep "qos_map_set" /var/run/hostapd-phy*.conf
/var/run/hostapd-phy0.conf:qos_map_set=0,0,2,16,1,1,255,255,18,22,24,38,40,40,44,46,48,56
/var/run/hostapd-phy1.conf:qos_map_set=0,0,2,16,1,1,255,255,18,22,24,38,40,40,44,46,48,56
root@GL-A1300:~# cat /etc/config/wireless 

config wifi-device 'radio0'
        option type 'mac80211'
        option path 'platform/soc/a000000.wifi'
        option band '2g'
        option channel '1'
        option htmode 'HT20'
        option country 'PL'
        option disabled '0'

config wifi-iface 'default_radio0'
        option device 'radio0'
        option network 'lan'
        option mode 'ap'
        option ssid 'XXX_2.4G'
        option encryption 'psk2+ccmp'
        option key 'XXXXXXX'

config wifi-device 'radio1'
        option type 'mac80211'
        option path 'platform/soc/a800000.wifi'
        option band '5g'
        option channel '36'
        option htmode 'VHT80'
        option country 'PL'
        option disabled '0'

config wifi-iface 'default_radio1'
        option device 'radio1'
        option network 'lan'
        option mode 'ap'
        option ssid 'XXX_5G'
        option encryption 'psk2'
        option key 'XXXXXXX'

root@GL-A1300:~# 

cant renember what i was changing and what is causing that.

You haven’t edited the fields as needed :wink:

Edit the ssid, key (wifi password), and country code for your 2.4G and 5G device in your /etc/config/wireless config.

Then do
/etc/init.d/wireless restart
uci show wireless | grep -v key # hides the line of your wifi password

1 Like

You may want to delete the existing wifi config and let it autodetect a default, then start from scratch:

rm /etc/config/wireless 

wifi detect
uci set wireless.radio0.disabled='0'
uci set wireless.radio1.disabled='0'
uci commit wireless
wifi

ALWAYS MAKE A BACKUP OF A WORKING CONFIG BEFORE EXPIREMENTING

cleaned /etc/config/wireless

root@GL-A1300:~# cat /etc/config/wireless 

config wifi-device 'radio0'
        option type 'mac80211'
        option path 'platform/soc/a000000.wifi'
        option band '2g'
        option channel '1'
        option htmode 'VHT20'
        option disabled '0'

config wifi-iface 'default_radio0'
        option device 'radio0'
        option network 'lan'
        option mode 'ap'
        option ssid 'OpenWrt'
        option encryption 'none'

config wifi-device 'radio1'
        option type 'mac80211'
        option path 'platform/soc/a800000.wifi'
        option band '5g'
        option channel '36'
        option htmode 'VHT80'
        option disabled '0'

config wifi-iface 'default_radio1'
        option device 'radio1'
        option network 'lan'
        option mode 'ap'
        option ssid 'OpenWrt'
        option encryption 'none'

root@GL-A1300:~# 

still same

[27 gru 2025, 20:47:09 CET] daemon.notice: netifd: radio0 (1573): command failed: Not supported (-95)
[27 gru 2025, 20:47:12 CET] daemon.notice: netifd: radio1 (2262): command failed: Not supported (-95)

Have you rebooted?

yes
post must be atleast 10 characters

# 1. Correct the 2.4GHz mode from VHT to HT
uci set wireless.radio0.htmode='HT20'

# 2. Add the Regulatory Domain (Crucial for Qualcomm drivers)
# Replace 'US' with their actual country code
uci set wireless.radio0.country='US'
uci set wireless.radio1.country='US'

# 3. Apply and Restart
uci commit wireless
wifi

root@GL-A1300:~# cat /etc/config/wireless 

config wifi-device 'radio0'
        option type 'mac80211'
        option path 'platform/soc/a000000.wifi'
        option band '2g'
        option channel '1'
        option htmode 'HT20'
        option disabled '0'
        option country 'PL'

config wifi-iface 'default_radio0'
        option device 'radio0'
        option network 'lan'
        option mode 'ap'
        option ssid 'OpenWrt'
        option encryption 'none'

config wifi-device 'radio1'
        option type 'mac80211'
        option path 'platform/soc/a800000.wifi'
        option band '5g'
        option channel '36'
        option htmode 'VHT80'
        option disabled '0'
        option country 'PL'

config wifi-iface 'default_radio1'
        option device 'radio1'
        option network 'lan'
        option mode 'ap'
        option ssid 'OpenWrt'
        option encryption 'none'

root@GL-A1300:~# 

still same theres a bug somewhere?

try
dmesg | grep -Ei 'ath10k|firmware|fail|error|warn'
logread | grep -Ei 'ath10k|wifi|fail|error|warn|hostapd'

Also run:
iw list | grep -iE "Frequencies| MHz”

root@GL-A1300:~#  dmesg | grep -Ei 'ath10k|firmware|fail|error|warn'
[    1.937467] UBI error: cannot open mtd rootfs, error -2
[   21.778271] ath10k_ahb a000000.wifi: qca4019 hw1.0 target 0x01000000 chip_id 0x003b00ff sub 0000:0000
[   21.778351] ath10k_ahb a000000.wifi: kconfig debug 0 debugfs 1 tracing 0 dfs 1 testmode 0
[   21.790272] ath10k_ahb a000000.wifi: firmware ver 10.4b-ct-4019-fW-14-fcb240f0 api 5 features mfp,peer-flow-ctrl,peer-fixed-rate,txstatus-noack,wmi-10.x-CT,ratemask-CT,regdump-CT,txrate-CT,flush-all-CT,pingpong-CT,ch-regs-CT,nop-CT,set-special-CT,tx-rc-CT,cust-stats-CT,txrate2-CT,beacon-cb-CT,wmi-block-ack-CT,wmi-bcn-rc-CT crc32 0cc1593e
[   21.957730] ath10k_ahb a000000.wifi: board_file api 2 bmi_id 0:20 crc32 2d972a4b
[   23.220027] ath10k_ahb a000000.wifi: 10.4 wmi init: vdevs: 16  peers: 48  tid: 96
[   23.220106] ath10k_ahb a000000.wifi: msdu-desc: 2500  skid: 32
[   23.267803] ath10k_ahb a000000.wifi: wmi print 'ChipType 1100 ChipTypeID 30 BoardID 14 P 48/48 V 16 K 144 PH 176 T 186  msdu-desc: 2500  sw-crypt: 0 ct-sta: 0'
[   23.268749] ath10k_ahb a000000.wifi: wmi print 'free: 53428 iram: 20552 sram: 37256'
[   23.410382] ath10k_ahb a000000.wifi: htt-ver 2.2 wmi-op 6 htt-op 4 cal pre-cal-nvmem max-sta 32 raw 0 hwcrypto 1
[   24.597100] ath10k_ahb a800000.wifi: qca4019 hw1.0 target 0x01000000 chip_id 0x003b00ff sub 0000:0000
[   24.597200] ath10k_ahb a800000.wifi: kconfig debug 0 debugfs 1 tracing 0 dfs 1 testmode 0
[   24.609137] ath10k_ahb a800000.wifi: firmware ver 10.4b-ct-4019-fW-14-fcb240f0 api 5 features mfp,peer-flow-ctrl,peer-fixed-rate,txstatus-noack,wmi-10.x-CT,ratemask-CT,regdump-CT,txrate-CT,flush-all-CT,pingpong-CT,ch-regs-CT,nop-CT,set-special-CT,tx-rc-CT,cust-stats-CT,txrate2-CT,beacon-cb-CT,wmi-block-ack-CT,wmi-bcn-rc-CT crc32 0cc1593e
[   24.671178] ath10k_ahb a800000.wifi: board_file api 2 bmi_id 0:21 crc32 2d972a4b
[   25.934571] ath10k_ahb a800000.wifi: 10.4 wmi init: vdevs: 16  peers: 48  tid: 96
[   25.934650] ath10k_ahb a800000.wifi: msdu-desc: 2500  skid: 32
[   25.981813] ath10k_ahb a800000.wifi: wmi print 'ChipType 1100 ChipTypeID 30 BoardID 15 P 48/48 V 16 K 144 PH 176 T 186  msdu-desc: 2500  sw-crypt: 0 ct-sta: 0'
[   25.982758] ath10k_ahb a800000.wifi: wmi print 'free: 53428 iram: 20552 sram: 37256'
[   26.121877] ath10k_ahb a800000.wifi: htt-ver 2.2 wmi-op 6 htt-op 4 cal pre-cal-nvmem max-sta 32 raw 0 hwcrypto 1
[   38.859332] ath10k_ahb a000000.wifi: 10.4 wmi init: vdevs: 16  peers: 48  tid: 96
[   38.859417] ath10k_ahb a000000.wifi: msdu-desc: 2500  skid: 32
[   38.906397] ath10k_ahb a000000.wifi: wmi print 'ChipType 1100 ChipTypeID 30 BoardID 14 P 48/48 V 16 K 144 PH 176 T 186  msdu-desc: 2500  sw-crypt: 0 ct-sta: 0'
[   38.907349] ath10k_ahb a000000.wifi: wmi print 'free: 53428 iram: 20552 sram: 37256'
[   39.230636] ath10k_ahb a000000.wifi: rts threshold -1
[   39.231065] ath10k_ahb a000000.wifi: Firmware lacks feature flag indicating a retry limit of > 2 is OK, requested limit: 4
[   39.251304] ath10k_ahb a000000.wifi phy0-ap0: entered allmulticast mode
[   39.257202] ath10k_ahb a000000.wifi phy0-ap0: entered promiscuous mode
[   39.350601] ath10k_ahb a000000.wifi: NOTE:  Firmware DBGLOG output disabled in debug_mask: 0x10000000
[   41.531759] ath10k_ahb a800000.wifi: 10.4 wmi init: vdevs: 16  peers: 48  tid: 96
[   41.531841] ath10k_ahb a800000.wifi: msdu-desc: 2500  skid: 32
[   41.578986] ath10k_ahb a800000.wifi: wmi print 'ChipType 1100 ChipTypeID 30 BoardID 15 P 48/48 V 16 K 144 PH 176 T 186  msdu-desc: 2500  sw-crypt: 0 ct-sta: 0'
[   41.579833] ath10k_ahb a800000.wifi: wmi print 'free: 53428 iram: 20552 sram: 37256'
[   41.899121] ath10k_ahb a800000.wifi: rts threshold -1
[   41.900517] ath10k_ahb a800000.wifi: Firmware lacks feature flag indicating a retry limit of > 2 is OK, requested limit: 4
[   41.919680] ath10k_ahb a800000.wifi phy1-ap0: entered allmulticast mode
[   41.925777] ath10k_ahb a800000.wifi phy1-ap0: entered promiscuous mode
root@GL-A1300:~#  logread | grep -Ei 'ath10k|wifi|fail|error|warn|hostapd'
Sat Dec 27 21:11:27 2025 kern.info kernel: [    0.430784] tcsr 1949000.tcsr: setting wifi_glb_cfg = 41000000
Sat Dec 27 21:11:27 2025 kern.info kernel: [    0.431095] tcsr 1957000.tcsr: setting wifi_noc_memtype_m0_m2 = 2222222
Sat Dec 27 21:11:27 2025 kern.err kernel: [    1.937467] UBI error: cannot open mtd rootfs, error -2
Sat Dec 27 21:11:27 2025 kern.warn kernel: [    7.528537] gpio_button_hotplug: loading out-of-tree module taints kernel.
Sat Dec 27 21:11:27 2025 user.warn kernel: [   17.080755] urandom-seed: Seeding with /etc/urandom.seed
Sat Dec 27 21:11:27 2025 kern.info kernel: [   21.778271] ath10k_ahb a000000.wifi: qca4019 hw1.0 target 0x01000000 chip_id 0x003b00ff sub 0000:0000
Sat Dec 27 21:11:27 2025 kern.info kernel: [   21.778351] ath10k_ahb a000000.wifi: kconfig debug 0 debugfs 1 tracing 0 dfs 1 testmode 0
Sat Dec 27 21:11:27 2025 kern.info kernel: [   21.790272] ath10k_ahb a000000.wifi: firmware ver 10.4b-ct-4019-fW-14-fcb240f0 api 5 features mfp,peer-flow-ctrl,peer-fixed-rate,txstatus-noack,wmi-10.x-CT,ratemask-CT,regdump-CT,txrate-CT,flush-all-CT,pingpong-CT,ch-regs-CT,nop-CT,set-special-CT,tx-rc-CT,cust-stats-CT,txrate2-CT,beacon-cb-CT,wmi-block-ack-CT,wmi-bcn-rc-CT crc32 0cc1593e
Sat Dec 27 21:11:27 2025 kern.info kernel: [   21.957730] ath10k_ahb a000000.wifi: board_file api 2 bmi_id 0:20 crc32 2d972a4b
Sat Dec 27 21:11:27 2025 kern.warn kernel: [   23.220027] ath10k_ahb a000000.wifi: 10.4 wmi init: vdevs: 16  peers: 48  tid: 96
Sat Dec 27 21:11:27 2025 kern.warn kernel: [   23.220106] ath10k_ahb a000000.wifi: msdu-desc: 2500  skid: 32
Sat Dec 27 21:11:27 2025 kern.info kernel: [   23.267803] ath10k_ahb a000000.wifi: wmi print 'ChipType 1100 ChipTypeID 30 BoardID 14 P 48/48 V 16 K 144 PH 176 T 186  msdu-desc: 2500  sw-crypt: 0 ct-sta: 0'
Sat Dec 27 21:11:27 2025 kern.info kernel: [   23.268749] ath10k_ahb a000000.wifi: wmi print 'free: 53428 iram: 20552 sram: 37256'
Sat Dec 27 21:11:27 2025 kern.info kernel: [   23.410382] ath10k_ahb a000000.wifi: htt-ver 2.2 wmi-op 6 htt-op 4 cal pre-cal-nvmem max-sta 32 raw 0 hwcrypto 1
Sat Dec 27 21:11:27 2025 kern.info kernel: [   24.597100] ath10k_ahb a800000.wifi: qca4019 hw1.0 target 0x01000000 chip_id 0x003b00ff sub 0000:0000
Sat Dec 27 21:11:27 2025 kern.info kernel: [   24.597200] ath10k_ahb a800000.wifi: kconfig debug 0 debugfs 1 tracing 0 dfs 1 testmode 0
Sat Dec 27 21:11:27 2025 kern.info kernel: [   24.609137] ath10k_ahb a800000.wifi: firmware ver 10.4b-ct-4019-fW-14-fcb240f0 api 5 features mfp,peer-flow-ctrl,peer-fixed-rate,txstatus-noack,wmi-10.x-CT,ratemask-CT,regdump-CT,txrate-CT,flush-all-CT,pingpong-CT,ch-regs-CT,nop-CT,set-special-CT,tx-rc-CT,cust-stats-CT,txrate2-CT,beacon-cb-CT,wmi-block-ack-CT,wmi-bcn-rc-CT crc32 0cc1593e
Sat Dec 27 21:11:27 2025 kern.info kernel: [   24.671178] ath10k_ahb a800000.wifi: board_file api 2 bmi_id 0:21 crc32 2d972a4b
Sat Dec 27 21:11:27 2025 kern.warn kernel: [   25.934571] ath10k_ahb a800000.wifi: 10.4 wmi init: vdevs: 16  peers: 48  tid: 96
Sat Dec 27 21:11:27 2025 kern.warn kernel: [   25.934650] ath10k_ahb a800000.wifi: msdu-desc: 2500  skid: 32
Sat Dec 27 21:11:27 2025 kern.info kernel: [   25.981813] ath10k_ahb a800000.wifi: wmi print 'ChipType 1100 ChipTypeID 30 BoardID 15 P 48/48 V 16 K 144 PH 176 T 186  msdu-desc: 2500  sw-crypt: 0 ct-sta: 0'
Sat Dec 27 21:11:27 2025 kern.info kernel: [   25.982758] ath10k_ahb a800000.wifi: wmi print 'free: 53428 iram: 20552 sram: 37256'
Sat Dec 27 21:11:27 2025 kern.info kernel: [   26.121877] ath10k_ahb a800000.wifi: htt-ver 2.2 wmi-op 6 htt-op 4 cal pre-cal-nvmem max-sta 32 raw 0 hwcrypto 1
Sat Dec 27 21:11:29 2025 daemon.warn dnsmasq[1]: no servers found in /tmp/resolv.conf.d/resolv.conf.auto, will retry
Sat Dec 27 21:11:34 2025 daemon.notice hostapd: Set MLD config: [ ]
Sat Dec 27 21:11:34 2025 daemon.notice hostapd: Reload all interfaces
Sat Dec 27 21:11:35 2025 daemon.notice netifd: radio0 (1581): wifi-scripts: Starting
Sat Dec 27 21:11:35 2025 daemon.notice hostapd: Set new config for phy phy0:
Sat Dec 27 21:11:35 2025 daemon.notice netifd: radio0 (1581): command failed: Not supported (-95)
Sat Dec 27 21:11:35 2025 daemon.notice hostapd: Set new config for phy phy0: /var/run/hostapd-phy0.conf
Sat Dec 27 21:11:35 2025 daemon.notice hostapd: Restart interface for phy phy0
Sat Dec 27 21:11:36 2025 daemon.notice hostapd: Configuration file: <inline> (phy phy0) --> new PHY
Sat Dec 27 21:11:36 2025 daemon.notice hostapd: Configuration file: Reading configuration file '<inline>'
Sat Dec 27 21:11:36 2025 daemon.notice hostapd: Configuration file: Reading configuration file '<inline>'
Sat Dec 27 21:11:37 2025 kern.warn kernel: [   38.859332] ath10k_ahb a000000.wifi: 10.4 wmi init: vdevs: 16  peers: 48  tid: 96
Sat Dec 27 21:11:37 2025 kern.warn kernel: [   38.859417] ath10k_ahb a000000.wifi: msdu-desc: 2500  skid: 32
Sat Dec 27 21:11:37 2025 kern.info kernel: [   38.906397] ath10k_ahb a000000.wifi: wmi print 'ChipType 1100 ChipTypeID 30 BoardID 14 P 48/48 V 16 K 144 PH 176 T 186  msdu-desc: 2500  sw-crypt: 0 ct-sta: 0'
Sat Dec 27 21:11:37 2025 kern.info kernel: [   38.907349] ath10k_ahb a000000.wifi: wmi print 'free: 53428 iram: 20552 sram: 37256'
Sat Dec 27 21:11:38 2025 kern.info kernel: [   39.230636] ath10k_ahb a000000.wifi: rts threshold -1
Sat Dec 27 21:11:38 2025 kern.warn kernel: [   39.231065] ath10k_ahb a000000.wifi: Firmware lacks feature flag indicating a retry limit of > 2 is OK, requested limit: 4
Sat Dec 27 21:11:38 2025 kern.info kernel: [   39.251304] ath10k_ahb a000000.wifi phy0-ap0: entered allmulticast mode
Sat Dec 27 21:11:38 2025 kern.info kernel: [   39.257202] ath10k_ahb a000000.wifi phy0-ap0: entered promiscuous mode
Sat Dec 27 21:11:38 2025 daemon.notice hostapd: phy0-ap0: interface state UNINITIALIZED->COUNTRY_UPDATE
Sat Dec 27 21:11:38 2025 kern.info kernel: [   39.350601] ath10k_ahb a000000.wifi: NOTE:  Firmware DBGLOG output disabled in debug_mask: 0x10000000
Sat Dec 27 21:11:38 2025 daemon.notice netifd: radio0 (1581): wifi-scripts: Configuring 'phy0' txantenna: 4294967295, rxantenna: 4294967295 distance: 0
Sat Dec 27 21:11:38 2025 daemon.notice netifd: radio0 (1581): wifi-scripts: Preparing interface: phy0-ap0 with MAC: 94:83:c4:62:fb:b5
Sat Dec 27 21:11:38 2025 daemon.notice netifd: radio1 (2277): wifi-scripts: Starting
Sat Dec 27 21:11:38 2025 daemon.notice hostapd: phy0-ap0: interface state COUNTRY_UPDATE->ENABLED
Sat Dec 27 21:11:38 2025 daemon.notice hostapd: phy0-ap0: AP-ENABLED
Sat Dec 27 21:11:38 2025 daemon.notice hostapd: Set new config for phy phy1:
Sat Dec 27 21:11:38 2025 daemon.notice netifd: radio1 (2277): command failed: Not supported (-95)
Sat Dec 27 21:11:38 2025 daemon.notice hostapd: Set new config for phy phy1: /var/run/hostapd-phy1.conf
Sat Dec 27 21:11:38 2025 daemon.notice hostapd: Restart interface for phy phy1
Sat Dec 27 21:11:38 2025 daemon.notice hostapd: Configuration file: <inline> (phy phy1) --> new PHY
Sat Dec 27 21:11:38 2025 daemon.notice hostapd: Configuration file: Reading configuration file '<inline>'
Sat Dec 27 21:11:38 2025 daemon.notice hostapd: Configuration file: Reading configuration file '<inline>'
Sat Dec 27 21:11:40 2025 kern.warn kernel: [   41.531759] ath10k_ahb a800000.wifi: 10.4 wmi init: vdevs: 16  peers: 48  tid: 96
Sat Dec 27 21:11:40 2025 kern.warn kernel: [   41.531841] ath10k_ahb a800000.wifi: msdu-desc: 2500  skid: 32
Sat Dec 27 21:11:40 2025 kern.info kernel: [   41.578986] ath10k_ahb a800000.wifi: wmi print 'ChipType 1100 ChipTypeID 30 BoardID 15 P 48/48 V 16 K 144 PH 176 T 186  msdu-desc: 2500  sw-crypt: 0 ct-sta: 0'
Sat Dec 27 21:11:40 2025 kern.info kernel: [   41.579833] ath10k_ahb a800000.wifi: wmi print 'free: 53428 iram: 20552 sram: 37256'
Sat Dec 27 21:11:40 2025 kern.info kernel: [   41.899121] ath10k_ahb a800000.wifi: rts threshold -1
Sat Dec 27 21:11:40 2025 kern.warn kernel: [   41.900517] ath10k_ahb a800000.wifi: Firmware lacks feature flag indicating a retry limit of > 2 is OK, requested limit: 4
Sat Dec 27 21:11:40 2025 kern.info kernel: [   41.919680] ath10k_ahb a800000.wifi phy1-ap0: entered allmulticast mode
Sat Dec 27 21:11:40 2025 kern.info kernel: [   41.925777] ath10k_ahb a800000.wifi phy1-ap0: entered promiscuous mode
Sat Dec 27 21:11:40 2025 daemon.notice hostapd: phy1-ap0: interface state UNINITIALIZED->COUNTRY_UPDATE
Sat Dec 27 21:11:40 2025 daemon.notice hostapd: phy1-ap0: interface state COUNTRY_UPDATE->HT_SCAN
Sat Dec 27 21:11:40 2025 daemon.notice netifd: radio1 (2277): wifi-scripts: Configuring 'phy1' txantenna: 4294967295, rxantenna: 4294967295 distance: 0
Sat Dec 27 21:11:40 2025 daemon.notice netifd: radio1 (2277): wifi-scripts: Preparing interface: phy1-ap0 with MAC: 94:83:c4:62:fb:b6
Sat Dec 27 21:11:41 2025 daemon.notice hostapd: phy1-ap0: interface state HT_SCAN->ENABLED
Sat Dec 27 21:11:41 2025 daemon.notice hostapd: phy1-ap0: AP-ENABLED
Sat Dec 27 21:18:51 2025 daemon.err collectd[1883]: rrdtool plugin: rrd_update_r failed: /tmp/rrd/GL-A1300/cpu-1/percent-system.rrd: expected 1 data source readings (got 0) from /tmp/rrd/GL-A1300/cpu-1/percent-system.rrd:...
root@GL-A1300:~#  iw list | grep -iE "Frequencies| MHz”
> ^C

root@GL-A1300:~#  iw list | grep -iE "Frequencies| MHz"
                Frequencies:
                Frequencies:
root@GL-A1300:~# 

What firmware are you using? That UBI error is concerning.
ubus call system info
ubus call system board