🔒 Pro · Component 1 · 1.3.3 Networks
1.3.3b Wireless Networking and Protocols
OCR H446 · A Level Computer Science · ~12 min read
Notes
Video
Slides
Worksheet
Quiz

WiFi and the 802.11 Standard

WiFi is a wireless networking technology based on the IEEE 802.11 family of standards. It uses radio waves to transmit data between devices and a Wireless Access Point (WAP) or router.

StandardMax speedFrequencyNotes
802.11b11 Mbps2.4 GHzOld; long range but slow
802.11g54 Mbps2.4 GHzImproved speed; same range issues
802.11n600 Mbps2.4 / 5 GHzDual-band; widely used
802.11ac (WiFi 5)~3.5 Gbps5 GHzFast; shorter range
802.11ax (WiFi 6)~9.6 Gbps2.4 / 5 / 6 GHzCurrent standard; very efficient

2.4 GHz: longer range, better wall penetration, but more congested (shared with microwaves, Bluetooth). 5 GHz: faster, less congested, but shorter range and weaker through walls.

CSMA/CA — Collision Avoidance

Wireless networks use CSMA/CA (Carrier Sense Multiple Access with Collision Avoidance) to manage access to the shared wireless medium (the air).

Unlike wired Ethernet (which uses CSMA/CD — collision detection), wireless networks cannot detect collisions while transmitting (because a device cannot transmit and listen simultaneously). Instead, they avoid collisions:

  1. Device listens to the channel — if busy, it waits.
  2. If the channel appears free, the device waits for a random backoff period before transmitting (to reduce the chance two devices transmit simultaneously).
  3. The device sends an RTS (Request to Send) frame to the WAP.
  4. The WAP replies with CTS (Clear to Send) — this tells all other devices to wait.
  5. The device transmits. When complete, an ACK (acknowledgement) is sent by the receiver.

The RTS/CTS mechanism is particularly important because it solves the hidden node problem: two devices that cannot hear each other but can both hear the WAP — without RTS/CTS, they might transmit simultaneously and collide at the WAP.

WiFi Security: WEP, WPA, WPA2, WPA3

Wireless networks are inherently less secure than wired ones — anyone within range can detect the signal. Encryption is essential:

ProtocolAlgorithmStatus
WEP (Wired Equivalent Privacy)RC4 stream cipher🔴 Broken — do not use. Key can be cracked in minutes.
WPA (WiFi Protected Access)TKIP🟡 Deprecated — known vulnerabilities.
WPA2AES-CCMP🟢 Current standard — secure if using AES.
WPA3AES-GCMP + SAE🟢 Newest — uses SAE for stronger handshake; protects against offline dictionary attacks.

SSID (Service Set Identifier): the name of a WiFi network (e.g. "HomeNetwork"). Hiding the SSID provides minimal security — devices still broadcast probe requests for known networks. Strong passwords and WPA2/WPA3 are essential.

Bluetooth

Bluetooth is a short-range wireless technology using the 2.4 GHz ISM band for communication within a PAN (Personal Area Network). Typical range: 10–100 m depending on class.

Bluetooth uses frequency hopping spread spectrum (FHSS) — it rapidly switches between 79 channels 1,600 times per second. This makes it resistant to interference and eavesdropping.

A piconet is a Bluetooth network: one master device and up to 7 active slave devices. Bluetooth is used for: headsets, keyboards, mice, file transfer, smartwatches, IoT sensors.

Bluetooth versions: Bluetooth 5.0+ offers up to 2 Mbps, range up to 400 m (theoretically), low energy (BLE) mode for IoT/sensors.

Other Wireless Technologies

RFID (Radio Frequency Identification)

