WiFi Scanner Mac App Store


WLAN Book

Using Mac OS Airport Command Line Utility to Display and Speak RSSI Values

Using Mac OS Airport Command Line Utility to Display and Speak RSSI Values

The airport command line utility available in Mac OS and can be very useful for troubleshooting and measuring WiFi signal strength.

To test on your Mac OS machine copy/paste into a terminal window.

Using Mac OS Airport Command Line Utility to Display and Speak RSSI Values

Three ways to use the airport command line utility to display and speak RSSI values are below.

1) List RSSI value every 0.5 seconds

Command

while x=1; do /System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport -I | grep CtlRSSI; sleep 0.5; done

Results

agrCtlRSSI: -69
agrCtlRSSI: -69
agrCtlRSSI: -69
agrCtlRSSI: -69

2) Only display most recent RSSI value.

Command

clear; while x=1; do /System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport -I | grep CtlRSSI | sed -e 's/^.*://g' | xargs -I SIGNAL printf "\rRSSI dBm: SIGNAL"; sleep 0.5; done

Result

RSSI dBm: -69

3) Computer voice reading RSSI value.

Command

clear; while x=1; do /System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport -I | grep CtlRSSI | sed -e 's/^.*://g' | say -v agnes; sleep 0.5; done

Result

Computer voice reading RSSI value every 0.5 seconds

Voice Options

change “agnes” in above to one of the other options from below.

Female Voices

$ say -v Agnes “hello world”
$ say -v Kathy “hello world”
$ say -v Princess “hello world”
$ say -v Vicki “hello world”
$ say -v Victoria “hello world”

Male Voices

$ say -v Bruce “hello world”
$ say -v Fred “hello world”
$ say -v Junior “hello world”
$ say -v Ralph “hello world”

Novelty Voices

$ say -v Albert “hello world”
$ say -v “Bad News” “hello world”
$ say -v Bahh “hello world”
$ say -v Bells “hello world”
$ say -v Boing “hello world”
$ say -v Bubbles “hello world”
$ say -v Cellos “hello world”
$ say -v Deranged “hello world”
$ say -v “Good News” “hello world”
$ say -v Hysterical “hello world”
$ say -v “Pipe Organ” “hello world”
$ say -v Trinoids “hello world”
$ say -v Whisper “hello world”
$ say -v Zarvox “hello world

Related posts:

  1. Mac OS X WiFi Wireless Scanner
  2. Mac OS X WiFi 802.11 Sniffing / Sniffer
  3. NetStumbler for Mac OS X
  4. Enable/Disable Wireless Card from Command Line
  5. Mac OS X Wireless Signal Strength in Snow Leopard

If you liked this post, subscribe using below

WLAN Book RSS Feed

RSS Email WLAN Book by Email

.

Filed under: WLAN Site Survey, WLAN Tools, WLAN Troubleshooting

Comments are closed.