Hello, I have just flashed OpenWRT (attempted all versions with EA8300 support, up to 19.07.3) and have come up with the error of having only Radio0 show up.
The router has two 5GHz Radios and one 2.4 GHz Radio. But only Radio0 (at 5 GHz) is showing up:
The question: How can I configure Radio1 and Radio2 to show up?
I checked several other related threads (Access Point Multiple Routes, Linksys EA8300 - 5ghz cannot set channels and 2nd 5ghz radio won't work, 5GHz channel problems, and Access point multiple routes) but nothing has worked so far.
All that shows up on iwinfo is:
root@OpenWrt:~# iwinfo
wlan0 ESSID: "Vanelope"
Access Point: 32:23:03:6B:67:F0
Mode: Master Channel: 161 (5.805 GHz)
Tx-Power: 30 dBm Link Quality: unknown/70
Signal: unknown Noise: -103 dBm
Bit Rate: unknown
Encryption: WPA2 PSK (CCMP)
Type: nl80211 HW Mode(s): 802.11nac
Hardware: 168C:0056 0000:0000 [Qualcomm Atheros QCA9886]
TX power offset: none
Frequency offset: none
Supports VAPs: yes PHY name: phy0
What I get on the network configuration seems normal:
root@OpenWrt:~# cat /etc/config/network
config interface 'loopback'
option ifname 'lo'
option proto 'static'
option ipaddr '127.0.0.1'
option netmask '255.0.0.0'
config globals 'globals'
option ula_prefix 'fd5d:bc32:6440::/48'
config interface 'lan'
option type 'bridge'
option ifname 'eth0'
option proto 'static'
option netmask '255.255.255.0'
option ip6assign '60'
option ipaddr '192.168.2.1'
list dns '54.172.110.180'
list dns '99.79.182.170'
config interface 'wan'
option ifname 'eth1'
option proto 'dhcp'
config interface 'wan6'
option ifname 'eth1'
option proto 'dhcpv6'
config switch
option name 'switch0'
option reset '1'
option enable_vlan '1'
config switch_vlan
option device 'switch0'
option vlan '1'
option ports '1 2 3 4 0'
But the result on the Wireless configuration is clearly missing the 2 radios
root@OpenWrt:~# cat /etc/config/wireless
config wifi-device 'radio0'
option type 'mac80211'
option hwmode '11a'
option path 'soc/40000000.pci/pci0000:00/0000:00:00.0/0000:01:00.0'
option htmode 'VHT80'
option country 'GT'
option channel '161'
config wifi-iface 'default_radio0'
option device 'radio0'
option network 'lan'
option mode 'ap'
option key 'o*7dlkgfrtyex8Ys'
option ssid 'Vanelope'
option encryption 'psk2'
Thank you for your help.