Electrical-Forenics Home ray@RayFranco.com                       601.529.7473
   © Dr. Ray Franco, PhD, PE  -  208 Fairways Dr., Vicksburg, MS 39183

Wireless Internet - Wi-Fi

Signal Strength

The iPhone can be used to measure the signal strength of WiFi. You can use the built-in program "AirPort Utility" or a third party app. To use the built-in program, you have to go to settings > AirPort Utility, and cut on the WiFi Scanner. Now, when you open the Airport Utility, "WiFi Scan" will appear in blue at the top right corner. Click on it, and the scan will begin. When you finish, do not forget to go back to settings and cut off the wifi scanner. This feature is not enabled by default because it consumes power.

The Received Signal Stength Indicator (RSSI) is in negative decibels-milliwatt (dbm). The lower the number, the better the signal strength.

-30 dbmideal
-40 dbm At the access point/router
-50 dbmExcellent
-60 dbmGood Reliable Strenght
-67 dbmMininum for VoIP / Streaming
-70 dbmSufficient for email and Web
-80 dbmMininum to make a Connection - Unreliable
-90 dbmUnlikely to Connect
 
2.4 GHzbetween 450 - 600 Mbps
5 GHzup to 1300 Mbps
5.925-7.125 GHzWiFi 6E

The 2.4 GHz band will support speeds between 450 Mbps and 600 Mbps.
The 5 Ghz band will support speeds up to 1300 Mbps.

Common NameIEEE StandardBand(s)
Wi-Fi 1802.11b2.4 GHz
Wi-Fi 2802.11a5 GHz
Wi-Fi 3802.11g5 GHz
Wi-Fi 4802.11n2.4 & 5 GHz
Wi-Fi 5802.11ac5 GHz
Wi-Fi 6802.11ax2.4 & 5 GHz

Wi-Fi 5 / 802.11ac

Wi-Fi 5 (802.11ac) is compatible with older generations of WiFi i.e. WiFi a/b/g/n.

Wi-Fi 6 / 802.11ax

Wi-Fi 6 (802.11ax) uses both the low band 2.4 GHz and the high band 5 GHz. Wi-Fi 6 is theroically compatible with legency devices.

Wi-Fi 6E - Not Compatible with Older Devices

Wi-Fi 6E only supports 802.11ax devices only. That is, there is no backwards compatibility. It drops support for 802.11a/b/g/n/ac devices entirely.

Interference:

Microwave ovens opererate nominal at 2.45 to 2.5 GHz. Some cordless phones, garage door openers and baby monitors also operate in this range. All of these can interfer with the 2.4 GHz Wi-Fi band.

Raspberry Pi 4B - Wi-Fi

The Raspberry Pi 4B is Wi-Fi 5 (8011.ac) Compiant. It has both 2.4 & 5 GHz radios.

According to what I have read on the Internet, you cannot ssh into an Apple Router:

Transmission Control Protocol (TCP/IP)

User Datagram Protocol (UDP)

ip addr | address

ip link set {DEVICE} {up | down}

ip -s link // Statistics

netstat // processes that have network interaces open

Add DNS name servers to an interface by editing /etc/resolv.conf or /etc/network/interfaces/

Change the houstname of the server by editing /etc/hostname and /etc/hosts and verifying it with hostname -f.

My House

  Channel Den Sun Room Bedroom
Coco 1 11 -47 dbm -62 dbm -61 dbm
Coco 2 44 -41 dbm -74 dbm -70 dbm
Coco 3 132 -47 dbm -71dbm -75 dbm
Apple 149 -53 dbm -75 dbm -78 dbm

Predictable Network Interface Names

Followed by physical location or PCI Bus #

Followed by the slot #

For example:


wlp2s0
        

is a Wireless LAN interface connected to PCI bus #2 in slot 0.

References

  1. Ask Ubuntu - Why is my interface now wlp2s0 instead of wlan0?
  2. Stack Exchange - Naming convention standard for Ethernet and Wi-Fi interfaces on Linux machines

Interface Wireless (iw) Command

The iwconfig command is depricated. Use the iw command.

By default iwlist is inclued in Kali but not in Debian. You can still install it in Debian by installing "wireless-tools:

sudo apt install wireless-tools

However, the new iw command can also perform scanning::

First, get the name of the wireless interface you want to perform the scan with:

sudo iw dev

Then:

sudo iw dev wirelss_interface_name scan | less

In most cases, this will produce output that will more than fill one page. Hence, the ouput is piped to less.

If the NetworkManger is running, for a compact output use:

nmcli dev wifi

References

  1. Network configuration/Wireless
  2. Arch Linux - Network configuration/Wireless