CSMA/CA avoids, CSMA/CD detects
Wireless uses collision avoidance because radios cannot transmit and listen simultaneously. More clients means more contention.
The previous chapter introduced network appliances, including wireless access points. This chapter explains the wireless standards those access points implement: how 802.11 works, which frequencies and channels to use, and how to secure wireless traffic.
Running Ethernet cable to every device is not practical in every situation. Maintenance technicians carry laptops between machines. Mobile HMIs move along production lines. Warehouse scanners roam across large areas. Wireless networking provides connectivity where cables cannot reach.
IEEE 802.11 is the family of wireless LAN standards. Each amendment defines a new generation with higher speeds or new frequency bands.
| Standard | Frequency | Max Speed | Key Feature |
|---|---|---|---|
| 802.11a | 5 GHz | 54 Mbps | First 5 GHz standard (1999) |
| 802.11b | 2.4 GHz | 11 Mbps | First widely adopted (1999) |
| 802.11g | 2.4 GHz | 54 Mbps | Backward compatible with 802.11b |
| 802.11n (Wi-Fi 4) | 2.4 / 5 GHz | 600 Mbps | MIMO, dual-band |
| 802.11ac (Wi-Fi 5) | 5 GHz | 3.5 Gbps | MU-MIMO, wider channels |
| 802.11ax (Wi-Fi 6/6E) | 2.4 / 5 / 6 GHz | 9.6 Gbps | OFDMA, dense environments |
MIMO (Multiple Input Multiple Output) uses multiple antennas to transmit and receive multiple data streams simultaneously. MU-MIMO (Multi-User MIMO) allows the AP to communicate with multiple clients at the same time.
Wired Ethernet uses CSMA/CD (Carrier Sense Multiple Access with Collision Detection): a device listens, transmits, and detects collisions during transmission. Wireless cannot use CSMA/CD because a radio cannot transmit and listen simultaneously on the same frequency.
Instead, 802.11 uses CSMA/CA (Carrier Sense Multiple Access with Collision Avoidance). The process works as follows:
The random backoff reduces the probability that two clients transmit at the same time, but it does not eliminate it. More clients on the same channel means more contention and lower throughput.
Two clients (A and C) can both reach the AP but cannot hear each other. Client A transmits. Client C, unaware of A’s transmission, also transmits. Both frames collide at the AP.
RTS/CTS (Request to Send / Clear to Send) solves this. Before transmitting, Client A sends a short RTS frame. The AP responds with a CTS frame that all clients hear. Client C hears the CTS and defers its transmission for the duration specified in the CTS. This reserves the channel for Client A’s transmission.
RTS/CTS adds overhead (two extra frames per transmission) and is typically enabled only when hidden node problems cause excessive retransmissions.
CSMA/CA avoids, CSMA/CD detects
Wireless uses collision avoidance because radios cannot transmit and listen simultaneously. More clients means more contention.
Wi-Fi 6 handles dense environments
OFDMA allows the AP to serve multiple clients simultaneously, reducing latency in crowded spaces.
RTS/CTS solves hidden node problems
Enable RTS/CTS only when hidden node collisions cause excessive retransmissions. It adds overhead to every transmission.
Understanding the standards is only part of the picture. The next page covers frequency bands, channels, channel bonding, and OFDMA, explaining how to plan wireless coverage without interference.