Openwrt one - radio1 fails to get IP for client and static IP issue

I have a couple of issues, likely related. The main being I’d like to use the 5ghz, but it just fails no matter what it seems on obtaining IP.

The other was the initial IP of the router, I’d set it to 192.168.13.5, but it would in DHCP still give out the .1 as default gateway. It just wouldn’t let me delete the .5 entry and use the .1 even. I’d have to revert each time. I have .1 and .5 set currently, which works fine, but I’d like to know what is going on. It didn’t work for clients until I added the .1 entry by the way. Internally I could update the package listings, but no internet for clients until that was added. Might be a luci interface issue, or I just plugged in the cables backwards and that’s messing up the works… unsure.

OpenWrt 24.10.4 r28959-29397011cc / LuCI openwrt-24.10 branch 25.328.04704~28816ce

Kernel 6.6.110

/etc/config/network

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 'fd51:93d2:6d72::/48'
        option packet_steering '1'

config device
        option name 'br-lan'
        option type 'bridge'
        list ports 'eth1'

config interface 'lan'
        option device 'br-lan'
        option proto 'static'
        option ip6assign '60'
        list ipaddr '192.168.13.5/24'
        list ipaddr '192.168.13.1'

config interface 'wan'
        option device 'eth0'
        option proto 'dhcp'
        option hostname '*'

/etc/config/wireless

config wifi-device 'radio0'
        option type 'mac80211'
        option path 'platform/soc/18000000.wifi'
        option band '2g'
        option channel '1'
        option htmode 'HE20'
        option num_global_macaddr '7'
        option cell_density '0'

config wifi-iface 'default_radio0'
        option device 'radio0'
        option network 'lan'
        option mode 'ap'
        option ssid 'Tardis-N'
        option encryption 'psk-mixed'
        option key 'blahblahblah'

config wifi-device 'radio1'
        option type 'mac80211'
        option path 'platform/soc/18000000.wifi+1'
        option band '5g'
        option channel '56'
        option htmode 'HE80'
        option num_global_macaddr '7'
        option cell_density '0'
        option country 'US'

config wifi-iface 'wifinet1'
        option device 'radio1'
        option mode 'ap'
        option ssid 'Tardis-AX'
        option encryption 'psk-mixed'
        option key 'blahblahblah'

/etc/config/dhcp

onfig dnsmasq
        option domainneeded '1'
        option localise_queries '1'
        option rebind_protection '1'
        option rebind_localhost '1'
        option local '/lan/'
        option domain 'lan'
        option expandhosts '1'
        option cachesize '1000'
        option authoritative '1'
        option readethers '1'
        option leasefile '/tmp/dhcp.leases'
        option resolvfile '/tmp/resolv.conf.d/resolv.conf.auto'
        option localservice '1'
        option ednspacket_max '1232'
        list server '192.168.13.13'

config dhcp 'lan'
        option interface 'lan'
        option start '100'
        option limit '150'
        option leasetime '12h'
        option dhcpv4 'server'
        option dhcpv6 'server'
        option ra 'server'
        list ra_flags 'managed-config'
        list ra_flags 'other-config'
        option dynamicdhcp '0'

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

config odhcpd 'odhcpd'
        option maindhcp '0'
        option leasefile '/tmp/hosts/odhcpd'
        option leasetrigger '/usr/sbin/odhcpd-update'
        option loglevel '4'
        option piofolder '/tmp/odhcpd-piofolder'

Log entries I see for phone trying to connect to radio1:

Thu Nov 27 16:20:34 2025 daemon.info hostapd: phy1-ap0: STA 3e:08:4e:a3:b2:a9 IEEE 802.11: authenticated
Thu Nov 27 16:20:34 2025 daemon.info hostapd: phy1-ap0: STA 3e:08:4e:a3:b2:a9 IEEE 802.11: associated (aid 1)
Thu Nov 27 16:20:34 2025 daemon.notice hostapd: phy1-ap0: AP-STA-CONNECTED 3e:08:4e:a3:b2:a9 auth_alg=open
Thu Nov 27 16:20:34 2025 daemon.info hostapd: phy1-ap0: STA 3e:08:4e:a3:b2:a9 WPA: pairwise key handshake completed (RSN)
Thu Nov 27 16:20:34 2025 daemon.notice hostapd: phy1-ap0: EAPOL-4WAY-HS-COMPLETED 3e:08:4e:a3:b2:a9
Thu Nov 27 16:20:52 2025 daemon.notice hostapd: phy1-ap0: AP-STA-DISCONNECTED 3e:08:4e:a3:b2:a9

Wireless for radio0 seems to be fine, and of course my wired clients are fine, save having 2 ips for the router itself.

Nuked it, started over. Fixed. No clue why.

/etc/config/network

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 'fd10:9973:1558::/48'
        option packet_steering '1'

config device
        option name 'br-lan'
        option type 'bridge'
        list ports 'eth1'

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

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

/etc/config/wireless

onfig wifi-device 'radio0'
        option type 'mac80211'
        option path 'platform/soc/18000000.wifi'
        option band '2g'
        option channel '1'
        option htmode 'HE20'
        option num_global_macaddr '7'
        option cell_density '0'

config wifi-iface 'default_radio0'
        option device 'radio0'
        option network 'lan'
        option mode 'ap'
        option ssid 'Tardis-N'
        option encryption 'psk-mixed'
        option key 'blahblahblah'

config wifi-device 'radio1'
        option type 'mac80211'
        option path 'platform/soc/18000000.wifi+1'
        option band '5g'
        option channel '36'
        option htmode 'HE80'
        option num_global_macaddr '7'
        option cell_density '0'

config wifi-iface 'default_radio1'
        option device 'radio1'
        option network 'lan'
        option mode 'ap'
        option ssid 'Tardis-AX'
        option encryption 'sae-mixed'
        option key 'blahblahblah'
        option ocv '0'

Changed the authentication type, but I went through them all before, including none at all.

/etc/confg/dhcp

config dnsmasq
        option domainneeded '1'
        option localise_queries '1'
        option rebind_protection '1'
        option rebind_localhost '1'
        option local '/lan/'
        option domain 'lan'
        option expandhosts '1'
        option cachesize '1000'
        option authoritative '1'
        option readethers '1'
        option leasefile '/tmp/dhcp.leases'
        option resolvfile '/tmp/resolv.conf.d/resolv.conf.auto'
        option localservice '1'
        option ednspacket_max '1232'
        list server '192.168.13.13'

config dhcp 'lan'
        option interface 'lan'
        option start '100'
        option limit '150'
        option leasetime '12h'
        option dhcpv4 'server'
        option dhcpv6 'server'
        option ra 'server'
        list ra_flags 'managed-config'
        list ra_flags 'other-config'

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

config odhcpd 'odhcpd'
        option maindhcp '0'
        option leasefile '/tmp/hosts/odhcpd'
        option leasetrigger '/usr/sbin/odhcpd-update'
        option loglevel '4'
        option piofolder '/tmp/odhcpd-piofolder'

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