Library

14.4.3 Medium Access In WLANs

IEEE 802.11 systems operate in unlicensed frequency bands allocated for industrial, scientific, and medical (ISM) or unlicensed national information infrastructure (U-NII) use. The principal bands used by modern Wi-Fi systems are:

802.11 channels are defined with nominal bandwidths of: 20 MHz (baseline), 40 MHz, 80 MHz, 160 MHz, and 320 MHz (Wi-Fi 7). Wider channels provide higher peak data rates but consume more spectrum and reduce the number of non-overlapping channels available for spatial reuse. In dense deployments, particularly in the 2.4 GHz band, narrower channels may provide better aggregate network performance.

Because the wireless channel is shared, all stations within range compete for access and interference from neighboring WLANs may degrade performance. Co-channel interference and adjacent-channel interference must therefore be considered in network planning These characteristics make medium access control mechanisms such as CSMA/CA essential for fair and efficient use of the wireless medium.

The shared and interference-prone nature of the wireless medium makes coordinated access control essential. We therefore next examine the medium access mechanisms defined in IEEE 802.11.

Having considered the physical characteristics of the shared wireless medium, we now examine how IEEE 802.11 coordinates access to that medium through its Distributed Coordination Function.

14.4.3.1 Distributed Coordination Function (DCF)

The primary access mechanism defined in IEEE 802.11 is the Distributed Coordination Function (DCF). DCF employs a carrier-sense methodology similar in principle to early Ethernet; stations first listen to determine whether the wireless medium is idle before attempting transmission. Unlike Ethernet CSMA/CD, however, collision detection is not feasible in wireless systems. Instead, IEEE 802.11 uses collision avoidance (CSMA/CA).

Under DCF:

Rather than transmitting and detecting collisions after they occur, stations avoid collisions by waiting a random time after the medium becomes free. The first station whose backoff timer expires gains access to the channel.

After transmitting a frame, the sender expects a positive acknowledgement (ACK) from the receiver. If no ACK is received, the transmission is assumed to have failed. The station then increases the size of its contention window, implementing a binary exponential backoff algorithm.

Following the basic DCF mechanism, later enhancements were introduced to improve performance, particularly for multimedia traffic and high-throughput operation. IEEE 802.11e defined Enhanced Distributed Channel Access (EDCA), which extends DCF by assigning different traffic categories (e.g., voice, video, best effort, background) distinct contention parameters. Each category is given its own contention window limits and interframe spacing, allowing delay-sensitive traffic such as voice and video to obtain faster access to the medium than lower-priority traffic.

To reduce protocol overhead and improve efficiency, modern WLAN standards also employ frame aggregation and block acknowledgements. Because each transmission under DCF requires contention, interframe spacing, and acknowledgement, sending many small frames individually results in significant overhead. Aggregation allows multiple data frames to be transmitted within a single channel access opportunity.

Two principal aggregation methods are defined:

A-MSDU provides lower overhead but requires the entire aggregate to be retransmitted if any error occurs. A-MPDU, by contrast, allows selective retransmission of only those subframes that were not correctly received.

To complement aggregation, 802.11 employs block acknowledgements, whereby the receiver acknowledges multiple frames collectively rather than individually. This further reduces control overhead and increases effective throughput.

Together, EDCA prioritization, frame aggregation, and block acknowledgement significantly improve the spectral efficiency of modern WLANs compared with early DCF implementations.