Це відео не доступне.
Перепрошуємо.

ASUS RP-AX58 Temperature Check Script | AiMesh Node Temperature

Поділитися
Вставка
  • Опубліковано 8 лип 2024
  • How to easily find out and monitor the temperature of your ASUS RP-AX58 AiMesh Node's core CPU and 2.4Ghz and 5Ghz WiFi modules. Using a simple .bat script and SSH we can find the ASUS RP-AX58 temperatures for CPU and WiFi chips with just a few clicks. This script can also be used to check other ASIS AiMesh WiFi node temperatures.
    Useful Links
    My ASUS RP-AX58 WiFi Extender: amzn.to/4a2EiUu
    My ASUS RT-AX88U Router: amzn.to/3GtNvHv
    The ASUS Store: amzn.to/3Ro6UjI
    AiMesh connects multiple compatible ASUS routers to create a whole-home mesh WiFi network. The flexible and scalable technology lets you mix different AiMesh-compatible routers, and add new ones at any time to improve coverage. All devices in an AiMesh network enjoy access to all the features of the main router, including gaming features, AiProtection commercial-grade security and more. Most ASUS routers already support AiMesh.
    👍If DIY and Tech are the sorts of things you enjoy then please subscribe to the channel and hit the notification button so you get updates when I upload new videos. Don't forget to leave your comments below!
    If you enjoy my content, its easy to show your support
    ☕ Buy Me Coffee: www.buymeacoff...
    commands.txt file code
    Product=$(nvram get productid)
    wifi24_status=$(nvram get wl0_ifname)
    wifi5_status=$(nvram get wl1_ifname)
    cpu_temp=$(cat /sys/class/thermal/thermal_zone0/temp | sed 's/[^0-9]//g' | awk '{print int( $1 / 1000 +0.5)}')
    wifi24_temp=$(wl -i $wifi24_status phy_tempsense | awk '{print int($1 / 2 + 20 +0.5)}')
    wifi5_temp=$(wl -i $wifi5_status phy_tempsense | awk '{print int($1 / 2 + 20 +0.5)}')
    clear
    echo [92mChip Temperatures[0m
    echo ""
    echo "Product "$Product
    echo "CPU Temp = "$cpu_temp "DegC"
    echo "2.4ghz WiFi Temp = "$wifi24_temp "DegC"
    echo "5ghz Wifi Temp = "$wifi5_temp "DegC"
    /bin/bash
    TempCheck.bat file code
    @echo off
    cls
    echo [92mASUS AiMesh Node Temperature Check[0m
    echo.
    set /p id="Enter IP Address of the AiMesh Node You Want to Check: "
    "c:\program files\putty\putty.exe" -pw (yourpassword) admin@%id% -m \\RT-AX88U-37E8\Peter\ASUS\RT-AX88U\scripts\commands.txt -t
    exit
    @echo
    Putty download
    www.putty.org/

КОМЕНТАРІ •