CCNA 200-301 · 9 of 16

Wireless fundamentals: the network with no cable to blame

How radio turns a network back into a shared medium, the bands and the three channels that matter, what an SSID really names, how a client associates, the split-MAC controller model, and what WPA3 fixed.

Updated 2026-09-09
On this page

Every improvement switching made over twenty years — a private collision domain per port, full duplex, guaranteed bandwidth — wireless gives straight back. A radio channel is a shared medium, a device cannot listen while it transmits, and the walls move. Understanding Wi-Fi is mostly a matter of accepting that you are back on a hub, in public, with weather.

The map

Read this first when short on time. Every branch is a section below.

Figure 1. The whole article on one page. Every branch is a section below; fold what you know, open what you do not.

Radio puts you back on a hub

A wireless channel is one shared medium. Every device tuned to it — yours, your colleague's, and the café downstairs — takes turns. Only one can transmit at a time within earshot, and a radio cannot receive while it transmits, so Wi-Fi is half duplex at heart.

Wired Ethernet handled sharing with CSMA/CD: transmit, and if you detect a collision, back off. A radio cannot do that, because its own transmission drowns out everything else it might hear. So 802.11 uses CSMA/CA — collision avoidance:

  1. Listen. If the channel is busy, wait.
  2. When it goes quiet, wait a further random backoff interval, so two waiting devices do not start together.
  3. Transmit the frame.
  4. Wait for an acknowledgement. No acknowledgement means the frame was lost, so retransmit.

Every unicast frame being acknowledged is the big structural difference from Ethernet, and it explains a lot. A Wi-Fi network advertised at 1 Gbps delivers perhaps half that in practice, because backoff intervals and acknowledgements consume airtime that carries no data. It also explains why a weak client slows everyone: a device at the edge of coverage transmits at a low data rate, so its frames occupy the channel for far longer, and every other device on that channel simply waits.

The hidden node problem

Two clients on opposite sides of an access point can both hear the access point and not each other. Each listens, hears silence, transmits, and their frames collide at the access point. Neither can detect it.

The remedy is RTS/CTS: a client asks the access point for permission to send (request to send), and the access point broadcasts a clear-to-send that everyone in its range hears, reserving the air for a stated duration. It costs two extra frames per transmission, so it is usually enabled only above a frame-size threshold.

In the wild
  • Conference venues deal with this by lowering transmit power and adding access points, so each cell is small and fewer devices contend for the same air.
  • Wi-Fi 6 attacks it directly with OFDMA, which lets one transmission carry data for several clients at once instead of serving them strictly in turn.
  • Airtime fairness features on enterprise controllers cap how long a slow client may hold the channel, so one distant laptop cannot halve a room's throughput.

Bands, channels, and the number three

Wi-Fi operates in unlicensed bands: anyone may transmit, subject to power limits, which is why your neighbours' networks are your problem.

BandUsable channelsRangeCharacter
2.4 GHz3 non-overlapping (1, 6, 11)LongestCrowded, penetrates walls, shared with Bluetooth and microwave ovens
5 GHzAround 24, region dependentShorterThe workhorse band; some channels must yield to radar
6 GHzUp to 59ShortestWi-Fi 6E and 7 only, so currently uncrowded

The 2.4 GHz situation is worth being precise about. The band has fourteen numbered channels (fewer in some regions), but each is 22 MHz wide and they are spaced only 5 MHz apart — so adjacent channels overlap heavily. Only 1, 6 and 11 are far enough apart not to interfere. Every other choice is actively worse than picking one of those three, because partially overlapping signals cannot take turns politely; they just add noise.

2.412 GHz 2.462 GHz Channel 1 Channel 6 Channel 11 Each channel is 22 MHz wide; only these three fit side by side without overlapping. Channels 2 to 5 and 7 to 10 overlap their neighbours and add noise rather than capacity.
Figure 2. The 2.4 GHz band. Three usable channels in a building full of access points is why 2.4 GHz feels slow regardless of what the hardware is capable of.

Channel width is the other lever. A wider channel carries more data — 20, 40, 80 or 160 MHz — but consumes more of the band. At 2.4 GHz, bonding two channels into 40 MHz leaves essentially no room for anyone else and is close to antisocial. At 5 GHz, 80 MHz channels are normal in a home and often a mistake in a dense office, where more non-overlapping channels matter more than each one's peak speed.

