NE-08

Wireless Networking Basics

Network+ / NE-08
< Network+ Hub

Learning Objectives

802.11 Standards

Wi-Fi is governed by the IEEE 802.11 family of standards. Each amendment defines different frequencies, modulation schemes, and maximum data rates. The Wi-Fi Alliance also assigns marketing names (Wi-Fi 4, 5, 6, etc.).

StandardWi-Fi NameFrequencyMax SpeedYear
802.11a--5 GHz54 Mbps1999
802.11b--2.4 GHz11 Mbps1999
802.11g--2.4 GHz54 Mbps2003
802.11nWi-Fi 42.4 / 5 GHz600 Mbps2009
802.11acWi-Fi 55 GHz6.9 Gbps2013
802.11axWi-Fi 6/6E2.4 / 5 / 6 GHz9.6 Gbps2020
802.11beWi-Fi 72.4 / 5 / 6 GHz46 Gbps2024
Key Distinction:

2.4 GHz has better range and wall penetration but only 3 non-overlapping channels (1, 6, 11). 5 GHz offers more channels and less interference but shorter range. 6 GHz (Wi-Fi 6E/7) adds even more channels with minimal congestion.

Frequency Bands and Channels

/* 2.4 GHz Band -- 11 channels (US), only 3 non-overlapping */ Channel: 1 2 3 4 5 6 7 8 9 10 11 |---|---|---|---|---|---|---|---|---|---| ^^^^^^^^^ ^^^^^^^^^ ^^^^^^^^^ Ch 1 (22MHz) Ch 6 (22MHz) Ch 11 (22MHz) /* Best practice: use channels 1, 6, and 11 only. Overlapping channels cause co-channel interference. */ /* 5 GHz Band -- 25 non-overlapping 20MHz channels (US) Can bond channels: 40MHz, 80MHz, 160MHz for higher throughput More channels = less interference, better for dense environments */ /* 6 GHz Band (Wi-Fi 6E) -- 59 new 20MHz channels Clean spectrum, no legacy devices, ideal for high-density */

Wireless Security Protocols

ProtocolEncryptionStatusNotes
WEPRC4 (40/104-bit)BROKENCrackable in minutes. Never use.
WPATKIP (RC4-based)DeprecatedInterim fix for WEP. Vulnerabilities found.
WPA2-PersonalAES-CCMPCurrent standardPre-shared key (PSK). Vulnerable to offline dictionary attacks if weak password.
WPA2-EnterpriseAES-CCMPCurrent standard802.1X/RADIUS authentication. Per-user credentials. Best for organizations.
WPA3-PersonalAES-GCMP / SAELatestSAE (Simultaneous Authentication of Equals) replaces PSK. Resistant to offline attacks.
WPA3-Enterprise192-bit AESLatestCNSA-grade encryption. Required for government/military.
Real-World Minimum:

Always use WPA2-AES or WPA3 at minimum. WEP and WPA-TKIP are crackable with freely available tools (aircrack-ng). For enterprise networks, WPA2/3-Enterprise with 802.1X is the standard -- each user authenticates with unique credentials through a RADIUS server.

How Wireless Communication Works

Unlike wired Ethernet, wireless devices cannot detect collisions (they are transmitting and receiving on the same antenna). Instead, 802.11 uses CSMA/CA (Collision Avoidance) -- devices listen before transmitting and use acknowledgments to confirm delivery.

/* CSMA/CA Process */ 1. Client wants to transmit 2. Listens to the channel (carrier sense) 3. If busy: wait + random backoff timer 4. If clear: send RTS (Request to Send) to AP 5. AP responds with CTS (Clear to Send) 6. Client transmits data frame 7. AP sends ACK (acknowledgment) 8. If no ACK received: retransmit /* Key difference from wired CSMA/CD: - Wired: detect collision, stop, backoff, retry - Wireless: AVOID collision by checking first + RTS/CTS - The "hidden node" problem: two clients can't hear each other but both reach the AP. RTS/CTS solves this. */

Wireless Architecture

Autonomous AP Each access point is configured individually. No central management. Works for small deployments (1-5 APs). Each AP manages its own SSIDs, channels, and security.
Controller-Based (WLC) A Wireless LAN Controller manages all APs centrally. APs are "lightweight" (CAPWAP tunnel). Policies pushed from one console. Required for enterprise (50+ APs).
Cloud-Managed APs are managed through a cloud dashboard (Meraki, Aruba Central, UniFi). No on-prem controller. Easy deployment, subscription-based.
Mesh Networking APs connect wirelessly to each other to extend coverage without cabling. One AP connects to the wired network; others relay through it. Good for outdoor or hard-to-wire areas.

Site Surveys and AP Placement

A wireless site survey maps RF coverage before deploying APs. The goal is to ensure adequate signal strength, minimize dead zones, and avoid co-channel interference.

/* Site Survey Types */ Passive Survey: Walk the site with a survey tool (Ekahau, NetSpot) listening to existing signals. Maps current RF environment. Active Survey: Connect to the network and measure actual throughput, latency, and packet loss at each location. Predictive: Use software to simulate RF propagation on a floor plan before any hardware is deployed. /* Key Metrics */ Signal Strength: Minimum -67 dBm for VoIP, -70 dBm for data SNR: Minimum 25 dB for reliable performance Channel Overlap: APs on same channel should have -19 dBm separation /* AP Placement Rules of Thumb */ - Mount APs on the ceiling, antenna pointing down - Space APs 40-60 feet apart for 5 GHz, 80-100 for 2.4 GHz - Avoid placing near metal objects, concrete, or microwave ovens - Use 20-30% overlap between adjacent AP coverage areas for roaming

Common Wireless Issues

Co-Channel Interference Adjacent APs on the same channel compete for airtime. Solution: proper channel planning using non-overlapping channels.
Adjacent Channel Interference APs on overlapping channels (e.g., 1 and 3 in 2.4 GHz) corrupt each other's signals. Worse than co-channel. Use only 1, 6, 11.
Hidden Node Two clients cannot hear each other but both reach the AP, causing collisions at the AP. Solved with RTS/CTS.
Sticky Clients Devices stay connected to a distant AP instead of roaming to a closer one. Minimum RSSI thresholds and band steering help.

Key Takeaways