Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Arbitration Inter-Frame Spacing (AIFS)
Arbitration Inter-Frame Spacing (AIFS) is a quality of service mechanism used in IEEE 802.11e WLAN standard (Wi-Fi) to provide differentiated channel access at the medium access control (MAC) layer. It determines the time interval that a station must wait before transmitting, prioritizing stations based on their Access Category (AC).
How AIFS Works
In wireless communication, collision detection is difficult due to the hidden node problem and signal fading. Therefore, collision avoidance schemes are essential when multiple stations compete for channel access. AIFS assigns different waiting periods to frames based on their priority level, ensuring that time-sensitive traffic like voice and video gets preferential access to the medium.
Higher priority stations are assigned shorter AIFS values, allowing them to attempt transmission sooner after the channel becomes idle. This mechanism is crucial for delay-sensitive applications like VoIP and video streaming where minimal latency is essential for acceptable user experience.
AIFS Calculation
The AIFS value is calculated using the following formula:
AIFS = (AIFSN[AC] × SlotTime) + SIFS
Where:
-
AIFSN[AC] − AIFS Number for the specific Access Category (typically ranges from 2 to 15)
-
SlotTime − Duration of one time slot as defined by the physical layer (9?s for 802.11a/g, 20?s for 802.11b)
-
SIFS − Short Inter-Frame Space, the minimum time required between receiving a frame and responding (16?s for 802.11a/g)
Access Category Priority Levels
| Access Category | Traffic Type | Typical AIFSN | Priority |
|---|---|---|---|
| AC_VO (Voice) | VoIP, telephony | 2 | Highest |
| AC_VI (Video) | Video streaming | 2 | High |
| AC_BE (Best Effort) | Web browsing, email | 3 | Normal |
| AC_BK (Background) | File transfers, backup | 7 | Low |
Conclusion
AIFS provides quality of service differentiation in 802.11e networks by assigning shorter waiting periods to higher-priority traffic. This mechanism ensures that time-critical applications like voice and video receive preferential channel access, improving overall network performance for multimedia applications.