Some 5 GHz channels are shared with weather and military radar and require DFS, dynamic frequency selection: the access point must listen for radar and vacate the channel within seconds if it hears any. It works, and it produces the occasional mysterious few-second outage near an airport.

Standards, and what each one actually changed

StandardNameBandsHeadline rateReal contribution
802.11b/g2.4 GHz11 / 54 MbpsMade Wi-Fi ubiquitous
802.11nWi-Fi 42.4 and 5600 MbpsMIMO — several antennas, several simultaneous streams
802.11acWi-Fi 55 GHz6.9 GbpsWider channels and multi-user downlink
802.11axWi-Fi 6 / 6E2.4, 5, 69.6 GbpsOFDMA and scheduling — better in crowds, not just faster
802.11beWi-Fi 72.4, 5, 646 Gbps320 MHz channels and using several bands at once

Two cautions about those numbers. They are aggregate rates for the whole cell shared among all clients, not per-device speeds. And they assume the best possible signal, the widest channel, and the maximum number of antennas at both ends — a phone with two antennas standing in a corridor will not get close.

The genuinely interesting shift is at Wi-Fi 6. Earlier generations chased peak speed; 802.11ax was designed for density. OFDMA divides a channel into smaller resource units so one transmission can carry data for several clients simultaneously, which suits the real traffic pattern — many devices sending small frames — far better than giving each one the whole channel in turn.

The words: SSID, BSS, BSSID, ESS

Four terms that are used loosely in conversation and precisely in exams.

TermIs
SSIDThe network name, up to 32 characters. What appears in the list on your phone.
BSSBasic service set: one access point radio plus the clients associated with it. One cell.
BSSIDThe MAC address of that radio — the identifier of the cell, not of the network.
ESSExtended service set: several access points sharing one SSID, so clients can roam between them.

The relationship that clears up most confusion: one access point broadcasting three SSIDs on two radios presents six BSSIDs. The SSID is the name people see; the BSSID is what a client actually associates with; the ESS is the illusion of one network stitched together from many cells.

How a client joins

sequenceDiagram
  autonumber
  participant C as Client
  participant A as Access point
  A-->>C: Beacon every 100 ms, SSID and capabilities
  C->>A: Probe request, is anyone here
  A-->>C: Probe response
  C->>A: Authentication request
  A-->>C: Authentication response
  C->>A: Association request
  A-->>C: Association response, here is your association ID
  Note over C: now the key exchange, then DHCP as on any wired network
Figure 3. Joining a wireless network. The "authentication" step here is a legacy formality from the original standard; the real security happens afterwards in the WPA key exchange.

Access points send beacons roughly ten times a second, announcing the SSID and what the network supports. Clients also send probe requests rather than waiting. Hiding an SSID suppresses the name in beacons but not in the probe exchange, and clients configured for a hidden network broadcast its name wherever they go — so hiding an SSID reduces security slightly and reliability noticeably. It is not a control.

Watch out

Hidden SSIDs and MAC address filtering are both routinely recommended and neither is a security measure. MAC addresses are sent in clear text in every frame and are trivially cloned; hidden names are visible to anyone with a capture tool. Use WPA2 or WPA3 with a strong credential, and spend the effort saved on something that helps.

Architectures: one access point or three hundred

An autonomous access point holds its own configuration and works alone. For a small office with three of them this is entirely reasonable. At thirty it becomes a chore, and at three hundred it is unmanageable — every SSID change, every firmware update and every channel adjustment is a separate login.

The alternative is the split-MAC model, which divides the work between the access point and a wireless LAN controller.

Handled by the access pointHandled by the controller
Transmitting and receiving radio framesConfiguration of every access point
Beacons and probe responsesChannel and power assignment across the site
Frame acknowledgements and retriesClient authentication and key management
Encrypting and decryptingRoaming decisions and client database
Anything with real-time deadlinesAnything that benefits from a site-wide view

The split falls exactly where you would expect: work with microsecond deadlines stays on the radio, work needing knowledge of the whole site moves to the controller. The two are joined by a CAPWAP tunnel — control and provisioning of wireless access points — which carries a control channel on UDP 5246 and a data channel on UDP 5247.

flowchart TD
  C1["Client"] -->|"802.11"| AP["Access point<br/>radio, beacons, encryption"]
  AP -->|"CAPWAP tunnel<br/>over the wired network"| WLC["Wireless controller<br/>config, RF plan, authentication"]
  WLC -->|"client traffic, untunnelled"| SW["Switched network"]
  WLC -->|"authentication"| RAD["RADIUS server"]
