What's new

Dangerous to rise 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!

darkknight74

Regular Contributor
I sit about 1,5 meters from the asus n66u router and I use 374.35_4-sdk5 merlin firmware.

Is it dangerous to rise the TX power on 2 ghz to maximum 100 mW and on the 5 ghz to maximum 200 mW?

I wonder both health for me and the health of the router!:confused:
 
You're more likely to thermally stress the router than hurt yourself.
 
I was running the RT-N66U with Tx power for both bands at 200mW. No issues for many months.

Temps were the same at idle, but throughput greatly enhanced at short to medium distances from the clients although I never checked temps during actual use. But I never checked them at the defaults either.

Throughput was and is the goal for allowing the full power possible, in my experience.

Safety to myself? Lol... I am sure I will be gone before radio waves have any significant effect from a consumer router.
 
Just to remind everyone...there is this little statement where you adjust the power.....

The maximum value is 200mW and the real transmission power will be dynamically adjusted to meet regional regulations

So, at the risk of getting everyone worked up, here is a script that will tell you what that regulatory max is.....whatever number you put in for the power, will be capped to this level. (For 376+ builds, this is the 100% value)

Note: This appears to only work on 'AC' routers....

Code:
#!/bin/sh

# Maxpwr
# Reads and displays regulatory max power available

calc ()
# Routine for fp math in scripts
{
    local in="$(echo "$@" | sed -e 's/\[/(/g' -e 's/\]/)/g')";
        awk 'BEGIN {print '"$in"'}' < /dev/null
        }

# Get the regulated max in dbm and convert to mW
dbm=$(wl txpwr_target_max | awk -F':' '{print $3}')
dbm0=$(echo $dbm | awk -F ' ' '{print $1}'); exp0=$(calc $dbm0/10); mw0=$(calc int[[10 ^ $exp0]+0.5]);
dbm1=$(echo $dbm | awk -F ' ' '{print $3}'); exp1=$(calc $dbm1/10); mw1=$(calc int[[10 ^ $exp1]+0.5]);

# Get country information
country=$(wl country)

# Print results
echo ""
echo "Regulatory Domain"
echo "  "$country
echo "Regulatory Max Power Levels"
printf "  Router max transmission power (2.4GHz):  "%3s"mW\n" $mw0
printf "  Router max transmission power (5GHz):    "%3s"mW\n" $mw1
echo ""
exit 0
 
Last edited:
on ac66u

Code:
wl: Unsupported
awk: cmd. line:1: Unexpected end of string
awk: cmd. line:1: Unexpected token
awk: cmd. line:1: Unexpected end of string
awk: cmd. line:1: Unexpected token

Regulatory Domain
  #a (#a/0) <unknown>
Regulatory Max Power Levels
  Router max transmission power (2.4GHz):     mW
  Router max transmission power (5GHz):       mW
 
I sit about 1,5 meters from the asus n66u router and I use 374.35_4-sdk5 merlin firmware.

Is it dangerous to rise the TX power on 2 ghz to maximum 100 mW and on the 5 ghz to maximum 200 mW?

I wonder both health for me and the health of the router!:confused:
You can better mount better antennas. Only increasing the power at one location (only the router, not the laptop/smartphone/tablet) is not a good solution.

By mounting antennas with higher gain you will extend the distance.
But keep in mind that you pay off in less coverage above (and below) the router, so on 2nd and 3rd floors just above the antennas.

I use 3 x 12 dBi antennas: they look ugly but I now have good coverage in house and in my big garden.
 
on ac66u

Code:
wl: Unsupported
awk: cmd. line:1: Unexpected end of string
awk: cmd. line:1: Unexpected token
awk: cmd. line:1: Unexpected end of string
awk: cmd. line:1: Unexpected token

Regulatory Domain
  #a (#a/0) <unknown>
Regulatory Max Power Levels
  Router max transmission power (2.4GHz):     mW
  Router max transmission power (5GHz):       mW

Same here. (RT-AC66U Merlin FW 374.43_2-01j9527)
 

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!
Top