What's new

Beta Asuswrt-Merlin 386.1 Beta is now available

Status
Not open for further replies.
Yowsa. I installed Beta 3 over Beta 2 on my 86U. The temperatures on Beta 2 were consistently around 80C. The temperature of Beta 3 is varying between 90 at boot and 94/95C after 3 hours.

Edit: 95C at the 6 hour mark.
Edit2: Looking at htop I saw a fair amount of CPU usage by pixelserv, so I uninstalled diversion standard. After another hour, still 95C, so that's not it.
Interesting on the pwr settings:
Power Management Configuration
Functional Block Status
CPU Wait DISABLED
Ethernet Auto Power Down ENABLED
Energy Efficient Ethernet DISABLED
Switch Deep Green Mode ENABLED (status deactivated)
 
Last edited:
I upgraded from beta 2 to beta 3 as well.

I did not notice a significant change in CPU temperature. Maybe it depends on the router model.

Ambient temperature here is around 19 C. I have my router placed on a USB powered fan, this brings the temperature down (about 10-12 C).

1609361824620.png
 
Mine also experienced an increase in temperature. AC-86U
76 C and now 92C at idle. Room temp 21. What's going to be next summer at 30C and above! :oops:
 
Mine also experienced an increase in temperature. AC-86U
76 C and now 92C at idle. Room temp 21. What's going to be next summer at 30C and above! :oops:
Geesh huge bump! Is it possible that it is currently working on adjustiung itself or something? Are CPUs loaded? Have you checked what TOP command shows? Maybe in a few hours it will settle down...
 
Regarding temperature. Ambient temperature around my AC-86U is 25C. The CPU of the 86U is at 76C running beta 3 basically at idle.
 
At least on my RT-AC86U the CPU wait power saving feature has been disabled and results in higher temperature. You can check the status with the command pwr show from the command line.
 
At least on my RT-AC86U the CPU wait power saving feature has been disabled and results in higher temperature. You can check the status with the command pwr show from the command line.
Same here as well. Don't remember that setting so I assume something else triggered it as disabled.
 
well i got the rt5300 fixed and it is running great on beta3 transfer speeds are now 30 MBPS between computers 60 feet apart with 4 0r 5 walls , used to get a best of 20 to 26 MBPS . for some reason it is working better than ever guess it needed that factory reset
 
I haven't spent much time looking at my router's temperature, but I do glance at it once in awhile. This seems normal to me. Room temperature between 65 and 67F.

Temp.jpg
 
For those with high CPU temps, have you checked with top or htop to see what's running and using a lot of CPU? My temps on AX88U are roughly the same at idle on beta3 as 384.18, around 55c.
I checked mine out of curiosity, output is below. Barely any load on the CPU at this time...

Temps: 2.4 GHz: 46°C - 5 GHz: 52°C - CPU: 78°C

kuuTYwj.png
 
I checked mine out of curiosity, output is below. Barely any load on the CPU at this time...

Temps: 2.4 GHz: 46°C - 5 GHz: 52°C - CPU: 78°C

kuuTYwj.png
Those are my temps to with an RT-AC88U, no appreciable CPU load. From everything I've read here and elsewhere, these temperatures are well within spec.

TempC.jpg
 
At least on my RT-AC86U the CPU wait power saving feature has been disabled and results in higher temperature. You can check the status with the command pwr show from the command line.
Yikes, thanks for the pointer.

I was getting the following in my logs:
Dec 31 09:33:32 kernel: thermal cooling_device1: turn off CPU#1
Dec 31 09:33:32 kernel: IRQ6 no longer affine to CPU1
Dec 31 09:33:32 kernel: CPU1: shutdown
Dec 31 09:34:02 kernel: thermal cooling_device1: turn on CPU#1
Dec 31 09:34:02 kernel: CPU1: Booted secondary processor

The CPU was pegged on 99 degrees.

Running the command "pwr config --wait on" has re-enabled the CPU wait state.

Temps are slowly dropping towards 90 degrees now.
 