Figure 4. The split-MAC model. In central switching, client traffic is tunnelled to the controller and released there; in local switching, the access point puts it straight onto the local VLAN and only control traffic is tunnelled.

Whether client data goes through the tunnel is a design choice. Central switching sends everything to the controller, which simplifies policy and makes the controller a bottleneck. Local switching — Cisco calls it FlexConnect — keeps data on the local switch and tunnels only control traffic, which is what branch offices with slow WAN links need. Sending a branch's internet traffic across a WAN to a controller in head office and back is a classic and painful mistake.

Deployment options in practice: a hardware appliance such as the Catalyst 9800, a controller embedded in a switch or an access point for small sites, or a cloud-managed model where configuration lives in a vendor's service and access points fetch it. Meraki popularised the last one, and the trade is the usual one — much less to run, and a dependency on somebody else's service.

Security: a short history of getting it wrong

Wireless security matters more than wired security for the obvious reason: an attacker does not need to get into the building.

SchemeEncryptionStatus
WEPRC4 with a 24-bit initialisation vectorBroken. Recoverable in minutes. Never use.
WPARC4 with TKIPA transitional fix for WEP-era hardware. Deprecated.
WPA2AES with CCMPSound, and still the most deployed. Vulnerable to offline password guessing.
WPA3AES with GCMP, SAE handshakeCurrent. Resists offline guessing and encrypts management frames.

Each scheme comes in two flavours, and the distinction matters more than the version number:

WPA3's main advance is the SAE handshake, sometimes called Dragonfly, which replaces WPA2's four-way handshake. Under WPA2, an attacker who captures a handshake can guess passwords offline at billions of attempts per second on borrowed hardware. SAE makes each guess require a fresh interaction with the network, which reduces an offline attack to an online one and makes a weak password survivable rather than fatal.

WPA3 also mandates protected management frames. Beacons, deauthentication and disassociation frames were historically unauthenticated, so anyone could forge a deauthentication and knock a client off the network — the basis of most Wi-Fi denial-of-service tools and of evil-twin attacks that force a client onto a fake access point. Signing those frames closes it.

In the wild
  • Corporate networks run WPA2 or WPA3 Enterprise with certificates issued to managed devices, so a stolen laptop can be removed from the network without changing anything for anyone else.
  • Guest networks use an open or lightly protected SSID with a captive portal, on a VLAN that reaches the internet and nothing else.
  • Cafés and airports are the reason browsers now insist on HTTPS everywhere — an open wireless network offers no protection at all below the application layer.

Designing for a real building

Two questions look alike and lead to opposite designs. Coverage asks whether there is signal everywhere. Capacity asks whether there is enough airtime for the number of devices in one place. A warehouse is a coverage problem — few devices, large area, so fewer access points at higher power. A lecture theatre is a capacity problem — two hundred devices in one room, so many access points at lower power, each serving a small cell.

Turning power up is the instinctive fix and usually the wrong one. Higher power makes the access point audible further away, but the client's transmitter has not changed, so it produces cells where devices can hear the network and not be heard by it. It also increases the overlap between access points, so more devices contend for the same channel.

Channel reuse is the discipline that follows: neighbouring access points must be on different channels, with the same channel reused only far enough apart that the two cells cannot hear each other. With three channels at 2.4 GHz this is genuinely hard, which is another reason modern designs push clients to 5 and 6 GHz.

Finally, the client decides when to roam, not the network. An access point cannot force a device to move; it can only make itself less attractive. This is why a laptop walks across a building still clinging to the access point it started with, transmitting at the lowest possible rate and slowing everyone in that cell. Enterprise controllers nudge clients — by refusing association below a signal threshold, or by steering dual-band clients to 5 GHz — but the final decision belongs to a driver written by somebody else.

CSMA/CA
Carrier sense multiple access with collision avoidance. Listen, back off randomly, transmit, and wait for an acknowledgement.
BSSID
The MAC address of an access point radio, identifying one cell. Distinct from the SSID, which names the network.
CAPWAP
The tunnel protocol between a lightweight access point and its controller: UDP 5246 for control and 5247 for data.
802.1X
Port-based authentication using a RADIUS server, giving every user or device its own credential rather than a shared key.
DFS
Dynamic frequency selection: the requirement that an access point vacate certain 5 GHz channels if it detects radar.

