[SOLVED] Unable to Start WRT1900acs 5GHz Radio

Just flashed today after going through and inordinate amount of pain trying to handle VLAN Tagging in DD-WRT, sadly now I cant get 5GHz running :confused: any ideas what I might have done wrong?

openwrt-19.07 branch git-20.057.55219-13dd17f / OpenWrt 19.07.2 r10947-65030d81f3

/etc/config/wireless

config wifi-device 'radio0'
        option type 'mac80211'
        option hwmode '11a'
        option path 'soc/soc:pcie/pci0000:00/0000:00:01.0/0000:01:00.0'
        option country 'AU'
        option channel '149'
        option htmode 'VHT40'

config wifi-device 'radio1'
        option type 'mac80211'
        option hwmode '11g'
        option path 'soc/soc:pcie/pci0000:00/0000:00:02.0/0000:02:00.0'
        option country 'AU'
        option txpower '36'
        option channel 'auto'
        option htmode 'HT40'

config wifi-iface 'default_radio1'
        option device 'radio1'
        option network 'lan'
        option mode 'ap'
        option macaddr '26:f5:a2:27:97:6d'
        option wpa_disable_eapol_key_retries '1'
        option key 'Password1'
        option ssid '2.5GHZ'
        option encryption 'psk2'

config wifi-iface 'wifinet1'
        option network 'lan'
        option encryption 'psk2'
        option device 'radio0'
        option mode 'ap'
        option key 'Password1'
        option ssid '5GHZ'
Sat May 16 00:01:46 2020 user.notice mac80211: Failed command: iw phy phy0 set antenna 0xffffffff 0xffffffff
Sat May 16 00:01:46 2020 daemon.notice netifd: radio0 (10551): command failed: Not supported (-95)
Sat May 16 00:01:46 2020 user.notice mac80211: Failed command: iw phy phy0 set distance 0
Sat May 16 00:01:46 2020 daemon.err hostapd: Configuration file: /var/run/hostapd-phy0.conf
Sat May 16 00:01:46 2020 kern.debug kernel: [ 4346.816824] ieee80211 phy0: change: 0xffffffff
Sat May 16 00:01:46 2020 daemon.notice hostapd: wlan0: INTERFACE-ENABLED
Sat May 16 00:01:46 2020 kern.info kernel: [ 4346.892098] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
Sat May 16 00:01:46 2020 daemon.notice hostapd: wlan0: INTERFACE-DISABLED
Sat May 16 00:01:46 2020 daemon.err hostapd: nl80211: Could not configure driver mode
Sat May 16 00:01:46 2020 daemon.notice hostapd: nl80211: deinit ifname=wlan0 disabled_11b_rates=0
Sat May 16 00:01:46 2020 daemon.err hostapd: nl80211 driver initialization failed.
Sat May 16 00:01:46 2020 daemon.notice hostapd: wlan0: interface state UNINITIALIZED->DISABLED
Sat May 16 00:01:46 2020 daemon.notice hostapd: wlan0: AP-DISABLED
Sat May 16 00:01:46 2020 daemon.notice hostapd: wlan0: CTRL-EVENT-TERMINATING
Sat May 16 00:01:46 2020 daemon.err hostapd: hostapd_free_hapd_data: Interface wlan0 wasn't started

Did you try with the channel set to auto?

I've tried Auto, 149, and 153.

radio1 is 2.4 GHz only, but you try to configure channel 36, which would be a 5 GHz channel. mwlwifi is known not to work well with DFS channels, but ch149 on radio0 is one of those (I think, don't have regdom for AU handy at the moment), so try to use a non-DFS channel first (ch36-ch48).

3 Likes

I thought so at first, but then realised it's the txpower. But then again, that's an invalid value for AU.

3 Likes

oops, you're right.

I've now tried setting everything to Default + Auto and 36, 44, and 48, I've also tried these values with 40MHz width as well as 20MHz, still no joy

Have you tried starting from scratch? Basic default settings, only change to enable radios.

I am thinkjng in line of a missing setting (like txpower for radio0) or a typo or a hidden char making some UCI line invalid.

Try deleting /etc/config/wireless and rebooting. The file will be regenerated. Start with minimal changes. Just enable radios, then try them without encryption, then start adding parameters.

1 Like

I deleted the 5GHz wifi interface, added it back, then rebooted and its now working.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.