What's new

How to see current wireless tx power?

  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

erhtun

New Around Here
Hi,

Is there a ssh command to see current wireless tx power of RT-AX68U? In web interface, it doesn't show tx power in mW unit.
 
Yes, there are:

This is for 2.4GHz
Code:
wl -i $(nvram get wl0_ifname) txpwr_target_max

And this is for 5GHz
Code:
wl -i $(nvram get wl1_ifname) txpwr_target_max

You need to enter it in SSH, I assume you already know how to use SSH.


For other models, the commands are almost universal, but for the GT-AXE16000 there are some differences there (read more)
 
  • Like
Reactions: aru
Thank you for your reply.

I get theese results

Bash:
wl -i $(nvram get wl0_ifname) txpwr_target_max
Maximum Tx Power Target (chanspec:0x1001):    13.50  13.50  13.50

wl -i $(nvram get wl1_ifname) txpwr_target_max
Maximum Tx Power Target (chanspec:0xe32a):    16.25  16.25  16.25

Are theese result in mW unit?
 
current it is not max:
2.4
Code:
wl -i $(nvram get wl0_ifname) txpwr_adj_est
5
Code:
wl -i $(nvram get wl1_ifname) txpwr_adj_est

maximum:
Code:
wl -i $(nvram get wl0_ifname) txpwr_target_max
Maximum Tx Power Target (chanspec:0x180b):      26.00  26.00  26.00  26.00
wl -i $(nvram get wl1_ifname) txpwr_target_max
Maximum Tx Power Target (chanspec:0xeb32):      26.00  26.00  26.00  26.00

current:
Code:
wl -i $(nvram get wl0_ifname) txpwr_adj_est
Last adjusted est. power (chanspec:0x180b):     25.50  25.75  26.25  25.25
wl -i $(nvram get wl1_ifname) txpwr_adj_est
Last adjusted est. power (chanspec:0xeb32):     26.50  26.25  26.50  26.00
 
Last edited:
Thank you for your reply.

I get theese results

Bash:
wl -i $(nvram get wl0_ifname) txpwr_target_max
Maximum Tx Power Target (chanspec:0x1001):    13.50  13.50  13.50

wl -i $(nvram get wl1_ifname) txpwr_target_max
Maximum Tx Power Target (chanspec:0xe32a):    16.25  16.25  16.25

Are theese result in mW unit?

My guess is they are in dBm - 13.5 dbm is 22 mW and 16.25 dbm is 42mW.

Do you have your GUI set to something less than the highest setting? Those seem a bit on the low side but if you've decreased the power then they make sense.

My AC68U reports 18.5 for 24. and 22 for 5

That's assuming the router is not incorporating the antenna gain into the dBm result it is reporting, I don't know if these routers do or not. If they do, then you'd need to deduct that from the result, then convert it to mW to get an accurate reading.
 

Similar threads

Latest threads

Sign Up For SNBForums Daily Digest

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