Hardware: Asus RT-AX56U v1
Firmware: Merlin 386.3_2
# CPU temperature: ~57C (I have a small fan circulating air)
cat /sys/class/thermal/thermal_zone0/temp | awk '{print $1 / 1000}'
# WiFi 2.4GHz temperature: ~46C
wl -i eth5 phy_tempsense | awk '{print $1 / 2 + 20}'
# WiFi 5.0GHz temperature: ~48C
wl -i eth6 phy_tempsense | awk '{print $1 / 2 + 20}'
References based on other links...
I am piping these info out to InfluxDB and use Grafana to graph some of the router stats, based on ehsmaes's work:
Firmware: Merlin 386.3_2
# CPU temperature: ~57C (I have a small fan circulating air)
cat /sys/class/thermal/thermal_zone0/temp | awk '{print $1 / 1000}'
# WiFi 2.4GHz temperature: ~46C
wl -i eth5 phy_tempsense | awk '{print $1 / 2 + 20}'
# WiFi 5.0GHz temperature: ~48C
wl -i eth6 phy_tempsense | awk '{print $1 / 2 + 20}'
References based on other links...
reading temperature from AX88U command line
Hi, On my AC88U , I was able to get temperature of CPU and wifi chips with following 3 shell commands: cputemp=`cat /proc/dmu/temperature | sed 's,øC,,g' | awk '{print $4}'` chip1temp=`wl -i eth1 phy_tempsense | awk '{print $1}'` chip2temp=`wl -i eth2 phy_tempsense | awk '{print $1}'` On the...
www.snbforums.com
I am piping these info out to InfluxDB and use Grafana to graph some of the router stats, based on ehsmaes's work:
How to Graph Home Router Metrics
How to Graph Home Router Metrics: Isn't the tech-world wonderful? All these great services and free softwares popping up everywhere. I would like to share my first experience with Grafana and InfluxDB with the purpose of making persistent, beautiful, flexible graphs of your router s…
www.instructables.com