Fiveable

📡Systems Approach to Computer Networks Unit 16 Review

QR code for Systems Approach to Computer Networks practice questions

16.1 Wireless Link Characteristics

16.1 Wireless Link Characteristics

Written by the Fiveable Content Team • Last updated August 2025
Written by the Fiveable Content Team • Last updated August 2025
📡Systems Approach to Computer Networks
Unit & Topic Study Guides

Wireless Communication Challenges and Constraints

Wireless links behave very differently from wired ones. The medium is shared, signals degrade unpredictably, and the physical environment constantly interferes with transmission. Understanding these characteristics is essential before tackling higher-layer wireless protocols, because most design decisions in wireless networking trace back to the quirky physics of radio propagation.

Challenges of wireless communication

Shared medium. Every device in range transmits over the same physical space. That means your signal competes with other devices and with environmental noise sources like radio frequency interference (RFI) and electromagnetic interference (EMI). Unlike a dedicated cable, you can't isolate a wireless link from its surroundings.

Limited bandwidth. Governments regulate the radio spectrum, so each wireless technology gets a fixed slice of frequencies to work with. Wi-Fi operates in the 2.4 GHz and 5 GHz bands (and now 6 GHz with Wi-Fi 6E); cellular networks use licensed bands allocated by agencies like the FCC. The available bandwidth caps how much data you can push through.

Signal attenuation. Wireless signals lose energy as they travel. Free-space path loss accounts for the baseline drop-off with distance, but obstacles like walls, buildings, and trees absorb and scatter the signal further. The result: usable range is always shorter than you'd hope.

Security vulnerabilities. Anyone within range can potentially intercept a wireless signal. Wired networks require physical access to the cable, but wireless frames propagate in all directions. This is why encryption (WPA3, for example) and authentication mechanisms are non-negotiable in wireless network design.

Signal propagation describes how a radio wave gets from transmitter to receiver. In a perfect vacuum with no obstacles, this would be straightforward. Real environments are far messier.

Challenges of wireless communication, Design Your Network - Wireless Challenges

Factors affecting signal propagation

  • Path loss is the reduction in signal power over distance. It depends on the transmission frequency, antenna heights, and the surrounding environment. Higher frequencies generally suffer greater path loss, which is why 5 GHz Wi-Fi has shorter range than 2.4 GHz.
  • Multipath propagation happens when a signal bounces off surfaces (reflection), bends around edges (diffraction), or scatters off small objects. The receiver picks up multiple copies of the same signal arriving at slightly different times. This causes signal distortion and delay spread, where symbols blur into each other.
  • Fading refers to fluctuations in received signal strength caused by the interaction of those multipath copies:
    • Large-scale fading (shadowing) occurs when large obstacles like buildings or hills block or partially block the signal. It changes slowly as you move.
    • Small-scale fading results from multipath interference and the Doppler effect. It can cause rapid, dramatic swings in signal strength over very short distances (on the order of a wavelength).
  • Doppler effect shifts the frequency of the received signal when the transmitter and receiver are moving relative to each other. Faster motion means a larger frequency shift. In OFDM-based systems like LTE and 5G, Doppler shift can cause inter-carrier interference (ICI), where energy from one subcarrier leaks into adjacent ones.

Impact of signal-to-noise ratio

Signal-to-noise ratio (SNR) is the ratio of desired signal power to background noise power at the receiver, measured in decibels:

SNRdB=10log10PsignalPnoiseSNR_{dB} = 10 \log_{10} \frac{P_{signal}}{P_{noise}}

A higher SNR means the signal stands out more clearly above the noise floor, enabling higher data rates and lower bit error rates (BER). A lower SNR forces the system to use more robust (but slower) modulation schemes, or the link fails entirely.

Three main factors determine SNR at the receiver:

  1. Transmit power. Cranking up power improves SNR, but regulations (e.g., FCC limits) and practical constraints (battery life on mobile devices) cap how high you can go.
  2. Distance. Signal power drops with distance due to path loss, so SNR degrades as the receiver moves farther from the transmitter.
  3. Interference. Other transmitters on the same channel (co-channel interference) or nearby channels (adjacent channel interference) add noise, directly reducing SNR.

The relationship between SNR and achievable data rate is formalized by the Shannon capacity theorem: C=Blog2(1+SNR)C = B \log_2(1 + SNR), where CC is the maximum channel capacity in bits per second and BB is the channel bandwidth in Hz. This sets a theoretical ceiling on throughput for a given SNR.

Challenges of wireless communication, Design Your Network - Wireless Challenges

Wireless Network Architectures

Different applications call for different ways of organizing wireless devices. The three main architectures each make distinct trade-offs between control, flexibility, and complexity.

Types of wireless network architectures

Infrastructure-based networks route all communication through a central access point (AP) or base station. Wi-Fi networks and cellular networks both follow this model. The AP handles coordination, so you get centralized management, easier security enforcement, and controlled resource allocation. The downside is a single point of failure: if the AP goes down, the network goes with it.

Ad hoc networks have no central infrastructure. Devices communicate directly with each other, forming and maintaining routes on the fly. Mobile ad hoc networks (MANETs) and wireless sensor networks (WSNs) are classic examples. These networks are flexible and resilient to individual node failures, but routing becomes complex and performance can be harder to guarantee as the network scales.

Hybrid networks combine both approaches. Devices can communicate through an AP when one is available, or fall back to direct peer-to-peer links. Mesh networks are a common example: mesh nodes relay traffic for each other while also connecting to wired infrastructure at certain points. Device-to-device (D2D) communication in 5G follows a similar hybrid philosophy, offloading traffic from the base station when two devices are close together.