16 Wi-Fi MAC Layer and Protocols
Wi-Fi MAC layer protocols, CSMA CA review, Wi-Fi frame exchange evidence, Wi-Fi QoS review, RTS CTS hidden terminal evidence
16.1 Start With the Wireless Story
The Wi-Fi MAC decides who gets to talk next. Start with one frame waiting for airtime, then follow contention, backoff, retries, acknowledgments, hidden terminals, QoS, aggregation, and power-save effects until latency and reliability make sense.
16.2 The Wi-Fi MAC Layer Shares Airtime
The Wi-Fi MAC layer is the rule set that decides when a station may use the wireless channel. In an IoT deployment, it connects radio behavior to product behavior: a sensor waits, transmits, receives an acknowledgment, retries if needed, sleeps, wakes, and eventually has to prove that the application received fresh enough data. The MAC evidence therefore sits between raw RF observations and service evidence.
The beginner mistake is to treat Wi-Fi like a private wire. It is a shared medium. Devices listen before transmitting, defer when the channel appears busy, use random backoff, and compete with other devices that may have different traffic classes, power states, and locations. A review should ask what workload is sharing the airtime, not just whether the device joined the AP.
For a small IoT device, the MAC decision often hides in timing. Ten bytes sent at a quiet minute is easy; ten bytes sent by hundreds of devices at the same scheduled wake time can become a queue, a retry burst, or a stale dashboard. The acceptance record should name the traffic class, expected freshness, AP profile, channel plan, retry observations, service outcome, and retest trigger. That record keeps the airtime claim tied to the workload, not the payload size.
If you only need the core idea, use this rule: a small payload does not make MAC behavior irrelevant. Many small frames can still queue, collide, retry, or arrive too late when devices wake together.
16.2.1 Beginner MAC Pieces
16.2.2 Channel access
The station checks whether the medium appears free, waits when needed, and uses backoff so multiple stations do not all transmit at once.
16.2.3 Frame exchange
Data, management, and control frames provide different evidence. ACKs and retries describe link-layer behavior, not full application success.
16.2.4 Contention
Retry rate, busy time, latency, and burst behavior show whether stations are sharing airtime cleanly under the actual workload.
16.2.5 Power save
Sleeping devices may delay downlink commands or buffered frames, so freshness and command response need their own evidence.
16.2.6 Beginner Example
A room sensor that uploads ten bytes every minute can still fail a MAC review if every sensor wakes at the same time. The payload is small, but the evidence must cover wake timing, channel busy behavior, retries, service acceptance, stale-data state, and what the user sees when reports arrive late.
16.2.7 Overview Knowledge Check
16.3 Build a MAC Evidence Record
A practical MAC review starts with the traffic class, not the protocol feature. Periodic telemetry, alarms, live video, setup traffic, firmware updates, scanner sessions, and maintenance commands each stress airtime differently. The review should state which behavior is required, which evidence was observed, and which change would trigger retest.
16.3.1 How It Works: MAC Review Route
- Name the traffic. Record whether it is periodic, bursty, event-driven, live, bulk, diagnostic, or setup traffic.
- Inspect channel access. Look for busy-channel behavior, retry trends, latency, synchronized wake periods, and AP load.
- Separate link evidence from service evidence. ACKs and retries are not the same as application acceptance, command execution, or dashboard freshness.
- Test targeted controls. Use placement, channel choices, traffic staggering, scoped RTS/CTS, QoS, aggregation, or power-state changes only where the evidence justifies them.
- Record the decision. Include limits, owner, support observations, and the retest trigger for firmware, AP profile, site, or workload changes.
16.3.2 Intermediate Example
A warehouse adds Wi-Fi sensors near metal racks. RSSI to the AP looks acceptable, but retry rate rises when devices on opposite sides of the racks report together. A reviewable response tests AP placement, device grouping, channel changes, traffic staggering, or scoped RTS/CTS and compares retries, latency, delivery, and user-visible freshness before accepting a repair.
16.3.3 MAC Evidence Ledger
16.3.4 Practitioner Knowledge Check
16.4 Under The Hood: Protocol Controls Change Tradeoffs
MAC controls can improve a bounded problem, but they also create tradeoffs. RTS/CTS may reduce hidden-terminal collisions while adding control overhead. QoS can help selected latency-sensitive flows while failing if everything receives the same priority. Aggregation can reduce overhead for compatible batches while increasing delay for traffic that needs immediate delivery. Power save can save energy while delaying buffered downlink frames and making command latency look random.
16.4.1 DCF Timing And Frame Evidence
For deeper reviews, treat the 802.11 distributed coordination function as a timing ledger. A station waits for the required interframe space, chooses a random backoff from the current contention window, freezes that counter while the medium is busy, and retries with a larger window after a collision. The default contention window is only a starting point; the useful question is whether the selected access category, contention window, retry limit, and transmit opportunity match the number of contenders and the traffic promise.
RTS/CTS adds a short reservation exchange before the data frame. The sender asks for the medium with Request to Send, the receiver answers with Clear to Send, and nearby stations that overhear either control frame treat the announced duration as busy in their Network Allocation Vector. That virtual carrier-sense state is why RTS/CTS can reduce some hidden-terminal collisions, while still adding control overhead that has to be justified by before-and-after retry and latency evidence.
A compact throughput estimate separates three probabilities. Let tau be the probability that one station transmits in a randomly chosen slot, and let n be the number of contending stations. The frame-level collision probability is approximately p = 1 - (1 - tau)^(n - 1). The expected number of attempts before success is 1 + p + p^2 + … + p^K for a retry limit K. The expected backoff slots depend on the backoff stage, for example b_k = 2^k CWmin / 2 before any maximum-window cap is applied.
The station’s useful rate is not the PHY rate. It is useful payload over expected slot time. A slot can be idle, successful, or collided; a busy slot includes preamble, payload airtime, SIFS, ACK time, and AIFS. For equal-length packets at one PHY rate, a useful review can write the shape as S = useful payload / E[slot] and then test whether observed retry, busy-time, and latency evidence agree with that model. If the model says the window is too small for the contender count, the repair may be traffic staggering, AP/channel changes, QoS tuning, or a different radio plan rather than simply increasing transmit power.
The frame fields are part of the same evidence. An 802.11 data frame carries frame control, duration, receiver/transmitter addressing, sequence control, optional fourth address, payload, and frame check sequence. Frame-control bits such as type, subtype, To DS, From DS, retry, power management, and protected-frame state explain whether a capture is showing association traffic, data transfer, retry behavior, roaming, or security handling. Aggregation changes the evidence again: A-MPDU aggregation batches MPDUs with block acknowledgments, while A-MSDU aggregation packs several payloads under one MAC header. Both reduce overhead for compatible batches, but neither makes tiny urgent messages free.
16.4.2 Why ACKs, Retries, And Applications Must Stay Separate
A MAC acknowledgment means that a frame exchange reached the expected receiver at the link layer. It does not prove that the application parsed the payload, stored the reading, executed a command, updated a dashboard, or recovered from a duplicate. A useful review keeps link evidence, network evidence, service evidence, and product evidence in separate columns.
The same separation applies to retry counters. A rising retry count may point to weak signal, channel contention, hidden terminals, rate adaptation, roaming, or synchronized wake bursts. The MAC layer can report symptoms, but the release decision needs a joined trace: AP or sniffer observation, device log, service timestamp, user-visible state, and final application outcome. That trace is what stops a radio repair from masking a service problem.
16.4.3 Advanced Example
A maintenance tablet controls equipment while moving through a site. The review cannot approve the workflow from a single speed test. It needs route evidence, busy-channel behavior, reassociation or reconnect events, command response, stale-state display, and support logs that can explain whether a failure came from channel contention, roaming, security, service delivery, or the application. If RTS/CTS, QoS, aggregation, or power-save tuning is changed, the record should show the before/after symptom, the user-visible outcome, and when to roll the change back.
16.4.4 Failure-Boundary Checks
16.4.5 RTS/CTS boundary
Use it as a measured hidden-terminal repair, not as a universal performance improvement. Record rollback conditions.
16.4.6 QoS boundary
Reserve priority for flows with real latency or jitter needs, then verify that clients, APs, and upstream paths preserve the intended behavior.
16.4.7 Aggregation boundary
Batch only when freshness and duplicate handling allow it. Measure whether latency, retries, and service acceptance improve.
16.4.8 Observability boundary
Decide which AP metrics, device logs, service records, and user-visible states will remain available after deployment.
16.4.9 Try It: MAC Readiness Sentence
Write one sentence for a device class: “This MAC behavior is accepted for this traffic class, on this AP profile and channel plan, with this retry and latency evidence, these service outcomes, these support observations, and this retest trigger.” If the sentence cannot be completed, the readiness claim is still too broad.
16.4.10 Under-The-Hood Knowledge Check
16.5 Summary
Wi-Fi MAC behavior determines how IoT stations share airtime. CSMA/CA, backoff, frame exchange, ACKs, retries, RTS/CTS, QoS, aggregation, and power-save behavior matter because they shape delivery, latency, freshness, command response, recovery, and supportability.
A strong review does not approve MAC readiness from a technology label, payload size, single association, or RSSI value. It ties the protocol behavior to a traffic class, installed evidence, service outcomes, user-visible state, and retest trigger.
Approve Wi-Fi MAC behavior only when channel access, frame exchange, contention, power-save, service delivery, and support evidence match the actual IoT workload.
16.6 See Also
16.6.1 Wi-Fi Bands & Channels
Use this when band choice, channel width, and shared-spectrum behavior drive MAC risk.
16.6.2 Wi-Fi Power Consumption
Use this when wake windows, buffered downlink, retry energy, or sleep behavior shape acceptance.
16.6.3 Wi-Fi Security and Provisioning
Use this when onboarding, credentials, segmentation, or revocation affect frame and service evidence.
16.6.4 Wi-Fi Deployment Planning
Use this when MAC evidence must become a site validation and operations plan.