CodeIEB
Theory Notes/🌐 Topic 2: Internet & Communication Technologies/11.2.1
11.2.1Grade 11

LAN Configurations, Devices & Architecture

The most detailed networking subtopic in the whole syllabus — topologies, addressing, and how data is actually packaged for transmission. Take your time here.

Bounded connection media (recap + weaknesses):

WeaknessDescription
EavesdroppingAn unauthorised party intercepts and reads data being transmitted
AttenuationSignal strength weakens the further it travels along a cable
Cross talkSignal from one wire interferes with a signal in an adjacent wire
EMI (Electromagnetic Interference)External electrical/magnetic sources (motors, power lines) disrupt the signal

Unbounded connection media: Bluetooth (short range, low power), wireless/Wi-Fi (medium range), radio waves (used for various wireless communications).

Network topology — the physical/logical layout of how devices are connected:

TopologyLayoutKey trait
StarAll devices connect to one central device (e.g. a switch)If the central device fails, the whole network fails; easy to add/remove devices
BusAll devices share a single central cableSimple and cheap, but a cable break can affect the whole segment
RingDevices connect in a closed loop, data passes around the ringData travels in one (or two) direction(s) around the ring
MeshEvery device connects directly to every other deviceVery reliable/redundant, but expensive and complex to cable
HybridA combination of two or more topologiesCombines advantages of multiple topologies for a specific need

Star, Bus and Ring topologies — notice the single point of failure in Star (the switch) vs. Bus (the shared cable).

Networking devices:

  • NIC (Network Interface Card) — hardware that allows a device to physically connect to a network.
  • Switch — connects devices within a LAN, forwards data only to the intended device using its MAC address.
  • Router — connects different networks and directs data between them using IP addresses.
  • Bridge — connects and filters traffic between two network segments, reducing unnecessary traffic.

Network addressing:

ConceptDescription
IPv432-bit IP address format (e.g. 192.168.0.1); a limited number of possible addresses
IPv6128-bit IP address format, created to solve IPv4 address exhaustion, allows vastly more unique addresses
MAC addressA unique, hardware-burned-in address assigned to a NIC — used for identifying a device on a local network
DNS (Domain Name System)Translates human-readable domain names (e.g. google.com) into IP addresses
DHCP (Dynamic Host Configuration Protocol)Automatically assigns IP addresses to devices on a network
ARP (Address Resolution Protocol)Finds the MAC address associated with a known IP address on the local network

Broadcast communication sends data to every device on a network; point-to-point communication sends data directly between two specific devices only.

Format of Packets and Frames — how data is actually packaged for transmission:

Packet
A unit of data formatted for transmission at the IP (network) layer, containing the source and destination IP addresses plus the actual data (payload).
Frame
A unit of data formatted for transmission at the Ethernet (data-link) layer, wrapping a packet with additional information like a frame check (for error detection) and, where relevant, a VLAN tag.
Header
The part of a packet/frame containing control information — e.g. source address, destination address.
Payload
The actual data being carried, excluding the header/control information.
Frame check
A value included in a frame used by the receiving device to check whether the data arrived without errors.
VLAN tag
A marker in a frame identifying which Virtual LAN the traffic belongs to, allowing one physical network to be logically divided into separate groups.

WLAN (Wireless LAN) devices: wireless access point (lets wireless devices join a wired network), wireless bridge (connects two wired network segments wirelessly), wireless router (combines routing with a wireless access point).

Wi-Fi and hotspots let devices connect wirelessly to a network or share an existing connection.

ComparisonBounded (wired)Unbounded (wireless)
Bandwidth/speedGenerally higher and more consistentGenerally lower and can vary with interference/distance
MobilityLimited to cable lengthHigh — devices can move freely within range

Extending a LAN: a fibre optic backbone can be used to connect multiple switches/segments of a large LAN together at very high speed over longer distances than copper cabling allows.

💡 Exam Tip

When comparing topologies, always mention both a strength AND a weakness — e.g. star topology is easy to manage and expand, but a single point of failure at the central device brings down the whole network.