Recap

  • A wireless channel is a shared, half-duplex medium; every device in range takes turns.
  • CSMA/CA avoids collisions rather than detecting them, and acknowledges every unicast frame, so real throughput is roughly half the advertised rate.
  • A distant client transmitting slowly consumes airtime everyone else has to wait for.
  • 2.4 GHz has only three non-overlapping channels — 1, 6 and 11 — and shares the band with everything else unlicensed.
  • 5 GHz has far more channels and shorter range; 6 GHz adds more still but only for Wi-Fi 6E and 7 clients.
  • Headline data rates are aggregate for the cell, under ideal conditions, not per client.
  • SSID is the network name, BSSID is one radio's MAC address, BSS is one cell, ESS is many cells sharing an SSID.
  • Hidden SSIDs and MAC filtering are not security measures.
  • Split-MAC divides real-time radio work at the access point from site-wide decisions at the controller, joined by a CAPWAP tunnel.
  • Local switching keeps branch traffic local; central switching sends everything to the controller and can be a serious mistake over a WAN.
  • WEP is broken, WPA2 with AES is sound but vulnerable to offline password guessing, and WPA3's SAE handshake plus protected management frames fix that.
  • Coverage and capacity are opposite problems: dense areas need more access points at lower power, and the client — not the network — decides when to roam.

Questions

Say the answer out loud before opening it.

Why does Wi-Fi use CSMA/CA instead of CSMA/CD?

Because a radio cannot listen while it transmits, so it can never detect a collision in progress.

  • Collision avoidance means listening first, waiting a random backoff, then transmitting.
  • Every unicast frame is acknowledged, and a missing acknowledgement triggers a retransmission.
  • The overhead of backoff and acknowledgement is why real throughput is roughly half the nominal rate.

The hidden node problem — two clients that hear the access point but not each other — is the case avoidance still cannot solve, which is what RTS/CTS exists for.

Why are only channels 1, 6 and 11 used at 2.4 GHz?

Because each channel is 22 MHz wide while the channels are spaced 5 MHz apart, so only those three do not overlap.

  • Any other choice partially overlaps its neighbours and adds noise instead of capacity.
  • Overlapping signals cannot take turns politely the way co-channel devices do.
  • Three channels in a dense building is the fundamental limit of the band.

This is why co-channel interference is actually preferable to adjacent-channel interference: devices on the same channel at least defer to each other.

What is the difference between SSID, BSS and BSSID?

The SSID is the network name, a BSS is one access point radio plus its clients, and the BSSID is that radio's MAC address.

  • One access point broadcasting three SSIDs on two radios presents six BSSIDs.
  • A client associates with a BSSID, not with an SSID.
  • An ESS is several access points sharing one SSID so clients can roam.

This distinction is what makes roaming possible: the SSID stays constant while the client moves between BSSIDs, so applications never see the change.

Walk through what happens when a client joins a wireless network.

It hears beacons or sends a probe, exchanges legacy authentication frames, associates, then performs the WPA key exchange and DHCP.

  • Beacons are sent roughly ten times a second and advertise the SSID and capabilities.
  • The authentication step in the 802.11 sequence is a formality from the original standard, not real security.
  • Association returns an association ID and makes the client a member of the BSS.

Real security happens after association, in the four-way handshake under WPA2 or SAE under WPA3, which is why the sequence looks misleadingly weak on its own.

Why are hidden SSIDs and MAC filtering not security controls?

Because both are visible or forgeable to anyone with a capture tool.

  • A hidden SSID still appears in probe requests and association frames.
  • Clients configured for a hidden network broadcast its name wherever they go, which is worse for privacy.
  • MAC addresses travel unencrypted in every frame and can be cloned in one command.

They also cost reliability — some clients roam badly on hidden networks — so the trade is negative in both directions.

Explain the split-MAC architecture.

Real-time radio functions stay on the access point while configuration, radio planning, authentication and roaming decisions move to a central controller, connected by a CAPWAP tunnel.

  • The access point handles beacons, acknowledgements, retries and encryption.
  • The controller assigns channels and power, holds the client database, and drives authentication.
  • CAPWAP uses UDP 5246 for control and 5247 for data.

The split is drawn at deadlines: anything that must happen in microseconds cannot survive a round trip to a controller, and anything needing a site-wide view cannot be decided by one access point.

What is the difference between central and local switching, and when does it matter?

