R7800- Performance issues with r46069

Post new topic   Reply to topic    DD-WRT Forum Index -> Atheros WiSOC based Hardware
Goto page Previous  1, 2, 3, 4  Next
Author Message
nkaufman
DD-WRT User


Joined: 21 Jun 2015
Posts: 259

PostPosted: Sat Mar 27, 2021 18:35    Post subject: Reply with quote
Alozaros wrote:
'after rebooting, set all previous config settings'

i hope you did restore your settings manually, aka copy/paste values

do not restore settings using save files from different builds....

-antenna gain i have 0 if im not wrong...
-Automatic Power save - must be set to disable
-i still use bacon interval 100 as 101 was causing troubles
-Sensitivity Range (ACK Timing) must be 500... I use 900, your value of 3150 is way too much..


for CPUFREQ in /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor; do [ -f $CPUFREQ ] || continue; echo -n performance > $CPUFREQ; done

this script will max out its CPU....


Yes, I manually entered all settings, didn't use previous config backup.

Most settings were recommended here on the forum and were on the previous configuration and worked very well. But can certainly try your settings too.

Am a bit confused on Gov/Freq settings. egc mentions in the Install Guide
"You can change back to performance by substituting ondemand with performance."

But your script is different. Will your script restore the settings back to the original state or does it work in conjunction with egc's script?


Last edited by nkaufman on Sat Mar 27, 2021 18:49; edited 1 time in total
Sponsor
nkaufman
DD-WRT User


Joined: 21 Jun 2015
Posts: 259

PostPosted: Sat Mar 27, 2021 18:39    Post subject: Reply with quote
This is what I have in command window
Alozaros
DD-WRT Guru


Joined: 16 Nov 2015
Posts: 6410
Location: UK, London, just across the river..

PostPosted: Sat Mar 27, 2021 18:55    Post subject: Reply with quote
for CPUFREQ in /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor; do [ -f $CPUFREQ ] || continue; echo -n ondemand > $CPUFREQ; done

echo 35 > /sys/devices/system/cpu/cpufreq/ondemand/up_threshold
echo 10 > /sys/devices/system/cpu/cpufreq/ondemand/sampling_down_factor

i do have those, but if im not wrong, those are by default now... so, you can fairly remove all those...and you don't need them

if you want to try, you can use that one, that will max out your CPU instead...it will run it @1700 constantly... it wont hurt...I used it in the past, for a very long time...it only heats up the CPU with 1-2C

for CPUFREQ in /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor; do [ -f $CPUFREQ ] || continue; echo -n performance > $CPUFREQ; done

but, i don't think it will make a big difference...
so, try some of those settings and try Vanilla option too...i also turned on Mixed instead of NGmixed...

to be honest, sometimes there are some ups and downs on WiFi, when BS is working on it, but nothing that is noticeable or drastic in my case...i also do not use
protection mode - rst/cts is set to disabled, as well RTS threshold too (disable)

tatsuya46 also recommends if NGmixed is used, to manually override basic rates/supported rates

add this to hosapd box, wireless security page /WL_WPATable.asp ----page
in the large box bellow

basic_rates=60 120 240
supported_rates=60 90 120 180 240 360 480 540

_________________
Atheros
TP-Link WR740Nv1 ---DD-WRT 55179 WAP
TP-Link WR1043NDv2 -DD-WRT 55303 Gateway/DoT,Forced DNS,Ad-Block,Firewall,x4VLAN,VPN
TP-Link WR1043NDv2 -Gargoyle OS 1.15.x AP,DNS,QoS,Quotas
Qualcomm-Atheros
Netgear XR500 --DD-WRT 55460 Gateway/DoH,Forced DNS,AP Isolation,4VLAN,Ad-Block,Firewall,Vanilla
Netgear R7800 --DD-WRT 55460 Gateway/DoT,AD-Block,Forced DNS,AP&Net Isolation,x3VLAN,Firewall,Vanilla
Netgear R9000 --DD-WRT 55363 Gateway/DoT,AD-Block,AP Isolation,Firewall,Forced DNS,x2VLAN,Vanilla
Broadcom
Netgear R7000 --DD-WRT 55460 Gateway/SmartDNS/DoH,AD-Block,Firewall,Forced DNS,x3VLAN,VPN
NOT USING 5Ghz ANYWHERE
------------------------------------------------------
Stubby DNS over TLS I DNSCrypt v2 by mac913


Last edited by Alozaros on Sat Mar 27, 2021 21:31; edited 1 time in total
ho1Aetoo
DD-WRT Guru


Joined: 19 Feb 2019
Posts: 2927
Location: Germany

PostPosted: Sat Mar 27, 2021 19:00    Post subject: Reply with quote
ho1Aetoo wrote:
Well, you could also leave out the scaling governor settings for now.
Performance is default



as said the scaling governor performance is the default setting in all current images

just leave out / delete the startup stuff and the router has a solid performance

you only have to change this if you want to use "ondemand", but this brings hardly any advantages
nkaufman
DD-WRT User


Joined: 21 Jun 2015
Posts: 259

PostPosted: Sat Mar 27, 2021 19:00    Post subject: Reply with quote
Also,

i see under Status->Router

CPU Clock - 1725 MHz / 1725 MHz

Load Average - 0.08, 0.06, 0.02
4%


i thought egc's script would have gotten the CPU Clock to 800.

Perhaps i messed something up then
nkaufman
DD-WRT User


Joined: 21 Jun 2015
Posts: 259

PostPosted: Sat Mar 27, 2021 19:06    Post subject: Reply with quote
ho1Aetoo wrote:

