Arbitration IFS
Understanding Interframe Spaces (IFS) in Wi-Fi
In Wi-Fi, dozens of devices share the same piece of RF spectrum. Without a strict protocol governing who speaks when, every device would transmit simultaneously, and every transmission would collide with every other. Interframe Spacing (IFS) is the core timing discipline that prevents this chaos — a set of mandatory silence periods that organize the air.
The CSMA/CA Protocol
Wi-Fi uses Listen-Before-Talk: a device listens for the channel to be idle before transmitting. But after a transmission ends, all waiting devices detect the channel idle at the same moment. Without additional coordination, all would transmit simultaneously. IFS solves this:
- After a transmission, all devices must wait a minimum IFS interval before they even begin their random backoff countdown.
- Devices with shorter IFS values start their backoff earlier, giving them a statistical priority advantage.
- A device that needs to send an ACK uses the shortest SIFS, responding before any contending device can start its AIFS countdown.
The WMM Priority Queue
802.11e WMM (Wi-Fi Multimedia) defines four Access Categories (AC), each with a different AIFS value: Voice (shortest AIFS + smallest contention window), Video, Best Effort, and Background (longest AIFS). A VoIP packet classified as AC_Voice is statistically likely to win channel access before a file download classified as AC_Background, providing the low latency and jitter that voice quality requires.
Key Equations
Interframe Spacing (IFS) refers to the mandatory silent intervals that all IEEE 802.11 Wi-Fi devices must observe between transmitted frames before they are allowed to...
Key specifications:
802.11 W | 16 µs | 802.11 a | 32.44 dB | 60 km | 99.999 %
Throughput: R = Nlayers×B×ηSE×(1−OH)
Comparison
| Aspect | Arbitration IFS Spec | Typical Range | Impact | Design Note |
|---|---|---|---|---|
| Primary function | Different IFS durations are assigned to... | Application-dep. | Critical | Verify in sim |
| Operating range | The SIFS (Short IFS, ~16 µs in 802.11ax)... | Application-dep. | Critical | Verify in sim |
| Performance | The DIFS (DCF IFS) or AIFS (Arbitration... | Application-dep. | Critical | Verify in sim |
| Integration | A device with a shorter AIFS value is al... | Application-dep. | Critical | Verify in sim |
| Trade-off | This IFS-based priority mechanism is the... | Application-dep. | Critical | Verify in sim |
Frequently Asked Questions
What happens if two devices start transmitting at exactly the same time?
A collision occurs. Both transmissions corrupt each other. The transmitting devices detect the collision (via failed ACK) and schedule retransmission after a random backoff period drawn from an exponentially growing contention window. The randomization of the backoff prevents repeated collisions. This is the CSMA/CA collision resolution mechanism — avoiding collisions by random backoff rather than detecting and resolving them as in Ethernet's CSMA/CD.
How has OFDMA in Wi-Fi 6 changed IFS requirements?
802.11ax introduced OFDMA (Orthogonal Frequency Division Multiple Access), allowing the access point to transmit to multiple clients simultaneously using different subcarriers within a single OFDM symbol. For OFDMA uplink, the AP triggers multiple clients to transmit together in a coordinated Multi-User (MU) frame. This AP-controlled scheduling dramatically reduces the importance of contention-based IFS, replacing distributed random access with deterministic AP-managed scheduling for high-efficiency scenarios.
Is IFS affected by the 2.4 GHz vs 5 GHz band?
The fundamental IFS durations are derived from the slot time, which differs between PHY variants. 802.11b at 2.4 GHz uses a 20 µs slot time; 802.11a/g/n/ac/ax use a 9 µs slot time. Consequently, SIFS, DIFS, and AIFS values differ numerically between legacy 2.4 GHz and modern 5 GHz operation. Devices operating in mixed environments must use timing values compatible with the slowest device present, reducing efficiency.