Survey the air around you and record numbers instead of bars
Task
Produce a channel and signal survey of the wireless networks visible from one location, in dBm, and identify the congestion that any recommendation would have to address.
Steps
- From one fixed location, record every visible network into
lab/wifi/survey.csvwith headerssid_masked,band,channel,width_mhz,signal_dbm,security-- mask the network names asnet01,net02and so on, because neighbours' network names are not yours to publish. - Record your own network's row separately in
lab/wifi/mine.csvwith the same header, unmasked. - Count the networks per channel in the 2.4 GHz band into
lab/wifi/occupancy.csvwith headerchannel,networks,total_dbm. - Write
lab/wifi/verdict.mdnaming which of channels 1, 6 and 11 is least occupied, weighted by signal strength rather than by count, and showing the arithmetic. - Record the same survey from a second location in
lab/wifi/second.csvand note inlab/wifi/difference.mdwhich networks changed by more than 10 dBm between the two.
Verify
awk -F, 'NR>1 && NF>=6 {n++} END {print n" network(s) surveyed"}' lab/wifi/survey.csv
awk -F, 'NR>1 {print $2}' lab/wifi/survey.csv | sort -u | wc -l
awk -F, 'NR>1 && NF>=3 {n++} END {print n" channel(s) counted"}' lab/wifi/occupancy.csv
grep -Ec '1|6|11' lab/wifi/verdict.md
awk -F, 'NR>1 && NF>=6 {n++} END {print n" network(s) at second location"}' lab/wifi/second.csv
grep -c . lab/wifi/difference.md
Three or more networks surveyed, both bands represented where both are in use, channel occupancy counted, a verdict naming one of the three channels, and a second location recorded. If every signal figure is positive, you have recorded bars rather than dBm.
Notes
Mask the network names. A published survey listing neighbours' network names alongside their security modes is a document you would not want written about your own home.
This is an independent study companion for CompTIA A+ Core 1 220-1201 and is not produced by or endorsed by CompTIA.