Skip to content

7.1 802.11 Standards and CSMA/CA

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.

StandardFrequencyMax SpeedKey Feature
802.11a5 GHz54 MbpsFirst 5 GHz standard (1999)
802.11b2.4 GHz11 MbpsFirst widely adopted (1999)
802.11g2.4 GHz54 MbpsBackward compatible with 802.11b
802.11n (Wi-Fi 4)2.4 / 5 GHz600 MbpsMIMO, dual-band
802.11ac (Wi-Fi 5)5 GHz3.5 GbpsMU-MIMO, wider channels
802.11ax (Wi-Fi 6/6E)2.4 / 5 / 6 GHz9.6 GbpsOFDMA, 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.

CSMA/CA — How Wireless Avoids Collisions

Section titled “CSMA/CA — How Wireless Avoids Collisions”

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:

  1. The client listens to the channel. If the channel is busy, it waits.
  2. When the channel is idle, the client waits for a random backoff timer (a random number of time slots).
  3. If the channel remains idle for the entire backoff period, the client transmits.
  4. The AP receives the frame and sends an ACK. If the client does not receive an ACK, it assumes a collision occurred and retries with a longer backoff.

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.

  • IEEE 802.11-2020 — Wireless LAN Medium Access Control and Physical Layer Specifications