Page 2 of 2

Re: What wifi router to buy?

Posted: Wed Sep 11, 2024 2:11 pm
by EthBlazeX
fifonik wrote:
Thu Jun 13, 2024 4:55 pm
The MT6000 looks impressive on paper.
Does anyone have any clues how it is performing comparing to WRT1200/1900/3200 if we are talking about unilising WAN bandwidth using quota & QoS?
Thanks.

P.S. NVM, ordered it. I hope device with recent 4 x 2GHz cores
CPU could not be slower then my current WRT1200 with 10 yesrs old 2 x 1.3GHz cores CPU.
How's the performance for WAN bandwidth with QoS enabled compared to your old WRT1200?

Re: What wifi router to buy?

Posted: Fri Sep 13, 2024 5:47 pm
by fifonik
Unfortunately, I'm not the best person to test it.
My WAN connection is not too fast (it is only 100/20) and the new router can fully utilize it as well as the old one (with QoS, Quota & BW mon - ON).

Re: What wifi router to buy?

Posted: Fri Sep 13, 2024 5:55 pm
by fifonik
wgblondel wrote:
Tue Aug 20, 2024 10:13 am
Hi fifonik,

Have you received your MT6000? How is it?
Works fine with the latest gargoyle firmware (1.15.x). Was stable for a few months but recently it is crashed.
It is possible that this was caused by known issue with Mediatek Filogic chipset and potencially could be fixed by turning off TCP segmentation.
I have not tried to do this as this happened only once for me.

Re: What wifi router to buy?

Posted: Sat Sep 14, 2024 3:05 am
by pythonic
fifonik wrote:
Fri Sep 13, 2024 5:55 pm
It is possible that this was caused by known issue with Mediatek Filogic chipset and potencially could be fixed by turning off TCP segmentation.
Got a link to the details?

Re: What wifi router to buy?

Posted: Sat Sep 14, 2024 3:16 am
by fifonik
I've read about this on non-English web site. Would you like to have a link to that article (the article about choosing modern router for OpenWRT and only one small section related to the issue is in the middle of it)?

However, there were also published some links to related issue tickets:
https://github.com/openwrt/openwrt/issues/12143
https://github.com/openwrt/openwrt/issues/13122
https://github.com/openwrt/openwrt/issues/13262

And a link to commit with fix:
https://github.com/openwrt/openwrt/comm ... a2828e68db

And a workaround for disabling TCP segmentation.
To check if segmentation is on:

Code: Select all

root@OpenWrt:~# ethtool -k eth0 | grep segment
tcp-segmentation-offload: on
	tx-tcp-segmentation: on
	tx-tcp-ecn-segmentation: on
	tx-tcp-mangleid-segmentation: on
	tx-tcp6-segmentation: on
To turn it off:

Code: Select all

ethtool -K eth0 tso off

Hope this helps.

Re: What wifi router to buy?

Posted: Sun Sep 15, 2024 8:43 am
by pythonic
fifonik wrote:
Sat Sep 14, 2024 3:16 am
However, there were also published some links to related issue tickets:
https://github.com/openwrt/openwrt/issues/12143
https://github.com/openwrt/openwrt/issues/13122
https://github.com/openwrt/openwrt/issues/13262
Thanks for these links - it seems to not be a universal problem, but for those who encounter it it can be easy to trigger. Knowing how to reliably reproduce it seems to be a bit of a conundrum though...

I don't think the ethtool package is normally built for Gargoyle; hopefully the OpenWrt 23.05 package (matching Gargoyle 1.15.x) works satisfactorily if needed.