Central switching tunnels client data to the controller before releasing it; local switching puts it straight onto the local VLAN and tunnels only control traffic.

  • Central switching centralises policy and makes the controller a bandwidth bottleneck.
  • Local switching is essential at branch sites, where tunnelling to head office would send internet traffic across the WAN twice.
  • Cisco calls the local variant FlexConnect.

Branch sites also need local switching to keep working when the WAN link to the controller fails, which central switching cannot do.

What does WPA3 fix compared with WPA2?

It replaces the four-way handshake with SAE, which resists offline password guessing, and it makes protected management frames mandatory.

  • Under WPA2 a captured handshake can be attacked offline at enormous speed; SAE requires a fresh interaction per guess.
  • Protected management frames stop forged deauthentication attacks and evil-twin setups.
  • It also uses GCMP rather than CCMP for encryption.

The practical effect is that a moderately weak passphrase becomes survivable under WPA3, whereas under WPA2 it is a matter of how long somebody cares to run a cracker.

What is the difference between WPA2-Personal and WPA2-Enterprise?

Personal uses one pre-shared key shared by everyone; Enterprise uses 802.1X against a RADIUS server so each user or device has its own credential.

  • A shared key cannot be revoked for one person without changing it for all.
  • Enterprise can assign a VLAN and policy per user at the moment they connect.
  • Credentials can be passwords or certificates, depending on the EAP method.

Enterprise also generates unique encryption keys per session, so one client cannot decrypt another's traffic — something Personal only gained in WPA3.

Why is turning up transmit power usually the wrong fix for poor coverage?

Because it only makes the access point louder, not the client, creating areas where a device can hear the network but cannot be heard.

  • Client radios have far lower power and fixed antennas.
  • Higher power also enlarges cells, so more devices contend for the same channel.
  • It increases overlap between access points and makes channel reuse harder.

The correct fix is usually more access points at lower power, which shrinks each cell and increases total capacity at the same time.

Why does one slow client degrade a whole wireless cell?

Because it transmits at a low data rate, so its frames occupy the channel for much longer, and every other device has to wait.

  • The medium is shared, so airtime spent by one device is unavailable to the rest.
  • A frame sent at 6 Mbps takes roughly a hundred times the airtime of the same frame at 600 Mbps.
  • Airtime fairness features cap how much of the channel any one client may consume.

It is the strongest argument for small cells: a distant, slow client is better handed to a nearer access point than allowed to hold a large cell hostage.

Who decides when a client roams to a different access point?

The client. The network can influence the decision but cannot make it.

  • Access points can refuse association below a signal threshold, or steer dual-band clients towards 5 GHz.
  • Standards such as 802.11k, v and r help clients find and move to better access points quickly.
  • Roaming behaviour varies significantly between client operating systems and drivers.

This is why sticky clients are a design problem rather than a configuration one: the only reliable lever is making the current access point genuinely unattractive.

What is the difference between designing for coverage and designing for capacity?

Coverage asks whether signal reaches everywhere; capacity asks whether enough airtime exists for the number of devices in one place.

  • A warehouse is a coverage problem — few devices, wide area, higher power, fewer access points.
  • A lecture theatre is a capacity problem — many devices in one room, so more access points at lower power.
  • The two designs look opposite even though the hardware is the same.

Getting this wrong in either direction produces the same complaint — "the Wi-Fi is slow" — from completely different causes, which is why a site survey is worth its cost.

Why do Wi-Fi 6 improvements matter more in a crowded room than at home?

Because 802.11ax was designed for density rather than peak speed, and its main features only pay off when many devices share a channel.

  • OFDMA lets one transmission carry data for several clients at once instead of serving them in turn.
  • Scheduling reduces the contention overhead that dominates when many devices are active.
  • Target wake time lets battery devices sleep on a schedule, reducing both power use and channel chatter.

At home with three devices the channel is mostly idle, so the headline rate improvements are all you see — which is why the generation felt underwhelming in reviews and transformative in stadiums.

What is DFS and what symptom does it cause?

Dynamic frequency selection: certain 5 GHz channels are shared with radar, and an access point must vacate one within seconds of detecting a radar signal.

  • The access point moves to another channel, and clients must find it again.
  • The symptom is a brief, unexplained wireless outage, sometimes recurring near airports or coastlines.
  • Some client devices do not support DFS channels at all and simply never see those networks.

Avoiding DFS channels entirely is a common workaround, at the cost of losing a large part of the 5 GHz band in exactly the environments that need it most.