Hi there! This is my first post. I will try and provide as much as information as possible. I am a complete newbie when it comes to using openwrt. I installed 23.05.3 in July 2024 and upgraded 3 weeks ago to 24.10.1. My device is TP Link Archer AX23 V1. All I have done to the device is that I run the router on bridge mode (using ISPs modem) and connected to Wan and created 2 wifis.
Initially I thought that it was my wifi that had the issue but then I tried with a cable as well. I only started having connectivity issues with Geforce Now since upgrading to the new firmware. The logs and chatgpt (please don't crucify me) suggest that it might be a leasing issue.
Wed Jun 4 00:27:47 2025 daemon.notice netifd: wan (19609): udhcpc: sending renew to server 192.168.1.1
Wed Jun 4 00:29:03 2025 daemon.notice netifd: wan (19609): udhcpc: sending renew to server 192.168.1.1
Wed Jun 4 00:30:03 2025 daemon.notice netifd: wan (19609): udhcpc: broadcasting renew
Wed Jun 4 00:30:11 2025 daemon.notice netifd: wan (19609): udhcpc: lease lost, entering init state
Wed Jun 4 00:30:11 2025 daemon.notice netifd: Interface 'wan' has lost the connection
Wed Jun 4 00:30:23 2025 daemon.notice netifd: wan (19609): udhcpc: lease of 192.168.1.206 obtained from 192.168.1.1, lease time 600
Wed Jun 4 00:30:23 2025 daemon.notice netifd: Interface 'wan' is now up
Wed Jun 4 00:30:24 2025 user.notice firewall: Reloading firewall due to ifup of wan (wan)
This is my wan interface config:
config interface 'wan'
option device 'wan'
option proto 'dhcp'
option peerdns '0'
list dns '9.9.9.9'
I tried adding option udhcpc_opts '-t 0 -T 10' under the wan interface (chatgpt advice), but it didn't work. Any advice?
Your upstream router (the IPS one) likely the issue here if it is not actually renewing the lease when requested. However, let's also take a look at the 3 key files that could impact the renewal process on OpenWrt:
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:
Remember to redact passwords, MAC addresses and any public IP addresses you may have:
ubus call system board
cat /etc/config/network
cat /etc/config/dhcp
cat /etc/config/firewall
Your upstream router and the downstream are on the same subnet. This conflict must be resolved by changing the subnet on one or the other to something non-overlapping. I'd recommend simply changing the OpenWrt device to something like 192.168.7.1.
In addition, your VLAN is incorrect and invalid for DSA syntax. That could also cause problems. Delete this:
Edit the br-Guest device to specify that it is an empty bridge:
config device
option name 'br-Guest'
option type 'bridge'
option bridge_empty '1'
Then reboot and test again.
With respect to the guest network, if you want to have that running over ethernet to another AP, please indicate which port(s) should be setup as a trunk.