Uses radio waves to identify and track objects. An RFID tag (attached to an object) communicates with an RFID reader. Tags can be passive (no battery — powered by the reader's radio field) or active (have their own battery). Used in: contactless payments, passport chips, stock tracking, library book systems, access cards.

NFC (Near Field Communication)

Very short range (up to 4 cm), derived from RFID. Used for contactless payments (phone or card tapped to terminal), pairing devices, and smart tags. Operates at 13.56 MHz.

Infrared (IR)

Very short range, requires line of sight (no obstacles). Used in TV remote controls, some older file transfer. Now largely replaced by Bluetooth for device communication.

ZigBee

Low-power, low-data-rate wireless protocol designed for IoT (Internet of Things). Used in smart home devices (smart bulbs, thermostats), industrial sensors. Operates on 2.4 GHz. Supports mesh networking — devices can relay signals for each other, extending range.

Exam tip: CSMA/CA vs CSMA/CD is a common exam topic. CD = collision Detection (wired Ethernet); CA = collision Avoidance (wireless WiFi). Wireless cannot detect collisions mid-transmission, so it uses the RTS/CTS mechanism to avoid them before transmission begins.
Exam tip: Know the security protocols in order: WEP (broken) → WPA (deprecated) → WPA2 (AES — current standard) → WPA3 (newest). Exam may ask why WEP is insecure: the RC4 key can be cracked by capturing enough packets.
⚠ Common Mistakes
  • Saying WiFi uses CSMA/CD — WiFi uses CSMA/CA (Collision Avoidance). CSMA/CD is used in wired Ethernet. The key difference is that wireless devices cannot detect collisions while transmitting.
  • Confusing Bluetooth and WiFi — both use 2.4 GHz but are different protocols for different purposes. Bluetooth is for short-range PAN (keyboards, headsets). WiFi is for LAN networking with internet access.
  • Saying hiding the SSID makes a network secure — it is security through obscurity only. The network can still be detected by network scanners. WPA2/WPA3 with a strong passphrase is essential.
✓ Notes completed!
Video coming soon
Click to advance · Arrow keys also work
Click slide or press arrow keys to navigate

Worksheet — 1.3.3b Wireless Networking

8 questions · 20 marks · instantly marked

Q1Explain the difference between 2.4 GHz and 5 GHz WiFi bands. When would you choose each?[4 marks]
✓ Mark scheme
2.4 GHz: longer range; better penetration through walls and obstacles [1]; more congested — shared with microwaves, Bluetooth, and many devices — more interference [1]; slower maximum speeds than 5 GHz. 5 GHz: faster maximum speeds; less congested — fewer devices use it [1]; shorter range; does not penetrate walls as well [1]. Choose 2.4 GHz for: long-range coverage, devices far from router, better through obstacles. Choose 5 GHz for: high-speed transfers near the router, less interference, gaming/video streaming [1]. Max 4 marks.
Q2Describe the CSMA/CA protocol used in wireless networks. Why is collision avoidance used instead of collision detection?[4 marks]
✓ Mark scheme
CSMA/CA: a device listens to the channel; if busy it waits [1]; if free, it waits a random backoff period, then sends an RTS (Request to Send) to the WAP [1]; the WAP replies with CTS (Clear to Send), telling all other devices to wait [1]; the device transmits and receives an ACK when the data arrives successfully [1]. Collision detection is not used because a wireless device cannot transmit and listen simultaneously — it cannot detect a collision while it is occurring; it can only avoid them by reserving the channel before transmitting [1]. Max 4 marks.
Q3Explain the 'hidden node problem' in wireless networks and how CSMA/CA solves it.[3 marks]
✓ Mark scheme
Hidden node problem: Device A and Device B are both in range of the WAP but not in range of each other — they cannot detect each other's transmissions [1]; both may transmit simultaneously (because neither detects the other's signal), causing a collision at the WAP [1]. CSMA/CA solves this using RTS/CTS: when Device A sends RTS, the WAP broadcasts CTS to ALL devices in its range — Device B hears the CTS and knows to wait, even though it cannot hear Device A [1].
Q4Compare WEP and WPA2 as WiFi security protocols. Why is WEP no longer considered secure?[3 marks]
✓ Mark scheme
WEP (Wired Equivalent Privacy): uses RC4 stream cipher; the encryption key can be cracked in minutes by capturing a sufficient number of packets and performing statistical analysis — WEP has fundamental weaknesses in how it uses initialisation vectors (IVs) [1]; WEP is considered completely broken and should not be used [1]. WPA2: uses AES-CCMP encryption — a much stronger algorithm; the key is not reused in a predictable way; very difficult to crack without knowing the passphrase [1]; current standard for WiFi security.
Q5Describe how Bluetooth uses frequency hopping. Why does this make it resistant to interference?[3 marks]
✓ Mark scheme
Bluetooth uses FHSS (Frequency Hopping Spread Spectrum) — it rapidly switches between 79 different channels (frequencies) within the 2.4 GHz band, 1,600 times per second [1]; the sequence of channels is pseudorandom and known to both devices — they hop in sync [1]; because the signal only stays on any one frequency for a very short time, even if another device is transmitting on one of those frequencies the collision only affects a tiny fraction of the data — resistance to narrowband interference and eavesdropping [1].
Q6Explain the difference between passive and active RFID tags.[2 marks]
✓ Mark scheme
Passive RFID tag: has no battery — it draws power from the electromagnetic field emitted by the RFID reader; very small and cheap but short range (typically up to ~10 cm) [1]. Active RFID tag: has its own battery to power its transmitter; can communicate over much longer ranges (up to hundreds of metres) and can broadcast continuously; larger and more expensive [1].
Q7What is an SSID? Why does hiding the SSID provide only minimal security for a WiFi network?[2 marks]
✓ Mark scheme
SSID (Service Set Identifier): the name of a WiFi network — the string that appears in a device's list of available networks [1]. Hiding the SSID provides only minimal security because the network can still be detected using wireless network scanning tools (e.g. Wireshark, Kismet); also, devices that have previously connected to the network will broadcast probe requests for that SSID, revealing it; only strong encryption (WPA2/WPA3) provides real security [1].
Q8Compare NFC and Bluetooth in terms of range and typical use cases.[2 marks]
✓ Mark scheme
NFC: very short range (up to 4 cm); used for contactless payments, tapping phone to card reader, pairing devices quickly, reading smart tags — the very short range is a security feature [1]. Bluetooth: up to 10–100 m range (class dependent); used for audio (headsets, speakers), keyboards, mice, file transfer, smartwatches — ongoing connections over moderate distances [1].
Topic Quiz
1 of 15
You scored
out of 15
🎯

Mini Test — 1.3.3b Wireless

  • 10 questions · 10 marks · 10 minutes
  • 5 MCQ + 5 short answer
Card 1 of 15
Click to reveal
🎉
Complete!
TermDefinition
← 1.3.3a Network Topologies 1.3.3 Networks Next: 1.3.3c Network Security →
🔒
Pro Content
Subscribe to access all 69 OCR H446 A Level lessons.
£7.99/month
or £59/year
Subscribe now →