How to Increase TX Power Signal Strength of WiFi

Embed Size (px)

Citation preview

  • 7/25/2019 How to Increase TX Power Signal Strength of WiFi

    1/10

    Download Hack

    4 11

    Home / How to / How to increase TX Power Signal Strength of WiFi

    1.

    2.

    3.

    4.

    5.

    6.

    Setup Wireless Network

    Wireless Power Transfer

    Wireless Signal Strength

    Wireless Phone Set

    WiFi Wireless Card

    Smartphones

    October 27, 2013 How to, Linux, Wireless LAN (Wi-Fi) 7 Comments

    This is a small guide on How to increase TX Power Signal Strength ofWiFiThis guide contains 3 different methods to increase your TX Power or Signal Strength of your Wifi Wireless card. It also includes 2 ways to make those changes

    kick in at boot time so that you can enjoy the extra power everytime you boot into your Linux distro.

    The default TX-Power of wireless is set to 20 dBm but you can increase it with a little trick to 30 dBm but let me warn you first that It might be illegal in your

    country, so use it at your own risk. Moreover Some models will not support these settings or wireless chip may state that it can transmit with higher power, but

    the devices manufacturer probably did not place the appropriate heat sink in order to accomplish this. Readers MUST use this guide knowing what is allowed or

    not allowed in their country. Author is not responsible for any action taken by a reader.

    3 simplest options for you..

    Option 1

    4LikeLike

    ShareShare 2

    converted by Web2PDFConvert.com

    http://www.web2pdfconvert.com/?ref=PDFhttp://www.web2pdfconvert.com/?ref=PDFhttp://www.blackmoreops.com/?p=257http://www.blackmoreops.com/category/wireless-lan-wi-fi/http://www.blackmoreops.com/category/linux/http://www.blackmoreops.com/category/how-to/http://www.blackmoreops.com/category/how-to/http://www.blackmoreops.com/http://www.blackmoreops.com/
  • 7/25/2019 How to Increase TX Power Signal Strength of WiFi

    2/10

    Open terminal and copy paste the following commands:

    iw reg set BO

    iwconfig wlan0 txpower 30

    If above method gives the following error then go for Option 2.

    Error for wireless request "Set Tx Power" (8B26) :

    SET failed on device wlan0 ; Invalid argument.

    Option 2

    ifconfig wlan0 down

    iw reg set BO

    ifconfig wlan0 up

    iwconfig wlan0 channel 13

    iwconfig wlan0 txpower 30

    Options 3

    Copy paste the following commands into a text file and save it as IncreaseWifiTx

    You might want to edit regions to your likings. Link to world regulatory domains are at the bottom of this post.

    #!/bin/bash

    echo "hello, root!"

    echo " taking down wlan0"

    ifconfig wlan0 down

    sleep 3

    echo "setting Region to Bolivia"

    iw reg set BO

    sleep 3

    echo "setting TxPower to 30"

    iwconfig wlan0 txpower 30

    sleep 2

    echo "starting wlan0"

    ifconfig wlan0 up

    echo "pulling wlan0 interface up"

    iwconfig

    sleep 5

    echo "good bye"

    Now do

    converted by Web2PDFConvert.com

    http://www.web2pdfconvert.com/?ref=PDFhttp://www.web2pdfconvert.com/?ref=PDF
  • 7/25/2019 How to Increase TX Power Signal Strength of WiFi

    3/10

    4

    chmod +x IncreaseWifiTx

    ./IncreaseWifiTx

    Setting changes automatically at bootYou can achieve it in multiple ways.

    By editing rc.local file

    You can set it at startup by adding the above commands (choose option 1 or 2) at the end of /etc/rc.localfile and with exit 0at the end.

    Some would argue to use

    update-rc.d defaults

    Using GUI Start-up Programs

    Move IncreaseWifiTx file to /usr/bin.

    mv IncreaseWifiTx /usr/bin/IncreaseWifiTx

    Make it executable

    chmod +x /usr/bin/IncreaseWifiTx

    Now just follow these steps:

    1. Click on Applications > System Tools > Preferences > Startup Applications

    2. Click Add

    3. Add these details

    1. Name: Increase Wifi TX

    2. Command: /usr/bin/I ncreaseWifiTx

    3. Comment: Make my Wifi run HOT

    4. Click Save

    5. Close.

    Wikipedia Link ex plaining Wifi

    http://en.wikipedia.org/wiki/Wi-Fi

    Kernel.org link explaining world regulatory domains and other info

    http://git.kernel.org/cgit/linux/kerdb.txt?id=HEAD

    Thanks for reading.

    Thanks to Hitman for his instructions.

    End of guide How to increase TX Power Signal Strength of WiFi.

    Tags

    4LikeLike

    ShareShare

    FEATURED HOW TO

    Previous

    How to Install Flash in KaliLinux

    Next

    How to install Firefox in KaliLinux

    converted by Web2PDFConvert.com

    http://www.web2pdfconvert.com/?ref=PDFhttp://www.web2pdfconvert.com/?ref=PDFhttp://www.blackmoreops.com/2013/10/28/how-to-install-firefox-in-kali-linux/http://www.blackmoreops.com/2013/10/26/how-to-install-flash-in-kali-linux/http://www.blackmoreops.com/tag/how-to/http://www.blackmoreops.com/tag/featured/http://pinterest.com/pin/create/button/?url=http://www.blackmoreops.com/2013/10/27/how-to-increase-tx-power-signal-strength-of-wifi/&media=http://www.blackmoreops.com/wp-content/uploads/2013/10/Wireless-Interference.jpghttps://forums.kali.org/showthread.php?4129http://git.kernel.org/cgit/linux/kernel/git/linville/wireless-regdb.git/tree/db.txt?id=HEADhttp://en.wikipedia.org/wiki/Wi-Fi
  • 7/25/2019 How to Increase TX Power Signal Strength of WiFi

    4/10

    Linux file system hierarchy v2.0

    converted by Web2PDFConvert.com

    http://www.web2pdfconvert.com/?ref=PDFhttp://www.web2pdfconvert.com/?ref=PDFhttp://www.blackmoreops.com/2015/06/18/linux-file-system-hierarchy-v2-0/http://www.blackmoreops.com/2015/06/18/linux-file-system-hierarchy-v2-0/
  • 7/25/2019 How to Increase TX Power Signal Strength of WiFi

    5/10

    How to get Public IP from Linux Terminal?

    converted by Web2PDFConvert.com

    http://www.web2pdfconvert.com/?ref=PDFhttp://www.web2pdfconvert.com/?ref=PDFhttp://www.blackmoreops.com/2015/06/14/how-to-get-public-ip-from-linux-terminal/http://www.blackmoreops.com/2015/06/14/how-to-get-public-ip-from-linux-terminal/
  • 7/25/2019 How to Increase TX Power Signal Strength of WiFi

    6/10

    DoS website using slowhttptest in Kali Linux slowloris, slow HTTP POST and slow Read attack in one tool

    csw_wifi

    February 26, 2014 at 2:44 amcsw_wifi

    Reply

    I was wondering if you have tried increasing the txpower h igher? You probably have seen this around on the web, but you can

    modify the restrictions in the wireless-regdbs regulatory.bin to effect this change. The Regulatory restrictions have Bolivia (BO) limited

    to 30dBm or 1000mW. So if you change this limitation to 33, it will essentially allow you to double the txpower watts to 2000mW (which

    is the equivalent of 2 wattsthe approximate strength of your average college radio station!). I actually change the default, GB, and

    the US regulations to these modified Bolivia settings, so I dont even need to change the regulatory domain.

    September 3, 2014 at 10:05 amPaul Lukitsch

    converted by Web2PDFConvert.com

    http://www.web2pdfconvert.com/?ref=PDFhttp://www.web2pdfconvert.com/?ref=PDFhttps://plus.google.com/117583077636944680094http://localhost/var/www/apps/conversion/tmp/scratch_4/2013/10/27/how-to-increase-tx-power-signal-strength-of-wifi/?replytocom=216#respondhttp://fenghun/http://www.blackmoreops.com/2015/06/07/attack-website-using-slowhttptest-in-kali-linux/http://www.blackmoreops.com/2015/06/07/attack-website-using-slowhttptest-in-kali-linux/
  • 7/25/2019 How to Increase TX Power Signal Strength of WiFi

    7/10

    I have read that you could go up even to 36dBm, which would boost it to 4000mW, although I have not done this yet (but have read

    that people have done it without any perceivable damage to the card after several months of use). This would allow a big

    improvement to stations/clients connecting to it (say as a legitimate AP), because it would allow fast downloading of bigger files, etc.

    However. in the pentesting arena, I have no idea if this would be of any benefit. Considering that most wifi attacks work best if the

    targets signal is at some minimum level, does the increasing your transfer power do much in the way of wifi attacks (a lot of people

    maintain that both wps-based attacks and WPA2 attacks work better if the targets signal is in the 50s, or even the 40s.

    Anywayjust thought I would askas you might have tried it already.

    Reply

    this tutorial is good for transmitting stronger signal but how can i receive greater signal? is there any workaround here(though notphysically).

    September 21, 2014 at 11:59 pmGouRav GoYal

    Reply

    Only way you can receive better signal is by using a directional antenna. LifeHacker got a nice guide

    http://lifehacker.com/5964111/diy-wi-fi-antenna-cheaply-extends-your-wireless-network

    September 22, 2014 at 8:13 pmblackMORE Ops

    Reply

    Hi everyone, you read this here first !! Greetings from down under =)

    It looks like the folks in charge of the linux wireless regulatory database have found the BO (Bolivia) hack everyone is using, so they set

    it back to Tx-Power=20 dBm as of mid 2014. New 2015 KALI kernels are now includ ing this limit.

    See for yourself:

    -

    https://www.kernel.org/pub/software/network/wireless-regdb/wireless-regdb-2014.06.13.tar.gz (2014-06-13)

    (db.txt)

    country BO: DFS-JP

    (2402 2482 @ 40), (30)

  • 7/25/2019 How to Increase TX Power Signal Strength of WiFi

    8/10

    Enter your comment here...

    David Dalton: For newer people to linux and more specifically I would suggest using nano over...

    blackMORE Ops: Interesting link you have there, points to "TrendMicro Security Labs". This brea...

    RunlevelZero: Thank you, I'll try it....

    blackMORE Ops: The stuffs that you seek, is available via torrent. Download 'hackingteam's 500g...

    Comments Recent Popular Tags

    converted by Web2PDFConvert.com

    http://www.web2pdfconvert.com/?ref=PDFhttp://www.web2pdfconvert.com/?ref=PDFhttp://twitter.com/blackMOREOpshttp://www.facebook.com/blackMOREOpshttp://www.blackmoreops.com/feed/http://www.blackmoreops.com/2015/07/10/use-different-wallpapers-on-multiple-monitors-in-linux/#comment-4597http://www.blackmoreops.com/2015/07/10/use-different-wallpapers-on-multiple-monitors-in-linux/#comment-4598http://www.blackmoreops.com/2015/07/10/use-different-wallpapers-on-multiple-monitors-in-linux/#comment-4600http://www.blackmoreops.com/2014/03/03/20-things-installing-kali-linux/#comment-4602http://-/?-http://-/?-http://-/?-
  • 7/25/2019 How to Increase TX Power Signal Strength of WiFi

    9/10

    Be the first of your friends to like this

    blackMORE Ops6,234 likes

    Like PageLike Page ShareShare

    #DownloadHacking Team Database from torrent using magnet link.#hackingteamhttp://t.co/1Fdl8jLdLehttp://t.co/imBrldWgOG

    converted by Web2PDFConvert.com

    http://twitter.com/#search?q=Downloadhttp://www.web2pdfconvert.com/?ref=PDFhttp://www.web2pdfconvert.com/?ref=PDFhttp://t.co/imBrldWgOGhttp://t.co/1Fdl8jLdLehttp://twitter.com/#search?q=hackingteamhttp://twitter.com/#search?q=Downloadhttp://twitter.com/blackmoreopshttps://blackmoreops.blogspot.com/http://blackmoreops.tumblr.com/http://www.stumbleupon.com/stumbler/blackmoreopshttps://delicious.com/blackmoreopshttps://www.pinterest.com/blackmoreops/https://twitter.com/blackMOREOpshttps://www.facebook.com/blackMOREOpshttps://plus.google.com/+Blackmoreopshttp://www.blackmoreops.com/feed/http://plus.google.com/+blackMOREOps
  • 7/25/2019 How to Increase TX Power Signal Strength of WiFi

    10/10

    5 hours ago

    2015/07/13

    2015/07/13

    2015/07/10

    2015/07/10

    How to view Bash history without line numbers? http://t.co/8b6pP93WMa

    Revert Kali Linux login to classic BackTrack command line login http://t.co/BMtJl6C1Gm

    Get more out of #Linuxdesktop & #Conky. #ConkyManageris a graphical frontend for managing Conky config files http://t.co/XHf8GoDzKe

    How to use sar? sysstat #sarexamples and usage #LinuxAdministration#sysadmin#sysstathttp://t.co/TBoS5W9A1M

    Best USB Wireless Cards for Kali Linux

    Rokland N3 (2.4GHz)

    Alfa AWUS036NHA (2.4GHz)

    Alfa AWUS036H (2.4GHz)

    TP-Link WN722N (2.4GHz)

    Linksys WUSB54GC v1 (2.4GHz)

    Rosewill RNX-N600UBE (5GHz)

    Vote

    View Results

    Archives Select Month

    Categories Select Category

    blackMORE Ops

    + 2,277

    Follow +1

    Powered by WordPress | Designed by blackMORE Ops

    Copyright 2015, All Rights Reserved

    http://www.web2pdfconvert.com/?ref=PDFhttp://www.web2pdfconvert.com/?ref=PDFhttps://blackmoreops.blogspot.com/http://blackmoreops.tumblr.com/http://www.stumbleupon.com/stumbler/blackmoreopshttps://delicious.com/blackmoreopshttps://www.pinterest.com/blackmoreops/https://twitter.com/blackMOREOpshttps://www.facebook.com/blackMOREOpshttps://plus.google.com/+Blackmoreopshttp://www.blackmoreops.com/feed/http://www.blackmoreops.com/http://www.wordpress.com/http://www.blackmoreops.com/2014/01/08/recommended-usb-wireless-cards-kali-linux/http://t.co/TBoS5W9A1Mhttp://twitter.com/#search?q=sysstathttp://twitter.com/#search?q=sysadminhttp://twitter.com/#search?q=LinuxAdministrationhttp://twitter.com/#search?q=sarhttp://t.co/XHf8GoDzKehttp://twitter.com/#search?q=ConkyManagerhttp://twitter.com/#search?q=Conkyhttp://twitter.com/#search?q=Linuxhttp://t.co/BMtJl6C1Gmhttp://t.co/8b6pP93WMa