Communication Engineering

Wireless LAN Principles

A comprehensive study guide covering the fundamental concepts of IEEE 802.11 wireless networks, including propagation factors, terminal problems, and network architecture.

4 Core Topics Interactive Simulations Undergraduate Level
01

Factors Affecting Wireless Communication

Understanding propagation challenges in wireless environments

Path Loss (Large-Scale Fading)

Signal attenuation that occurs as electromagnetic waves propagate through space. The received power decreases with increasing distance between transmitter and receiver.

FSPL (dB) = 20log₁₀(d) + 20log₁₀(f) + 20log₁₀(4π/c)

Where d = distance, f = frequency, c = speed of light

Shadowing

Signal attenuation caused by obstacles (buildings, walls, terrain) blocking the direct path between transmitter and receiver. Modeled using log-normal distribution.

  • Obstacles absorb and reflect RF energy
  • Creates coverage "holes" or dead zones
  • Frequency-dependent attenuation

Multipath Fading (Small-Scale)

Signal fluctuations caused by multiple propagation paths (reflections, diffractions, scatterings) arriving at the receiver at different times, causing constructive and destructive interference.

Delay Spread

Time dispersion of multipath components

Doppler Spread

Frequency shift due to motion

Interactive Path Loss Calculator

Free Space Path Loss: -74.0 dB
Received Power: -54.0 dBm
TX
RX
Signal Quality: Good

Interference

Co-channel and adjacent channel interference from other wireless devices operating in the same frequency band.

Doppler Effect

Frequency shift caused by relative motion between transmitter and receiver, affecting signal reception in mobile environments.

Antenna Characteristics

Antenna gain, polarization, and radiation patterns significantly impact signal coverage and quality.

02

Hidden Terminal Problem

A fundamental MAC layer challenge in wireless networks

Problem Definition

The hidden terminal problem occurs when two wireless nodes (stations) are within range of a common destination but out of range of each other. Both nodes sense the channel as idle and transmit simultaneously, causing a collision at the receiver.

Why CSMA Fails

Carrier Sense Multiple Access (CSMA) assumes that if a node cannot hear a transmission, the channel is clear. In wireless networks, this assumption fails because the channel state at the transmitter differs from the channel state at the receiver.

Solution: RTS/CTS Handshake

  • 1. Sender transmits RTS (Request to Send)
  • 2. Receiver responds with CTS (Clear to Send)
  • 3. Hidden terminals hearing CTS defer transmission
  • 4. Sender transmits data after receiving CTS

Interactive Simulation

A Sender 1 B Receiver C Sender 2 A and C cannot hear each other (Hidden Terminals)
Click "Simulate CSMA" to see the collision scenario

Impact on Network Performance

↑ 40%

Increase in collision probability in dense networks

↓ 60%

Throughput degradation without RTS/CTS

IEEE 802.11

Uses CSMA/CA with optional RTS/CTS to mitigate

03

Exposed Terminal Problem

The converse of the hidden terminal problem

Problem Definition

The exposed terminal problem occurs when a wireless node hears a transmission that is not intended for it and unnecessarily defers its own transmission, even though its transmission would not interfere with the ongoing communication.

The Scenario

Node B is transmitting to Node A. Node C wants to transmit to Node D. Node C hears B's transmission and backs off, even though C→D transmission would not interfere with B→A (as D is outside B's range).

Consequences

  • Reduced channel utilization and throughput
  • Unnecessary waiting periods decreasing efficiency
  • Spatial reuse limitation in wireless networks

Note: RTS/CTS partially helps by allowing C to proceed if it hears RTS but not CTS from A, but the problem persists with data packet transmissions.

Interactive Simulation

A Receiver B Sender 1 C Sender 2 D Receiver BLOCKED
Click to see how C is blocked unnecessarily

Hidden vs. Exposed Terminal Comparison

Aspect Hidden Terminal Exposed Terminal
Cause Nodes out of range of each other Node hears transmission not intended for it
Result Collisions at receiver Unnecessary channel underutilization
Impact Packet loss, retransmissions Reduced throughput, wasted capacity
Solution RTS/CTS handshake, virtual carrier sensing Directional antennas, busy tone schemes
04

IEEE 802.11 Architecture

The foundational framework for Wireless LANs

BSS

Basic Service Set (BSS)

The fundamental building block of 802.11 LANs

A BSS consists of a set of stations (STAs) controlled by a single coordination function. It is the basic coverage area where member stations can communicate. Each BSS is identified by a BSSID (48-bit MAC address of the AP).

Infrastructure BSS

  • • Contains an Access Point (AP)
  • • Stations communicate via AP
  • • AP connects to Distribution System
  • • Most common in enterprise/home WiFi

Independent BSS (IBSS)

  • • Ad-hoc network mode
  • • No AP required
  • • Peer-to-peer communication
  • • Temporary/short-term deployments
AP STA1 STA2 STA3 STA4 Basic Service Area (BSA) BSS Coverage Cell
ESS

Extended Service Set

Multiple BSSs interconnected by a Distribution System (DS) form an ESS. It appears as a single logical LAN to the LLC layer.

Roaming between APs
Single SSID across cells
Wired/wireless backbone
Portal to other networks

Key Concept: All BSSs in an ESS share the same SSID (Service Set Identifier), allowing seamless client roaming.

Architecture Components

Station (STA)

Any device with an 802.11 conformant MAC and PHY layer (laptops, phones, IoT devices).

Access Point (AP)

Station that provides access to the DS via wireless medium for associated stations. Acts as a bridge.

Distribution System (DS)

System to interconnect BSSs and integrated LANs. Typically Ethernet or wireless backbone.

Portal

Logical point where non-802.11 LANs (e.g., Ethernet) integrate with the 802.11 architecture.

Station Services

  • 1

    Authentication

    Establishing identity between STA and AP

  • 2

    Association

    Establishing logical connection to BSS

  • 3

    Reassociation

    Moving association from one AP to another (roaming)

  • 4

    Disassociation

    Termination of association

Station Transitions

No Transition

Station stationary or moving within single BSS communication range.

BSS Transition

Station moves from one BSS to another within same ESS (seamless roaming).

ESS Transition

Station moves between BSSs of different ESSs (service disruption likely).

Key Takeaways

📡

Propagation Factors

Path loss, shadowing, and multipath fading are critical design considerations for WLAN coverage and reliability.

🙈

Hidden Terminal

Solved by RTS/CTS handshake in CSMA/CA, allowing virtual carrier sensing to prevent collisions.

👁️

Exposed Terminal

Reduces throughput by preventing simultaneous transmissions that would not actually interfere.

🏗️

802.11 Architecture

BSS forms the cell structure; ESS enables scalable enterprise networks with roaming capabilities.