Closed e88z4 closed 1 year ago
Sorry for the log appearing in one line. I am not sure how to make the log appears in multiple lines.
Just some background on this. I recently upgraded from 19.07 SNAPSHOT build. I didn't have any issue with this snapshot version.I doubt it is a hardware related issue.
use triple-backticks instead of just one
```
multi
line
stuff
```
Hi @anomeome ,
I saw this particular pull request that may fix the issue. https://github.com/openwrt/openwrt/pull/11399
I tried kernel 5.15.82 from the master branch. The issue persists. I called my ISP as well, technician came to check the line. The technician didn't find any issue with the signal. The modem web UI interface log didn't indicate any issue.
Not seeing any issue on mamba with:
root@OpenWrt:/etc# cat openwrt_version
r21452-1e240f60a5
root@OpenWrt:/etc# uname -a
Linux OpenWrt 5.15.82 #0 SMP Sun Dec 11 17:32:53 2022 armv7l GNU/Linux
don't know if you used a buildbot snapshot but that PR was backed out due to buildbot image issue on bridge setup. Guessing this may be local to your particular setup / config though.
I noticed the pull request was reverted so I created my own local branch to force kernel 5.15.82. Issue persists with 22.03 SNAPSHOT that I built myself.
I am currently back to 19.07.10. This old stable build is rock solid so far. The WAN interface has been stable with no disconnect more than 2 hours+. With 22.03.02, it won't even last 15 minutes before being up and down so frequently.
I wonder if this has anything to do with the new DSA architecture. The old stable build 19.07.10 is on swconfig instead.
I was to resolve the issue by disabling the energy efficient ethernet option using ethtool. After the option is disabled, the WAN interface is stable. I make it permanent by creating the following script in /etc/hotplug.d/iface/10-ethtool
[ ifup = "$ACTION" ] || exit 0
[ -n "$DEVICE" ] || exit 0
if [ "$DEVICE" == wan ] ; then
ethtool --set-eee "$DEVICE" eee off
fi
I am currently having issue with Openwrt 22.03.2. The WAN port keeps disconnecting all the time with the following error in dmesg.
I connected my laptop directly to my cable modem, the connection is stable for hours. I also switched a few ethernet cables as a process of elimination. When I use the Linksys WRT1900AC router, the WAN keeps disconnected 24/7 every few minutes. Is this a bug in the current stable release?