Those are my temps to with an RT-AC88U, no appreciable CPU load. From everything I've read here and elsewhere, these temperatures are well within spec.

View attachment 28951
So far, I believe that the bump in CPU temperature only seems to be happening on RT-AC86U routers. Everyone else can relax and stop reporting .
 
Yikes, thanks for the pointer.

I was getting the following in my logs:
Dec 31 09:33:32 kernel: thermal cooling_device1: turn off CPU#1
Dec 31 09:33:32 kernel: IRQ6 no longer affine to CPU1
Dec 31 09:33:32 kernel: CPU1: shutdown
Dec 31 09:34:02 kernel: thermal cooling_device1: turn on CPU#1
Dec 31 09:34:02 kernel: CPU1: Booted secondary processor

The CPU was pegged on 99 degrees.

Running the command "pwr config --wait on" has re-enabled the CPU wait state.

Temps are slowly dropping towards 90 degrees now.
Would guess that command could be run in a startup script on an AC86U pending a fix? Keep us posted on your Temps, please.
 
Would guess that command could be run in a startup script on an AC86U pending a fix? Keep us posted on your Temps, please.
It seems to have settled right on 90-91 for now. Temps are 30 degrees ambient here, and from memory, I am sure I usually see 85-88 temps on my CPU.
 
As I suspected, this was a deliberate change by Asus in a recent GPL merge.

Code:
@@ -3613,6 +3701,9 @@ void init_others(void)
#ifdef GTAC2900
        update_cfe_ac2900();
#endif
+#if defined(RTAC86U) || defined(GTAC2900)
+       system("pwr config --wait off");
+#endif
#if defined(RTAX88U) || defined(RTAX92U)
        if(nvram_match("HwVer", "1.0")) {
                system("pwr config --cpuwait off");

No idea why, I can only assume it was to address a specific problem, like how they already do the same on earlier revisions of the RT-AX88U.

If your router is hitting the 100C threshold following this change, then it means it was already running hotter than it should. Make sure you do have some airflow around it (and that it's not in an enclosed cabinet), maybe give it a good dusting just to be sure.

If you still run into CPU throttling, I recommend you test again running Asus's stock 386_41535 firmware, reproduce the issue, then use the Feedback form to notify them.
 
As I suspected, this was a deliberate change by Asus in a recent GPL merge.

Code:
@@ -3613,6 +3701,9 @@ void init_others(void)
#ifdef GTAC2900
        update_cfe_ac2900();
#endif
+#if defined(RTAC86U) || defined(GTAC2900)
+       system("pwr config --wait off");
+#endif
#if defined(RTAX88U) || defined(RTAX92U)
        if(nvram_match("HwVer", "1.0")) {
                system("pwr config --cpuwait off");

No idea why, I can only assume it was to address a specific problem, like how they already do the same on earlier revisions of the RT-AX88U.

If your router is hitting the 100C threshold following this change, then it means it was already running hotter than it should. Make sure you do have some airflow around it (and that it's not in an enclosed cabinet), maybe give it a good dusting just to be sure.

If you still run into CPU throttling, I recommend you test again running Asus's stock 386_41535 firmware, reproduce the issue, then use the Feedback form to notify them.

Seems like from the code that they also apply that for newer revision of the AC86U, i have mid-end 2020 AC86U with CFE ver 1.0.1.0. Was gonna try it but seems like it's gonna apply it too no matter what. Hmm .. i guess we'll see what Asus has to say on the Official beta thread
 
Would also be nice, if ASUS would release a new RC/Beta firmware to aid in the testing, for all current supported AiMesh routers.
Conspiracy theory :cool:
Perhaps Asuswrt-Merlin is the beta test/release candidate. Just because ASUS drops an SDK or source tarball does not mean they have released it for their own product. But Asuswrt-Merlin does.

Just kidding. I have no idea how the ASUS release process works. And I am happy to be beta testing this firmware.
 
Status
Not open for further replies.

Similar threads

Latest threads

Support SNBForums w/ Amazon

If you'd like to support SNBForums, just use this link and buy anything on Amazon. Thanks!

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!

Members online

Back
Top