5GHz Wifi AP does not show up (TL WDR4300)

I've read all the posts on this issue and can't find an answer.

The 5GHz simply does not show up on clients. But the 2GHz does, no issues.

I've searched online and here, no luck.

I'm running: OpenWrt 22.03.2 r19803-9a599fee93

Thanks and I appreciate your help.

What channel do you have set on the 5g radio and what country code?

Please copy the output of the following commands and post it here using the "Preformatted text </> " button:
grafik
Remember to redact passwords, MAC addresses and any public IP addresses you may have:

cat /etc/config/network
cat /etc/config/wireless
config interface 'loopback'
	option device 'lo'
	option proto 'static'
	option ipaddr '127.0.0.1'
	option netmask '255.0.0.0'

config globals 'globals'
	option ula_prefix 'fdec:699ba:7325::/48'

config device
	option name 'br-lan'
	option type 'bridge'
	list ports 'eth0.1'

config interface 'lan'
	option device 'br-lan'
	option proto 'static'
	option netmask '255.255.255.0'
	option ip6assign '60'
	option ipaddr '10.0.0.1'

config device
	option name 'eth0.2'
	option macaddr 'a9:f7:c2:a5:47:9q'

config interface 'wan'
	option device 'eth0.2'
	option proto 'dhcp'

config interface 'wan6'
	option device 'eth0.2'
	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 '2 3 4 5 0t'

config switch_vlan
	option device 'switch0'
	option vlan '2'
	option ports '1 0t'

cat /etc/config/wireless

config wifi-device 'radio0'
	option type 'mac80211'
	option path 'platform/ahb/18100000.wmac'
	option channel '1'
	option band '2g'
	option htmode 'HT20'
	option cell_density '0'

config wifi-iface 'default_radio0'
	option device 'radio0'
	option network 'lan'
	option mode 'ap'
	option ssid 'Was|Luv!'
	option encryption 'psk2'
	option key '3!'

config wifi-device 'radio1'
	option type 'mac80211'
	option path 'pci0000:00/0000:00:00.0'
	option channel '36'
	option band '5g'
	option htmode 'HT20'
	option cell_density '0'
	option country 'DE'

config wifi-iface 'default_radio1'
	option device 'radio1'
	option network 'lan'
	option mode 'ap'
	option ssid 'was|LUV!_!'
	option encryption 'psk2'
	option key ''

Country Code: DE
Channel on 5GHz: 36


Thanks a lot @Peter!

I would suggest to rm /etc/config/wireless and run wifi config, reboot to start with a new default (wireless-) config again. Start out simple (country-code=DE, WPA2PSK/CCMP, PSK2 without fancy control characters). The reason I'm mentioning this, is because I seem to remember that radio0 might be the 5 GHz radio (and radio1 2.4 GHz), but I don't have my tl-wdr4300 online (or even unpacked) right now to check.

2 Likes

@slh @psherman what I discovered is that the network, the 5GHz, shows up on an iPad, but not on any of Apple's macbook pros. This is rather interesting. I did not try connecting to it, but will do and report back. I think the 'showing' up is interesting, as is.

Which generation? Pretty much anything modern should have no issue, but we can start with verifying that the versions you're talking about are indeed 802.11n (5G) or 802.11ac enabled.

@psherman Hi, Peter, for example: MacBook Pro (15-inch, Late 2011) 2,4 GHz Quad-Core Intel Core i7.

That one has 5G support, although it is only 802.11n (so is your router, though, so that is neither here nor there).

Did you follow @slh's advice to regenerate the wireless config file?