as said the scaling governor performance is the default setting in all current images

just leave out / delete the startup stuff and the router has a solid performance

you only have to change this if you want to use "ondemand", but this brings hardly any advantages


Please excuse my ignorance here. I ran two sets of scripts -
First to set to ondemand and then the up_threshold ones. The startup command window shows only the second set.

If I edit Startup and remove those commands that reverts the second set of script. How do I revert the first set of scripts that I ran to set it to ondemand?

Not sure if I explained myself.
ho1Aetoo
DD-WRT Guru


Joined: 19 Feb 2019
Posts: 2927
Location: Germany

PostPosted: Sat Mar 27, 2021 19:13    Post subject: Reply with quote
the first script is gone and only the second one is still active

just leave the command box empty and save as startup so that everything is gone = problem solved


if you still want to use ondemand (although it doesn't bring any advantages) then you have to save both scripts combined
nkaufman
DD-WRT User


Joined: 21 Jun 2015
Posts: 259

PostPosted: Sat Mar 27, 2021 19:20    Post subject: Reply with quote
ho1Aetoo wrote:
the first script is gone and only the second one is still active

just leave the command box empty and save as startup so that everything is gone = problem solved


if you still want to use ondemand (although it doesn't bring any advantages) then you have to save both scripts combined


ok, got it, thanks

So since I ran the scripts separately that means it basically had no effect.

i removed the script, rebooted and speed is still slower than before.

So now looking to see if i should upgrade to the newer version that someone suggested
nkaufman
DD-WRT User


Joined: 21 Jun 2015
Posts: 259

PostPosted: Sat Mar 27, 2021 19:29    Post subject: Reply with quote
Alozaros wrote:
'after rebooting, set all previous config settings'

i hope you did restore your settings manually, aka copy/paste values

do not restore settings using save files from different builds....

-antenna gain i have 0 if im not wrong...
-Automatic Power save - must be set to disable
-i still use bacon interval 100 as 101 was causing troubles
-Sensitivity Range (ACK Timing) must be 500... I use 900, your value of 3150 is way too much..


for CPUFREQ in /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor; do [ -f $CPUFREQ ] || continue; echo -n performance > $CPUFREQ; done

this script will max out its CPU....



My settings mostly follow this:
https://forum.dd-wrt.com/phpBB2/viewtopic.php?t=324014

Do I need to run your script at all now?
nkaufman
DD-WRT User


Joined: 21 Jun 2015
Posts: 259

PostPosted: Sat Mar 27, 2021 21:35    Post subject: Reply with quote
Ran iperf test - the simpler one

Opened cmd window, telnet to dd-wrt, ran iperf3 -s

Opened another cmd window and ran 2 tests
- iperf3 -Rc 192.168.1.1 and then
- iperf3 -Rc 192.168.1.1 -P 8

Following are the results:
From server:



0;root@DD-WRT: ~root@DD-WRT:~# iperf3 -s
warning: this system does not seem to support IPv6 - trying IPv4
-----------------------------------------------------------
Server listening on 5201
-----------------------------------------------------------
Accepted connection from 192.168.1.122, port 56535
[ 5] local 192.168.1.1 port 5201 connected to 192.168.1.122 port 56536
[ ID] Interval Transfer Bitrate Retr Cwnd
[ 5] 0.00-1.00 sec 37.2 MBytes 312 Mbits/sec 0 451 KBytes
[ 5] 1.00-2.00 sec 34.4 MBytes 289 Mbits/sec 0 451 KBytes
[ 5] 2.00-3.00 sec 35.8 MBytes 301 Mbits/sec 0 451 KBytes
[ 5] 3.00-4.00 sec 36.3 MBytes 305 Mbits/sec 1 358 KBytes
[ 5] 4.00-5.00 sec 36.7 MBytes 308 Mbits/sec 0 358 KBytes
[ 5] 5.00-6.00 sec 35.3 MBytes 296 Mbits/sec 0 358 KBytes
[ 5] 6.00-7.00 sec 32.0 MBytes 269 Mbits/sec 0 358 KBytes
[ 5] 7.00-8.00 sec 34.8 MBytes 292 Mbits/sec 0 358 KBytes
[ 5] 8.00-9.00 sec 34.7 MBytes 291 Mbits/sec 1 355 KBytes
[ 5] 9.00-10.00 sec 36.0 MBytes 302 Mbits/sec 0 355 KBytes
[ 5] 10.00-10.04 sec 1.19 MBytes 274 Mbits/sec 0 355 KBytes
- - - - - - - - - - - - - - - - - - - - - - - - -
[ ID] Interval Transfer Bitrate Retr
[ 5] 0.00-10.04 sec 354 MBytes 296 Mbits/sec 2 sender
-----------------------------------------------------------
Server listening on 5201
-----------------------------------------------------------
Accepted connection from 192.168.1.122, port 56546
[ 5] local 192.168.1.1 port 5201 connected to 192.168.1.122 port 56547
[ 8] local 192.168.1.1 port 5201 connected to 192.168.1.122 port 56548
[ 10] local 192.168.1.1 port 5201 connected to 192.168.1.122 port 56549
[ 12] local 192.168.1.1 port 5201 connected to 192.168.1.122 port 56550
[ 14] local 192.168.1.1 port 5201 connected to 192.168.1.122 port 56551
[ 16] local 192.168.1.1 port 5201 connected to 192.168.1.122 port 56552
[ 18] local 192.168.1.1 port 5201 connected to 192.168.1.122 port 56553
[ 20] local 192.168.1.1 port 5201 connected to 192.168.1.122 port 56554
[ ID] Interval Transfer Bitrate Retr Cwnd
[ 5] 0.00-1.00 sec 5.91 MBytes 49.6 Mbits/sec 0 355 KBytes
[ 8] 0.00-1.00 sec 5.77 MBytes 48.4 Mbits/sec 0 355 KBytes
[ 10] 0.00-1.00 sec 5.60 MBytes 46.9 Mbits/sec 0 355 KBytes
[ 12] 0.00-1.00 sec 5.68 MBytes 47.6 Mbits/sec 0 355 KBytes
[ 14] 0.00-1.00 sec 5.65 MBytes 47.4 Mbits/sec 0 355 KBytes
[ 16] 0.00-1.00 sec 5.72 MBytes 48.0 Mbits/sec 0 355 KBytes
[ 18] 0.00-1.00 sec 5.50 MBytes 46.1 Mbits/sec 0 355 KBytes
[ 20] 0.00-1.00 sec 5.58 MBytes 46.8 Mbits/sec 0 355 KBytes
[SUM] 0.00-1.00 sec 45.4 MBytes 381 Mbits/sec 0
- - - - - - - - - - - - - - - - - - - - - - - - -
[ 5] 1.00-2.00 sec 5.70 MBytes 47.8 Mbits/sec 0 355 KBytes
[ 8] 1.00-2.00 sec 5.58 MBytes 46.8 Mbits/sec 0 355 KBytes
[ 10] 1.00-2.00 sec 5.38 MBytes 45.1 Mbits/sec 0 355 KBytes
[ 12] 1.00-2.00 sec 5.52 MBytes 46.3 Mbits/sec 0 355 KBytes
[ 14] 1.00-2.00 sec 5.50 MBytes 46.2 Mbits/sec 0 355 KBytes
[ 16] 1.00-2.00 sec 5.61 MBytes 47.1 Mbits/sec 0 355 KBytes
[ 18] 1.00-2.00 sec 5.27 MBytes 44.2 Mbits/sec 0 355 KBytes
[ 20] 1.00-2.00 sec 5.45 MBytes 45.7 Mbits/sec 0 355 KBytes
[SUM] 1.00-2.00 sec 44.0 MBytes 369 Mbits/sec 0
- - - - - - - - - - - - - - - - - - - - - - - - -
[ 5] 2.00-3.00 sec 5.23 MBytes 43.9 Mbits/sec 0 355 KBytes
[ 8] 2.00-3.00 sec 5.14 MBytes 43.2 Mbits/sec 0 355 KBytes
[ 10] 2.00-3.00 sec 5.16 MBytes 43.3 Mbits/sec 0 355 KBytes
[ 12] 2.00-3.00 sec 5.07 MBytes 42.5 Mbits/sec 0 355 KBytes
[ 14] 2.00-3.00 sec 4.89 MBytes 41.0 Mbits/sec 0 355 KBytes
[ 16] 2.00-3.00 sec 5.17 MBytes 43.4 Mbits/sec 0 355 KBytes
[ 18] 2.00-3.00 sec 5.06 MBytes 42.4 Mbits/sec 0 355 KBytes
[ 20] 2.00-3.00 sec 5.19 MBytes 43.6 Mbits/sec 0 355 KBytes
[SUM] 2.00-3.00 sec 40.9 MBytes 343 Mbits/sec 0
- - - - - - - - - - - - - - - - - - - - - - - - -
[ 5] 3.00-4.00 sec 5.56 MBytes 46.6 Mbits/sec 0 355 KBytes
[ 8] 3.00-4.00 sec 5.38 MBytes 45.1 Mbits/sec 0 355 KBytes
[ 10] 3.00-4.00 sec 5.25 MBytes 44.0 Mbits/sec 0 355 KBytes
[ 12] 3.00-4.00 sec 5.35 MBytes 44.9 Mbits/sec 0 355 KBytes
[ 14] 3.00-4.00 sec 5.15 MBytes 43.2 Mbits/sec 0 355 KBytes
[ 16] 3.00-4.00 sec 5.39 MBytes 45.2 Mbits/sec 0 355 KBytes
[ 18] 3.00-4.00 sec 5.20 MBytes 43.6 Mbits/sec 0 355 KBytes
[ 20] 3.00-4.00 sec 5.27 MBytes 44.2 Mbits/sec 0 355 KBytes
[SUM] 3.00-4.00 sec 42.5 MBytes 357 Mbits/sec 0
- - - - - - - - - - - - - - - - - - - - - - - - -
[ 5] 4.00-5.00 sec 5.89 MBytes 49.4 Mbits/sec 0 355 KBytes
[ 8] 4.00-5.00 sec 5.85 MBytes 49.1 Mbits/sec 0 355 KBytes
[ 10] 4.00-5.00 sec 5.56 MBytes 46.6 Mbits/sec 0 355 KBytes
[ 12] 4.00-5.00 sec 5.94 MBytes 49.8 Mbits/sec 0 355 KBytes
[ 14] 4.00-5.00 sec 5.81 MBytes 48.8 Mbits/sec 0 355 KBytes
[ 16] 4.00-5.00 sec 5.75 MBytes 48.3 Mbits/sec 0 355 KBytes
[ 18] 4.00-5.00 sec 5.60 MBytes 47.0 Mbits/sec 0 355 KBytes
[ 20] 4.00-5.00 sec 5.66 MBytes 47.5 Mbits/sec 0 355 KBytes
[SUM] 4.00-5.00 sec 46.1 MBytes 386 Mbits/sec 0
- - - - - - - - - - - - - - - - - - - - - - - - -
[ 5] 5.00-6.00 sec 6.29 MBytes 52.5 Mbits/sec 0 355 KBytes
[ 8] 5.00-6.00 sec 6.02 MBytes 50.3 Mbits/sec 0 355 KBytes
[ 10] 5.00-6.00 sec 5.78 MBytes 48.3 Mbits/sec 0 355 KBytes
[ 12] 5.00-6.00 sec 6.00 MBytes 50.1 Mbits/sec 0 355 KBytes
[ 14] 5.00-6.00 sec 5.79 MBytes 48.4 Mbits/sec 0 355 KBytes
[ 16] 5.00-6.00 sec 6.12 MBytes 51.2 Mbits/sec 0 355 KBytes
[ 18] 5.00-6.00 sec 5.69 MBytes 47.5 Mbits/sec 0 355 KBytes
[ 20] 5.00-6.00 sec 5.66 MBytes 47.3 Mbits/sec 0 355 KBytes
[SUM] 5.00-6.00 sec 47.4 MBytes 396 Mbits/sec 0
- - - - - - - - - - - - - - - - - - - - - - - - -
[ 5] 6.00-7.00 sec 5.68 MBytes 47.9 Mbits/sec 0 355 KBytes
[ 8] 6.00-7.00 sec 5.71 MBytes 48.1 Mbits/sec 0 355 KBytes
[ 10] 6.00-7.00 sec 5.74 MBytes 48.4 Mbits/sec 0 355 KBytes
[ 12] 6.00-7.00 sec 5.73 MBytes 48.3 Mbits/sec 0 355 KBytes
[ 14] 6.00-7.00 sec 5.75 MBytes 48.4 Mbits/sec 0 355 KBytes
[ 16] 6.00-7.00 sec 5.78 MBytes 48.7 Mbits/sec 0 355 KBytes
[ 18] 6.00-7.00 sec 5.36 MBytes 45.1 Mbits/sec 0 355 KBytes
[ 20] 6.00-7.00 sec 5.60 MBytes 47.1 Mbits/sec 0 355 KBytes
[SUM] 6.00-7.00 sec 45.4 MBytes 382 Mbits/sec 0
- - - - - - - - - - - - - - - - - - - - - - - - -
[ 5] 7.00-8.00 sec 5.82 MBytes 48.8 Mbits/sec 0 355 KBytes
[ 8] 7.00-8.00 sec 5.74 MBytes 48.2 Mbits/sec 0 355 KBytes
[ 10] 7.00-8.00 sec 5.68 MBytes 47.7 Mbits/sec 0 355 KBytes
[ 12] 7.00-8.00 sec 5.70 MBytes 47.8 Mbits/sec 0 355 KBytes
[ 14] 7.00-8.00 sec 5.66 MBytes 47.5 Mbits/sec 0 355 KBytes
[ 16] 7.00-8.00 sec 5.58 MBytes 46.8 Mbits/sec 0 355 KBytes
[ 18] 7.00-8.00 sec 5.61 MBytes 47.0 Mbits/sec 0 355 KBytes
[ 20] 7.00-8.00 sec 5.55 MBytes 46.5 Mbits/sec 0 355 KBytes
[SUM] 7.00-8.00 sec 45.3 MBytes 380 Mbits/sec 0
- - - - - - - - - - - - - - - - - - - - - - - - -
[ 5] 8.00-9.00 sec 5.89 MBytes 49.3 Mbits/sec 0 355 KBytes
[ 8] 8.00-9.00 sec 5.76 MBytes 48.3 Mbits/sec 0 355 KBytes
[ 10] 8.00-9.00 sec 5.73 MBytes 48.0 Mbits/sec 0 355 KBytes
[ 12] 8.00-9.00 sec 5.64 MBytes 47.2 Mbits/sec 0 355 KBytes
[ 14] 8.00-9.00 sec 5.51 MBytes 46.2 Mbits/sec 0 355 KBytes
[ 16] 8.00-9.00 sec 5.62 MBytes 47.0 Mbits/sec 0 355 KBytes
[ 18] 8.00-9.00 sec 5.49 MBytes 46.0 Mbits/sec 0 355 KBytes
[ 20] 8.00-9.00 sec 5.62 MBytes 47.1 Mbits/sec 0 355 KBytes
[SUM] 8.00-9.00 sec 45.3 MBytes 379 Mbits/sec 0
- - - - - - - - - - - - - - - - - - - - - - - - -
[ 5] 9.00-10.00 sec 5.63 MBytes 47.1 Mbits/sec 0 355 KBytes
[ 8] 9.00-10.00 sec 5.67 MBytes 47.4 Mbits/sec 0 355 KBytes
[ 10] 9.00-10.00 sec 5.37 MBytes 44.9 Mbits/sec 0 355 KBytes
[ 12] 9.00-10.00 sec 5.30 MBytes 44.4 Mbits/sec 0 355 KBytes
[ 14] 9.00-10.00 sec 5.46 MBytes 45.7 Mbits/sec 0 355 KBytes
[ 16] 9.00-10.00 sec 5.38 MBytes 45.0 Mbits/sec 0 355 KBytes
[ 18] 9.00-10.00 sec 5.17 MBytes 43.2 Mbits/sec 0 355 KBytes
[ 20] 9.00-10.00 sec 5.36 MBytes 44.9 Mbits/sec 0 355 KBytes
[SUM] 9.00-10.00 sec 43.3 MBytes 363 Mbits/sec 0
- - - - - - - - - - - - - - - - - - - - - - - - -
[ ID] Interval Transfer Bitrate Retr
[ 5] 0.00-10.01 sec 57.6 MBytes 48.3 Mbits/sec 0 sender
[ 8] 0.00-10.01 sec 56.6 MBytes 47.4 Mbits/sec 0 sender
[ 10] 0.00-10.01 sec 55.2 MBytes 46.3 Mbits/sec 0 sender
[ 12] 0.00-10.01 sec 55.9 MBytes 46.9 Mbits/sec 0 sender
[ 14] 0.00-10.01 sec 55.2 MBytes 46.2 Mbits/sec 0 sender
[ 16] 0.00-10.01 sec 56.1 MBytes 47.0 Mbits/sec 0 sender
[ 18] 0.00-10.01 sec 53.9 MBytes 45.2 Mbits/sec 0 sender
[ 20] 0.00-10.01 sec 54.9 MBytes 46.0 Mbits/sec 0 sender
[SUM] 0.00-10.01 sec 446 MBytes 373 Mbits/sec 0 sender
-----------------------------------------------------------
Server listening on 5201
-----------------------------------------------------------












===========================================================
From client:
Microsoft Windows [Version 10.0.19042.868]
(c) 2020 Microsoft Corporation. All rights reserved.

C:\WINDOWS\system32>iperf3 -Rc 192.168.1.1
Connecting to host 192.168.1.1, port 5201
Reverse mode, remote host 192.168.1.1 is sending
[ 4] local 192.168.1.122 port 56536 connected to 192.168.1.1 port 5201
[ ID] Interval Transfer Bandwidth
[ 4] 0.00-1.00 sec 38.5 MBytes 323 Mbits/sec
[ 4] 1.00-2.00 sec 34.0 MBytes 285 Mbits/sec
[ 4] 2.00-3.00 sec 36.0 MBytes 303 Mbits/sec
[ 4] 3.00-4.00 sec 36.4 MBytes 305 Mbits/sec
[ 4] 4.00-5.00 sec 36.6 MBytes 307 Mbits/sec
[ 4] 5.00-6.00 sec 35.2 MBytes 296 Mbits/sec
[ 4] 6.00-7.00 sec 31.9 MBytes 268 Mbits/sec
[ 4] 7.00-8.00 sec 35.0 MBytes 294 Mbits/sec
[ 4] 8.00-9.00 sec 34.7 MBytes 291 Mbits/sec
[ 4] 9.00-10.00 sec 35.8 MBytes 301 Mbits/sec
- - - - - - - - - - - - - - - - - - - - - - - - -
[ ID] Interval Transfer Bandwidth Retr
[ 4] 0.00-10.00 sec 354 MBytes 297 Mbits/sec 2 sender
[ 4] 0.00-10.00 sec 354 MBytes 297 Mbits/sec receiver

iperf Done.


========================================Second Test=======================
C:\WINDOWS\system32>iperf3 -Rc 192.168.1.1 -P 8
Connecting to host 192.168.1.1, port 5201
Reverse mode, remote host 192.168.1.1 is sending
[ 4] local 192.168.1.122 port 56547 connected to 192.168.1.1 port 5201
[ 6] local 192.168.1.122 port 56548 connected to 192.168.1.1 port 5201
[ 8] local 192.168.1.122 port 56549 connected to 192.168.1.1 port 5201
[ 10] local 192.168.1.122 port 56550 connected to 192.168.1.1 port 5201
[ 12] local 192.168.1.122 port 56551 connected to 192.168.1.1 port 5201
[ 14] local 192.168.1.122 port 56552 connected to 192.168.1.1 port 5201
[ 16] local 192.168.1.122 port 56553 connected to 192.168.1.1 port 5201
[ 18] local 192.168.1.122 port 56554 connected to 192.168.1.1 port 5201
[ ID] Interval Transfer Bandwidth
[ 4] 0.00-1.00 sec 5.79 MBytes 48.5 Mbits/sec
[ 6] 0.00-1.00 sec 5.57 MBytes 46.7 Mbits/sec
[ 8] 0.00-1.00 sec 5.39 MBytes 45.2 Mbits/sec
[ 10] 0.00-1.00 sec 5.53 MBytes 46.3 Mbits/sec
[ 12] 0.00-1.00 sec 5.40 MBytes 45.3 Mbits/sec
[ 14] 0.00-1.00 sec 5.59 MBytes 46.8 Mbits/sec
[ 16] 0.00-1.00 sec 5.29 MBytes 44.3 Mbits/sec
[ 18] 0.00-1.00 sec 5.37 MBytes 45.0 Mbits/sec
[SUM] 0.00-1.00 sec 43.9 MBytes 368 Mbits/sec
- - - - - - - - - - - - - - - - - - - - - - - - -
[ 4] 1.00-2.00 sec 5.62 MBytes 47.1 Mbits/sec
[ 6] 1.00-2.00 sec 5.58 MBytes 46.8 Mbits/sec
[ 8] 1.00-2.00 sec 5.35 MBytes 44.8 Mbits/sec
[ 10] 1.00-2.00 sec 5.42 MBytes 45.5 Mbits/sec
[ 12] 1.00-2.00 sec 5.48 MBytes 46.0 Mbits/sec
[ 14] 1.00-2.00 sec 5.57 MBytes 46.7 Mbits/sec
[ 16] 1.00-2.00 sec 5.36 MBytes 44.9 Mbits/sec
[ 18] 1.00-2.00 sec 5.47 MBytes 45.8 Mbits/sec
[SUM] 1.00-2.00 sec 43.9 MBytes 368 Mbits/sec
- - - - - - - - - - - - - - - - - - - - - - - - -
[ 4] 2.00-3.00 sec 5.25 MBytes 44.1 Mbits/sec
[ 6] 2.00-3.00 sec 5.18 MBytes 43.5 Mbits/sec
[ 8] 2.00-3.00 sec 5.24 MBytes 44.0 Mbits/sec
[ 10] 2.00-3.00 sec 5.15 MBytes 43.3 Mbits/sec
[ 12] 2.00-3.00 sec 5.07 MBytes 42.5 Mbits/sec
[ 14] 2.00-3.00 sec 5.22 MBytes 43.8 Mbits/sec
[ 16] 2.00-3.00 sec 5.06 MBytes 42.4 Mbits/sec
[ 18] 2.00-3.00 sec 5.28 MBytes 44.3 Mbits/sec
[SUM] 2.00-3.00 sec 41.5 MBytes 348 Mbits/sec
- - - - - - - - - - - - - - - - - - - - - - - - -
[ 4] 3.00-4.00 sec 5.62 MBytes 47.1 Mbits/sec
[ 6] 3.00-4.00 sec 5.48 MBytes 45.9 Mbits/sec
[ 8] 3.00-4.00 sec 5.34 MBytes 44.8 Mbits/sec
[ 10] 3.00-4.00 sec 5.45 MBytes 45.7 Mbits/sec
[ 12] 3.00-4.00 sec 5.09 MBytes 42.7 Mbits/sec
[ 14] 3.00-4.00 sec 5.36 MBytes 45.0 Mbits/sec
[ 16] 3.00-4.00 sec 5.30 MBytes 44.5 Mbits/sec
[ 18] 3.00-4.00 sec 5.20 MBytes 43.6 Mbits/sec
[SUM] 3.00-4.00 sec 42.8 MBytes 359 Mbits/sec
- - - - - - - - - - - - - - - - - - - - - - - - -
[ 4] 4.00-5.00 sec 5.87 MBytes 49.3 Mbits/sec
[ 6] 4.00-5.00 sec 5.74 MBytes 48.1 Mbits/sec
[ 8] 4.00-5.00 sec 5.49 MBytes 46.1 Mbits/sec
[ 10] 4.00-5.00 sec 5.79 MBytes 48.6 Mbits/sec
[ 12] 4.00-5.00 sec 5.85 MBytes 49.1 Mbits/sec
[ 14] 4.00-5.00 sec 5.78 MBytes 48.5 Mbits/sec
[ 16] 4.00-5.00 sec 5.47 MBytes 45.9 Mbits/sec
[ 18] 4.00-5.00 sec 5.67 MBytes 47.6 Mbits/sec
[SUM] 4.00-5.00 sec 45.7 MBytes 383 Mbits/sec
- - - - - - - - - - - - - - - - - - - - - - - - -
[ 4] 5.00-6.00 sec 6.24 MBytes 52.3 Mbits/sec
[ 6] 5.00-6.00 sec 5.97 MBytes 50.0 Mbits/sec
[ 8] 5.00-6.00 sec 5.68 MBytes 47.6 Mbits/sec
[ 10] 5.00-6.00 sec 5.97 MBytes 50.1 Mbits/sec
[ 12] 5.00-6.00 sec 5.76 MBytes 48.3 Mbits/sec
[ 14] 5.00-6.00 sec 6.07 MBytes 50.9 Mbits/sec
[ 16] 5.00-6.00 sec 5.63 MBytes 47.3 Mbits/sec
[ 18] 5.00-6.00 sec 5.69 MBytes 47.7 Mbits/sec
[SUM] 5.00-6.00 sec 47.0 MBytes 394 Mbits/sec
- - - - - - - - - - - - - - - - - - - - - - - - -
[ 4] 6.00-7.00 sec 5.68 MBytes 47.6 Mbits/sec
[ 6] 6.00-7.00 sec 5.72 MBytes 48.0 Mbits/sec
[ 8] 6.00-7.00 sec 5.82 MBytes 48.8 Mbits/sec
[ 10] 6.00-7.00 sec 5.79 MBytes 48.6 Mbits/sec
[ 12] 6.00-7.00 sec 5.71 MBytes 47.9 Mbits/sec
[ 14] 6.00-7.00 sec 5.75 MBytes 48.2 Mbits/sec
[ 16] 6.00-7.00 sec 5.43 MBytes 45.6 Mbits/sec
[ 18] 6.00-7.00 sec 5.58 MBytes 46.8 Mbits/sec
[SUM] 6.00-7.00 sec 45.5 MBytes 381 Mbits/sec
- - - - - - - - - - - - - - - - - - - - - - - - -
[ 4] 7.00-8.00 sec 5.87 MBytes 49.2 Mbits/sec
[ 6] 7.00-8.00 sec 5.81 MBytes 48.8 Mbits/sec
[ 8] 7.00-8.00 sec 5.70 MBytes 47.8 Mbits/sec
[ 10] 7.00-8.00 sec 5.69 MBytes 47.7 Mbits/sec
[ 12] 7.00-8.00 sec 5.66 MBytes 47.5 Mbits/sec
[ 14] 7.00-8.00 sec 5.61 MBytes 47.1 Mbits/sec
[ 16] 7.00-8.00 sec 5.59 MBytes 46.9 Mbits/sec
[ 18] 7.00-8.00 sec 5.54 MBytes 46.5 Mbits/sec
[SUM] 7.00-8.00 sec 45.5 MBytes 382 Mbits/sec
- - - - - - - - - - - - - - - - - - - - - - - - -
[ 4] 8.00-9.00 sec 5.84 MBytes 49.0 Mbits/sec
[ 6] 8.00-9.00 sec 5.72 MBytes 48.0 Mbits/sec
[ 8] 8.00-9.00 sec 5.62 MBytes 47.2 Mbits/sec
[ 10] 8.00-9.00 sec 5.64 MBytes 47.3 Mbits/sec
[ 12] 8.00-9.00 sec 5.54 MBytes 46.5 Mbits/sec
[ 14] 8.00-9.00 sec 5.65 MBytes 47.4 Mbits/sec
[ 16] 8.00-9.00 sec 5.39 MBytes 45.2 Mbits/sec
[ 18] 8.00-9.00 sec 5.53 MBytes 46.4 Mbits/sec
[SUM] 8.00-9.00 sec 44.9 MBytes 377 Mbits/sec
- - - - - - - - - - - - - - - - - - - - - - - - -
[ 4] 9.00-10.00 sec 5.56 MBytes 46.6 Mbits/sec
[ 6] 9.00-10.00 sec 5.65 MBytes 47.4 Mbits/sec
[ 8] 9.00-10.00 sec 5.41 MBytes 45.4 Mbits/sec
[ 10] 9.00-10.00 sec 5.33 MBytes 44.7 Mbits/sec
[ 12] 9.00-10.00 sec 5.34 MBytes 44.8 Mbits/sec
[ 14] 9.00-10.00 sec 5.39 MBytes 45.2 Mbits/sec
[ 16] 9.00-10.00 sec 5.24 MBytes 44.0 Mbits/sec
[ 18] 9.00-10.00 sec 5.33 MBytes 44.7 Mbits/sec
[SUM] 9.00-10.00 sec 43.3 MBytes 363 Mbits/sec
- - - - - - - - - - - - - - - - - - - - - - - - -
[ ID] Interval Transfer Bandwidth Retr
[ 4] 0.00-10.00 sec 57.6 MBytes 48.3 Mbits/sec 0 sender
[ 4] 0.00-10.00 sec 57.3 MBytes 48.1 Mbits/sec receiver
[ 6] 0.00-10.00 sec 56.6 MBytes 47.5 Mbits/sec 0 sender
[ 6] 0.00-10.00 sec 56.4 MBytes 47.3 Mbits/sec receiver
[ 8] 0.00-10.00 sec 55.2 MBytes 46.3 Mbits/sec 0 sender
[ 8] 0.00-10.00 sec 55.2 MBytes 46.3 Mbits/sec receiver
[ 10] 0.00-10.00 sec 55.9 MBytes 46.9 Mbits/sec 0 sender
[ 10] 0.00-10.00 sec 55.9 MBytes 46.9 Mbits/sec receiver
[ 12] 0.00-10.00 sec 55.2 MBytes 46.3 Mbits/sec 0 sender
[ 12] 0.00-10.00 sec 55.0 MBytes 46.2 Mbits/sec receiver
[ 14] 0.00-10.00 sec 56.1 MBytes 47.1 Mbits/sec 0 sender
[ 14] 0.00-10.00 sec 56.1 MBytes 47.1 Mbits/sec receiver
[ 16] 0.00-10.00 sec 53.9 MBytes 45.2 Mbits/sec 0 sender
[ 16] 0.00-10.00 sec 53.9 MBytes 45.2 Mbits/sec receiver
[ 18] 0.00-10.00 sec 54.9 MBytes 46.1 Mbits/sec 0 sender
[ 18] 0.00-10.00 sec 54.7 MBytes 45.9 Mbits/sec receiver
[SUM] 0.00-10.00 sec 446 MBytes 374 Mbits/sec 0 sender
[SUM] 0.00-10.00 sec 445 MBytes 373 Mbits/sec receiver

iperf Done.

C:\WINDOWS\system32>


Last edited by nkaufman on Sat Mar 27, 2021 22:06; edited 1 time in total
Alozaros
DD-WRT Guru


Joined: 16 Nov 2015
Posts: 6410
Location: UK, London, just across the river..

PostPosted: Sat Mar 27, 2021 21:48    Post subject: Reply with quote
nkaufman wrote:
Alozaros wrote:
'after rebooting, set all previous config settings'

i hope you did restore your settings manually, aka copy/paste values

do not restore settings using save files from different builds....

-antenna gain i have 0 if im not wrong...
-Automatic Power save - must be set to disable
-i still use bacon interval 100 as 101 was causing troubles
-Sensitivity Range (ACK Timing) must be 500... I use 900, your value of 3150 is way too much..


for CPUFREQ in /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor; do [ -f $CPUFREQ ] || continue; echo -n performance > $CPUFREQ; done

this script will max out its CPU....



My settings mostly follow this:
https://forum.dd-wrt.com/phpBB2/viewtopic.php?t=324014

Do I need to run your script at all now?



ho1Aetoo wrote:
the first script is gone and only the second one is still active

just leave the command box empty and save as startup so that everything is gone = problem solved


if you still want to use ondemand (although it doesn't bring any advantages) then you have to save both scripts combined


well said...follow his advise...

nkaufman wrote:

My settings mostly follow this:
https://forum.dd-wrt.com/phpBB2/viewtopic.php?t=324014


There are no universal settings, as there are no universal clients, they can vary.....

those spelled above by msoengineer
are very detailed, broke down explanations, how the things work...well presented and tailored for his scenario where there are also multiple type of clients concerned...

My settings from my posts above, are regarding my, so called 'universal set up', where i tend to use more basic settings in order to avoid incompatibility too...
So, your duty is, not to copy paste but to find the happy medium....
All DDWRT builds, are in beta stage, in constant development...where people are meant to test and report if there are any issues...but, issues could be due to a bad clients and then it gets funny.. its still good, so the Developer, can have a look and if its under his jurisdiction or not, than you have to find your best medium...and move on...so if performance is very bad your only 2 choices are, either tweak the settings or stick to the build where, things ware ok and wait for a new build...yes it takes time patience, testing and understanding...so if there is a 'GO', he must be dealing with software.... Cool Rolling Eyes

also those tests could be funny too..
try that one instead with
Hi-Res BufferBloat turned on

https://www.dslreports.com/speedtest

_________________
Atheros
TP-Link WR740Nv1 ---DD-WRT 55179 WAP
TP-Link WR1043NDv2 -DD-WRT 55303 Gateway/DoT,Forced DNS,Ad-Block,Firewall,x4VLAN,VPN
TP-Link WR1043NDv2 -Gargoyle OS 1.15.x AP,DNS,QoS,Quotas
Qualcomm-Atheros
Netgear XR500 --DD-WRT 55460 Gateway/DoH,Forced DNS,AP Isolation,4VLAN,Ad-Block,Firewall,Vanilla
Netgear R7800 --DD-WRT 55460 Gateway/DoT,AD-Block,Forced DNS,AP&Net Isolation,x3VLAN,Firewall,Vanilla
Netgear R9000 --DD-WRT 55363 Gateway/DoT,AD-Block,AP Isolation,Firewall,Forced DNS,x2VLAN,Vanilla
Broadcom
Netgear R7000 --DD-WRT 55460 Gateway/SmartDNS/DoH,AD-Block,Firewall,Forced DNS,x3VLAN,VPN
NOT USING 5Ghz ANYWHERE
------------------------------------------------------
Stubby DNS over TLS I DNSCrypt v2 by mac913
nkaufman
DD-WRT User


Joined: 21 Jun 2015
Posts: 259

PostPosted: Sat Mar 27, 2021 22:35    Post subject: Re: R7800- Performance issues with r46069 Reply with quote
ddaniel51 wrote:
Update to 46177 which has Wifi updates from 46069.


Thanks, right now it seems that I have 2 options
- go back to r41813 that was working fine OR
- upgrade to r46177

Hoping that the settings that I had for r41813 would work fine with r46177.

Just curious where you saw that 46177 had wifi updates from 46069. please share. i looked at the thread but couldn't figure it out. led me to code repository. is there a file there that has this info?

thanks
kernel-panic69
DD-WRT Guru


Joined: 08 May 2018
Posts: 14125
Location: Texas, USA

PostPosted: Sun Mar 28, 2021 1:24    Post subject: Reply with quote
nkaufman wrote:
kernel-panic69 wrote:
nkaufman wrote:
How do I format the post with iperf results so it fits the message box properly.

Thanks,


I fixed your post. You're welcome.


Thanks but if you don't mind = how did you do that? so i can do the same next time


Use the "preview" button to see how it looks before you post and make the appropriate edit(s). The '===' in this case, you could've done that and removed 5-10 of them at a time until it fit the forum page formatting. No need to worry if it fits in the input text box when you write your post as much as if it skews the crap out of the page format.

_________________
"Life is but a fleeting moment, a vapor that vanishes quickly; All is vanity"
Contribute To DD-WRT
Pogo - A minimal level of ability is expected and needed...
DD-WRT Releases 2023 (PolitePol)
DD-WRT Releases 2023 (RSS Everything)

----------------------
Linux User #377467 counter.li.org / linuxcounter.net
nkaufman
DD-WRT User


Joined: 21 Jun 2015
Posts: 259

PostPosted: Sun Mar 28, 2021 2:20    Post subject: Reply with quote
I did Preview and it looked fine.
Only after I submitted that it skewed to the right.

Will try again when I next post something like this.

Thanks for your help
ho1Aetoo
DD-WRT Guru


Joined: 19 Feb 2019
Posts: 2927
Location: Germany

PostPosted: Sun Mar 28, 2021 5:55    Post subject: Reply with quote
nkaufman wrote:
Ran iperf test - the simpler one

Opened cmd window, telnet to dd-wrt, ran iperf3 -s

Opened another cmd window and ran 2 tests
- iperf3 -Rc 192.168.1.1 and then
- iperf3 -Rc 192.168.1.1 -P 8

Following are the results:
From server:



0;root@DD-WRT: ~root@DD-WRT:~# iperf3 -s

[SUM] 0.00-10.01 sec 446 MBytes 373 Mbits/sec 0 sender
-----------------------------------------------------------
Server listening on 5201
-----------------------------------------------------------




===========================================================
From client:

- - - - - - - - - - - - - - - - - - - - - - - - -
[ ID] Interval Transfer Bandwidth Retr
[ 4] 0.00-10.00 sec 354 MBytes 297 Mbits/sec 2 sender
[ 4] 0.00-10.00 sec 354 MBytes 297 Mbits/sec receiver

iperf Done.


========================================Second Test=======================
C:\WINDOWS\system32>iperf3 -Rc 192.168.1.1 -P 8

[SUM] 0.00-10.00 sec 446 MBytes 374 Mbits/sec 0 sender
[SUM] 0.00-10.00 sec 445 MBytes 373 Mbits/sec receiver

iperf Done.

C:\WINDOWS\system32>


and where is your speed problem now?

according to your other forum posts your tests with build r41813 were not better either

https://forum.dd-wrt.com/phpBB2/viewtopic.php?p=1200695


Rolling Eyes
Goto page Previous  1, 2, 3, 4  Next Display posts from previous:    Page 2 of 4
Post new topic   Reply to topic    DD-WRT Forum Index -> Atheros WiSOC based Hardware All times are GMT

Navigation

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You cannot download files in this forum