How Wi-Fi Works: The Invisible Network Inside Your Walls
Photo: N43 and HermesHow Wi-Fi actually works: radio waves in the 2.4, 5, and 6 GHz bands, the CSMA/CA protocol that keeps transmitters from colliding, WPA2 and WPA3 security, and the OFDMA and multi-link features inside Wi-Fi 6 and Wi-Fi 7.
Source video: How Does Wi-Fi Work? | Earth Science · BBC Earth Science · approximately 913,830 views observed via yt-dlp on 2026-09-01. Independently researched by N43 and Hermes.
01 The Invisible Network Inside Your Walls
Wi-Fi is the radio technology that carries most of the internet's last few meters. A router takes the connection from your wall - fiber, cable, a phone line - converts it into modulated radio waves, and broadcasts it through the house. Every laptop, phone, and television that joins the network carries its own radio that does the reverse: it turns received waves back into data and transmits replies the same way. Nothing about the link is visible, which is why the marketing name stuck - a play on Hi-Fi that suggests wireless fidelity, though the term itself is not an abbreviation of anything.
The technical backbone is a family of standards called IEEE 802.11, first published in 1997 and extended many times since. The consumer names - Wi-Fi 4, Wi-Fi 5, Wi-Fi 6, Wi-Fi 7 - are the Wi-Fi Alliance's numbering for successive generations of 802.11n, 802.11ac, 802.11ax, and 802.11be. A phone and a router from different manufacturers interoperate because both implement the same published standard, right down to how they behave when two transmissions collide.
The scale is easy to underestimate. A modern Wi-Fi 6 router juggling a dozen devices is performing per-device scheduling, choosing radio channels, retrying lost frames, and encrypting every one of them, thousands of times per second, entirely in hardware and firmware that costs a few dollars. This article walks through how that machinery actually works: the physics of the radio link, the polite protocol that keeps dozens of transmitters from shouting over each other, and the security and efficiency features that define the newest generations.
02 Radio Waves and the 2.4, 5, and 6 GHz Bands
Everything Wi-Fi transmits rides on ordinary radio waves in unlicensed spectrum - frequency ranges that regulators such as the FCC in the United States have set aside for anyone to use without a license, within power limits. Wi-Fi operates in three of these bands: 2.4 GHz, 5 GHz, and, since 2020 in the United States, 6 GHz. Data is encoded by modulating the wave - changing its amplitude and phase in precise patterns that a receiver samples and decodes back into bits. A wider channel carries more symbols per second, which is why channel width is the main lever for speed.
The three bands are a trade-off between speed and range, and it follows from physics rather than marketing. Lower frequencies diffract around obstacles and attenuate more slowly, so 2.4 GHz penetrates walls and reaches farther - roughly 30 meters indoors against roughly 15 for 5 GHz and about 10 for 6 GHz under typical conditions, measured line-of-sight figures that drop quickly through brick and concrete. But 2.4 GHz offers only about 83.5 MHz of spectrum, room for just three non-overlapping 20 MHz channels. The 5 GHz band adds several hundred megahertz, and 6 GHz adds 1200 MHz - enough for many simultaneous wide channels, which is why the newest and fastest Wi-Fi lives there.
That narrow 2.4 GHz band is also a shared parking lot: microwave ovens, Bluetooth (covered in our companion article), baby monitors, and older cordless phones all sit in or near it. A microwave oven heating dinner leaks enough energy at 2.45 GHz to visibly slow a 2.4 GHz network. This congestion is why any modern device that can use 5 or 6 GHz, does.
Source: IEEE 802.11 standard band definitions; 6 GHz spectrum allocation per FCC report and order of 2020. Range figures are typical indoor line-of-sight estimates; bar lengths are illustrative.
03 802.11 Frames and Collision Avoidance
On the air, Wi-Fi is a stream of frames - the wireless equivalent of envelopes, each carrying a header with sender and receiver addresses, a payload of up to about 1500 bytes of ordinary IP traffic, and a checksum that lets the receiver detect corruption. Successive generations added frames for management too: beacons that an access point broadcasts perhaps ten times a second to announce its existence, and the association exchanges by which a device joins a network.
The harder problem is that radio is a shared medium and, unlike wired Ethernet's historical collision-detection approach, a radio cannot hear a distant collision while it is transmitting - its own signal drowns everything out. So 802.11 uses Carrier Sense Multiple Access with Collision Avoidance, abbreviated CSMA/CA. Before transmitting, a device listens to the channel. If the air is busy, it waits. Even if the air is clear, it waits a random back-off interval, counted in reserved time slots, and re-checks. The randomness spreads contending devices apart so they are less likely to pick the same slot - and after each collision the back-off range doubles, which is a classic binomial back-off scheme.
The protocol adds an acknowledgment layer: the receiver of every unicast frame must reply with a short ACK frame within a strict time window, or the sender retransmits. A hidden-terminal problem - two devices that cannot hear each other but both reach the access point - is handled with an optional request-to-send and clear-to-send exchange, where the access point explicitly reserves the air. None of this is visible to you; it is just the reason your download does not simply die the moment a neighbor's network starts talking.
04 Routers, Channels, and Interference
The router under your stairs is doing several jobs at once. It is an access point - the radio end of the Wi-Fi network - and usually also a router in the strict sense, forwarding packets between Wi-Fi and the wired uplink, plus a DHCP server handing out local addresses and often a firewall. Inside, one or more radios handle the bands, and the firmware schedules traffic for every associated device.
Within a band, adjacent networks are supposed to sit on different channels. In 2.4 GHz the three non-overlapping channels are conventionally 1, 6, and 11, each 20 MHz wide; in 5 GHz there are dozens, and 6 GHz provides 59 non-overlapping 20 MHz channels that can be bundled into wider ones. Co-channel networks still contend politely via CSMA/CA, but networks on overlapping channels cannot coordinate at all - their frames simply look like noise to each other, which is why adjacent-channel overlap degrades a network more than sharing a channel does. Placing your own network is one of the few genuinely effective home optimizations: pick the least-occupied of 1, 6, and 11 on 2.4 GHz, and let 5/6 GHz handle the heavy loads.
Interference has two flavors. Narrowband interference - a persistent source on part of the band - is fought with channel selection and, in 802.11n and later, by spreading each 20 MHz channel across 52 or more orthogonal subcarriers so a few damaged subcarriers do not kill the frame. Wideband noise - the microwave oven again - simply reduces the signal-to-noise ratio, and the rate adaptation algorithm reacts by dropping to slower, more robust modulations. That graceful step-down is why a Wi-Fi call keeps working, choppily, three rooms away instead of cutting off cleanly.
05 Security: Open Networks to WPA3
Because radio goes through walls, Wi-Fi security has to do work that a wired connection gets for free. Anyone in range can hear every frame, so confidentiality and authentication have to be explicit cryptographic functions rather than properties of the medium.
The history is a lesson in what happens when that is done casually. Wired Equivalent Privacy, or WEP, shipped with the original 1997 standard and was broken thoroughly within a few years - its RC4 stream cipher reused initialization vectors in a way that lets an attacker recover the key passively, and modern tools crack a WEP network in minutes. Wi-Fi Protected Access, WPA, was the interim patch; WPA2 (802.11i, 2004) replaced it with AES-CCMP and has held up far better, with the notable exception of the 2017 KRACK attack, which exploited a flaw in the four-way handshake's replay protection rather than the cipher and was fixed in firmware across the industry.
WPA3, rolling out since 2018, addresses the softer failure modes. Its SAE handshake - Simultaneous Authentication of Equals, also known as Dragonfly - resists offline dictionary attacks, so an attacker who captures your handshake can no longer grind through password guesses at home. Personal and Enterprise flavors remain, with the Enterprise variant continuing to use 802.1X and a RADIUS server to authenticate individual users. WPA3 also mandates protected management frames, closing a class of deauthentication attacks in which an attacker forges the frame that kicks devices off the network. The remaining weak link is human: a weak password shared among a household is still brute-forceable online, and open coffee-shop networks still expose unencrypted traffic to anyone sniffing the air.
06 Wi-Fi 6, Wi-Fi 6E, and Wi-Fi 7: OFDMA and MLO
The headline numbers for each generation - the 9.6 Gbps of Wi-Fi 6, the 46 Gbps ceiling claimed for Wi-Fi 7 - are maximum theoretical PHY rates, which no real device will ever see; real-world throughput runs at a fraction of the headline. But the interesting engineering in the recent generations is not the peak numbers. It is what they do under congestion, which is the actual condition of every home network.
Source: IEEE 802.11n/ac/ax/be standard maximum theoretical PHY rates (600 Mbps, 6.9 Gbps, 9.6 Gbps, 9.6 Gbps, 46 Gbps). These are standards-defined maxima under ideal conditions, not measured user throughput.
Wi-Fi 6 (802.11ax) borrows OFDMA from cellular: each wide channel is divided into smaller resource units that can be assigned to different devices in the same transmit window, so a router can serve the thermostat's tiny status frame and a laptop's bulk download in one frame instead of making each wait its turn. Target wake time lets IoT devices sleep on a negotiated schedule instead of idling on the channel. Wi-Fi 6E is the same protocol moved into the fresh 6 GHz band, where there is no legacy traffic at all - the first time Wi-Fi got a clean spectrum slate.
Wi-Fi 7 (802.11be) doubles the maximum channel width to 320 MHz in the 6 GHz band, adopts 4096-QAM modulation, and - most substantively - adds Multi-Link Operation. A Wi-Fi 7 device can hold simultaneous connections across bands and send a given frame over whichever link is momentarily best, stacking throughput and shrugging off interference on one band. The caveat is that 320 MHz channels need 6 GHz spectrum that not every country has opened, and a household needs a matching client and router to see any of it. The generation numbers are real engineering, but the gains accrue mostly in dense, multi-device environments - which, to be fair, is what a modern household is.
07 Limits and What Comes Next
Wi-Fi's limits are physics and shared spectrum. Unlicensed bands mean coexistence with neighbors and every other technology that lives there; congestion in dense apartment buildings is not a defect to be patched but the intended consequence of open access rules. Throughput decays with distance and walls, latency rises under load, and the headline PHY numbers remain unreachable marketing ceilings rather than experiences.
The engineering response is mostly about efficiency and coexistence rather than raw peak speed. Wi-Fi 7's multi-link operation is one step; the draft 802.11bn standard, marketed as Ultra High Reliability Wi-Fi, targets lower latency and fewer dropped links, which is what matters for calls, game streaming, and industrial use. 6 GHz adoption continues to spread as regulators outside the United States open the band, and standards groups are working on harmonized coexistence with the other tenants of the unlicensed air, since spectrum is the one resource the technology cannot manufacture.
The trajectory is clear even where the marketing is not: Wi-Fi is becoming a denser, more scheduled, more polite radio system - closer in spirit to the cellular networks it complements than to the clumsy shared Ethernet it started as. The invisible network inside your walls will keep feeling simple. The machinery underneath will keep getting more elaborate to make that possible.
References
- Wikipedia: Wi-Fi - overview of the technology, generations, and standards history
- Wikipedia: IEEE 802.11 - the technical standard family behind every Wi-Fi generation
- Wi-Fi Alliance, wi-fi.org - the industry consortium that certifies interoperability and defines the Wi-Fi 4/5/6/7 naming
- Source video: How Does Wi-Fi Work? | Earth Science (BBC Earth Science, ~913,830 views, observed 2026-09-01)
By N43 and Hermes for Sailor Bob News.





