You are viewing a free preview of this lesson.
Subscribe to unlock all 10 lessons in this course and every other course on LearningBro.
The lessons so far have largely assumed data travelling over cables. This one removes the wires. Wireless networking lets devices communicate using radio waves, and it is now how most people connect — phones, laptops and smart-home devices all reach the network through the air. This lesson explains the components and ideas OCR expects: Wi-Fi and the wireless access point (WAP) that bridges wireless devices onto the wired network; the SSID that names a network; the frequency bands and channels Wi-Fi uses and why they matter; the WPA/WPA2/WPA3 security protocols that protect wireless traffic; and CSMA/CA, the clever access method by which devices avoid collisions when they cannot reliably hear one another. We finish by weighing the benefits and limitations of wireless against wired networking.
One physical fact shapes the whole topic: radio is a shared medium that anyone in range can receive. Unlike a cable, where the signal is confined to the wire, a wireless signal spreads through the air, so two consequences follow immediately. First, security is critical, because an eavesdropper needs no physical connection — only to be nearby — which is why encryption is non-negotiable on Wi-Fi. Second, devices must share the air politely, because if two transmit at once their signals collide and corrupt each other — which is why an access method like CSMA/CA is needed. Keep that single fact — radio is shared and open — in mind and the security and collision-avoidance material both make sense.
This lesson covers the OCR H446 1.3.2 / 1.3.4 wireless material, specifically:
Examiners reward candidates who can explain why wireless needs strong encryption and a collision-avoidance (not collision-detection) scheme — reasoning from the shared, open nature of radio — rather than just naming protocols.
Wi-Fi is the dominant wireless networking technology, defined by the IEEE 802.11 family of standards. It uses radio waves to carry data between devices and a central point of connection.
That central point is the wireless access point (WAP) — a device that transmits and receives radio signals and bridges wireless devices onto the wired network (and thence to the Internet). In a home, the WAP is usually built into the broadband router; in a school or office, many separate WAPs are spread around the building so coverage extends everywhere, all connected back to the wired infrastructure.
graph TD
L["Laptop"] -.radio.-> WAP["Wireless Access Point (WAP)"]
P["Phone"] -.radio.-> WAP
T["Tablet"] -.radio.-> WAP
WAP -->|wired link| SW["Switch / Router"]
SW --> Net["Internet"]
A WAP that serves several devices forms an infrastructure wireless network, where every device communicates through the access point rather than directly with each other. (Devices talking directly, with no access point, form an ad-hoc network — useful occasionally but uncommon for general use.) The access point is therefore the wireless equivalent of the switch in a wired LAN: the hub through which traffic flows, and the natural place to apply security such as encryption and access control.
A point of frequent confusion is the difference between a WAP and a home router. Strictly, the WAP does only one job — provide the wireless link between devices and the wired network. The familiar "home router" is actually several devices in one box: a router (to route between the home network and the Internet), a switch (the wired Ethernet ports on the back), and a WAP (the Wi-Fi radio), often with a modem and firewall too. So in a home the access-point function is bundled inside the router, which is why people loosely call the whole box "the router". In a larger building the functions are separated: dedicated WAPs are mounted around the site for coverage, all cabled back to central switches and a router — making the WAP's distinct role much clearer. For the exam, define a WAP by its job (bridging wireless devices to the wired network) rather than equating it with a router.
Each generation of 802.11 has improved speed, range and capacity:
| Standard | Wi-Fi name | Max speed | Band(s) |
|---|---|---|---|
| 802.11b | — | 11 Mbps | 2.4 GHz |
| 802.11g | — | 54 Mbps | 2.4 GHz |
| 802.11n | Wi-Fi 4 | 600 Mbps | 2.4 / 5 GHz |
| 802.11ac | Wi-Fi 5 | ~3.5 Gbps | 5 GHz |
| 802.11ax | Wi-Fi 6 | ~9.6 Gbps | 2.4 / 5 / 6 GHz |
The headline trends are that speeds have risen dramatically, dual-band operation (using both 2.4 GHz and 5 GHz) became standard from Wi-Fi 4 onwards, and later generations added techniques (such as MU-MIMO and OFDMA) that improve performance specifically in crowded environments with many devices. It is worth being clear about what these "maximum speeds" mean: they are theoretical peaks under ideal conditions, with the latest standard, a strong signal and no competing traffic. Real throughput is almost always lower, because the airtime is shared among all the devices on the access point, because distance, walls and interference weaken the signal (forcing the WAP to drop to a slower, more robust encoding), and because every device must take its turn under the access method described below. A network is also only as fast as its slowest relevant link — an old Wi-Fi 4 tablet will not reach Wi-Fi 6 speeds however modern the router. This gap between headline and real-world speed is one reason wired links remain faster and more predictable.
The SSID (Service Set Identifier) is the name of a wireless network — the label you see when your device lists the Wi-Fi networks within range. Its job is simply to let users identify and select the right network.
| Aspect | Detail |
|---|---|
| Purpose | Names the network so users can choose it from the list |
| Broadcast | By default the WAP broadcasts the SSID so it appears automatically |
| Hidden SSID | Broadcasting can be turned off, so users must type the name manually to join |
| Security reality | Hiding the SSID is not real security — the name is still present in other transmissions and is easily recovered with monitoring tools |
A common misconception is that hiding the SSID secures a network. It does not: the SSID still appears in the management frames devices exchange, so anyone with a wireless analyser can read it. Hiding the SSID only stops it appearing in the casual list of networks; real protection comes from encryption (WPA2/WPA3), not from concealing the name.
It helps to see what happens when a device connects, because it shows where the SSID and security fit together. A WAP periodically broadcasts small beacon frames advertising its SSID and its security capabilities, which is how your device populates its list of available networks. When you select one, the device associates with the access point (registering itself with that WAP) and then authenticates — on a WPA2/WPA3 network this means proving it knows the correct password (or, in Enterprise mode, passing a per-user login). Only once authentication succeeds does the access point allow the device onto the network, and from that point all traffic between them is encrypted with keys derived during the handshake. This is why a wrong password fails at the authentication step before any data can flow, and why an evil-twin attack is dangerous: a rogue WAP can copy a legitimate SSID and beacon, so a device may try to associate with the attacker's access point instead of the genuine one — which is exactly why simply recognising a familiar network name is not sufficient assurance of safety.
Wi-Fi transmits on particular radio frequency bands, principally 2.4 GHz and 5 GHz (with 6 GHz added in Wi-Fi 6). The choice of band is a genuine trade-off because of how radio waves behave: lower frequencies travel further and pass through walls more easily, while higher frequencies carry more data but are absorbed more quickly.
| Property | 2.4 GHz | 5 GHz |
|---|---|---|
| Range | Longer — better wall penetration | Shorter — more absorbed by walls |
| Speed | Lower maximum | Higher maximum |
| Channels | 14 channels, but only 3 non-overlapping (1, 6, 11) | Many more non-overlapping channels (20+) |
| Interference | High — shared with Bluetooth, microwaves, baby monitors | Lower — fewer competing devices |
| Congestion | More congested, especially in dense areas | Less congested |
Each band is divided into channels — sub-ranges of frequency a network can use. The crucial subtlety is that on 2.4 GHz the channels overlap: although there are 14, adjacent ones interfere, so only channels 1, 6 and 11 are fully non-overlapping. If two nearby networks use overlapping channels, their signals interfere and both slow down — which is exactly why a block of flats, with dozens of routers crammed into the 2.4 GHz band, suffers poor Wi-Fi. The 5 GHz band offers many more non-overlapping channels, so networks are far less likely to clash, which (together with its higher speed) is why 5 GHz is preferred when range allows. Choosing a band therefore comes down to the situation:
| Scenario | Better band | Why |
|---|---|---|
| Far from the WAP, walls between | 2.4 GHz | Greater range and wall penetration |
| Close to the WAP, want top speed | 5 GHz | Faster, less interference |
| Crowded apartment block | 5 GHz | More non-overlapping channels |
| Low-power smart-home sensors | 2.4 GHz | Long range, low power, modest data needs |
Because radio is a shared medium, if two devices transmit at the same instant their signals collide and corrupt one another, wasting the airtime. Wired Ethernet historically solved this with CSMA/CD (Collision Detection): a device transmits and listens for a collision, stopping if it hears one. But on wireless this does not work, for a fundamental reason: a wireless device cannot reliably detect a collision while transmitting (its own signal drowns out everything else at its antenna), and the hidden-node problem means two devices may both be in range of the access point yet out of range of each other, so neither can hear the other to detect a clash. Wireless therefore avoids collisions before they happen rather than detecting them after — using CSMA/CA (Carrier Sense Multiple Access with Collision Avoidance).
graph TD
Start["Device has data to send"] --> Listen["Carrier sense:<br/>listen — is the channel idle?"]
Listen --> Busy{"Channel busy?"}
Busy -->|Yes| Wait["Wait until idle,<br/>then back off a random time"]
Wait --> Listen
Busy -->|No| Backoff["Wait a short random<br/>back-off period"]
Backoff --> Recheck{"Still idle?"}
Recheck -->|No| Wait
Recheck -->|Yes| Send["Transmit the frame"]
Send --> Ack{"ACK received?"}
Ack -->|Yes| Done["Success"]
Ack -->|No| Wait
The mechanism works as follows:
A helpful analogy is a polite group conversation in the dark, where no one can see who else is about to speak. Before talking, each person listens for a pause (carrier sense). If two people start at once their words clash and neither is understood — a collision. To reduce this, each waits a slightly different random moment after a pause before beginning (random back-off), so they rarely start together. And because no one can see whether they were talked over, the speaker relies on a listener saying "yes, got that" (the acknowledgement) to know they were heard; if no such confirmation comes, they assume they were drowned out and try again. That captures CSMA/CA exactly: listen, wait a random time, transmit, and confirm by acknowledgement — avoiding clashes rather than detecting them.
An optional RTS/CTS (Request To Send / Clear To Send) handshake can be added to tackle the hidden-node problem directly: a device asks the access point for permission to send, and the access point's "clear to send" reply — heard by all devices in its range — warns the others to stay silent, even those that could not hear the original sender. The single most important exam point is the contrast: wired Ethernet can use collision detection (CSMA/CD) because a station can sense a collision on the wire, but wireless must use collision avoidance (CSMA/CA) with random back-off and acknowledgements because a wireless station cannot reliably detect collisions while transmitting.
Because anyone within range can receive a wireless signal, encryption is essential — without it, every packet (including passwords) is readable by a nearby attacker with an ordinary Wi-Fi adapter. Wireless security has progressed through a clear sequence of protocols, each fixing the weaknesses of the last:
Subscribe to continue reading
Get full access to this lesson and all 10 lessons in this course.