Track progress, take quizzes and save notes on this lesson.

Free forever · no card needed

Start free
Intermediate

The Internet and DNS

4.9.3.1 The Internet and how it works

Aligned to the AQA 7517 specification

Level
Intermediate
Reading time
6 min
Published
13 June 2026
Updated
1 July 2026
On this page
  1. 1.What is the Internet?
  2. 2.Packet Switching
  3. 3.Routers and Gateways
  4. 4.IP Addresses and Domain Names
  5. 5.DNS: Domain Name System
  6. 6.Internet Registries
  7. 7.Common Exam Mistakes

Key takeaways

  • The Internet is a packet-switched, decentralised global network of networks interconnected by routers, with no single organisation owning or controlling it.
  • In packet switching, packets are routed independently, may take different routes and arrive out of order, then are reassembled in the correct order using sequence numbers.
  • DNS is a hierarchical distributed database that translates domain names into IP addresses; no single server holds all records, making it scalable and resilient.
  • An IP address is what routers use and a domain name is the human-readable name DNS maps to it; they are not interchangeable terms.
  • A FQDN identifies a specific host (www.example.co.uk) while a URL identifies a specific resource including protocol and path; a FQDN is a component of a URL.

What is the Internet?

The Internet is a global network of networks — millions of individual networks (home networks, corporate networks, data centres, university networks) interconnected by routers. No single organisation owns or controls the Internet.

Key properties:

  • Packet-switched — data is broken into packets and each packet is routed independently
  • Decentralised — there is no central point; packets can take many different paths
  • Interoperable — different physical networks (fibre, copper, WiFi, satellite) all use the same TCP/IP protocol

Packet Switching

Packet switching is the method by which data travels across the Internet.

How it works:

  1. The sender's device breaks the message into fixed-size packets
  2. Each packet is sent independently through the network
  3. Packets may take different routes and arrive out of order
  4. The receiver reassembles packets in the correct order using sequence numbers

Packet structure

Each packet contains:

PartContent
HeaderSource IP address, destination IP address, sequence number, protocol, TTL (time to live)
PayloadThe actual data (fragment of the message)

Advantages of packet switching:

  • Network resources are shared efficiently — links are occupied only when packets are being sent
  • If one route is congested or fails, packets can be rerouted automatically
  • No dedicated circuit needed between sender and receiver

Routers and Gateways

A router is a device that forwards packets between different networks. It reads the destination IP address in each packet's header, consults its routing table, and forwards the packet toward the destination.

How routing works:

  1. Packet arrives at router
  2. Router looks up the destination IP in its routing table
  3. Router forwards the packet to the next hop (next router or final destination)
  4. Process repeats at each router until the packet reaches its destination

Gateway: a router that connects different network types (e.g. a home router acts as a gateway between the home network and the ISP's network, bridging different addressing schemes).

IP Addresses and Domain Names

IP address: a numerical label assigned to every device on a network. Used by routers to identify the source and destination of packets.

Domain name: a human-readable name that maps to an IP address (e.g. www.example.co.uk). Humans remember names; routers use IP addresses.

FQDN (Fully Qualified Domain Name): the complete domain name of a specific host, including all hierarchical levels.

Reading www.example.co.uk from left to right, each label is one level of the hierarchy:

PartLevel
wwwsubdomain / host
exampleregistered domain
.cosecond-level domain
.uktop-level domain (TLD)

URL (Uniform Resource Locator): the complete address of a specific resource, including protocol, domain, and path:

In https://www.example.co.uk/products/item.html, the three components are:

ComponentPart
httpsprotocol (HTTPS)
www.example.co.ukFQDN
/products/item.htmlpath to the resource

Something not quite clicking?

Ask Aica to explain any part of this differently. Free, takes 30 seconds.

Ask Aica

DNS: Domain Name System

DNS translates domain names into IP addresses. It is a hierarchical distributed database — no single server holds all records.

DNS resolution process (simplified):

  1. User types www.example.co.uk in their browser
  2. Device checks its local DNS cache — if found, use cached IP
  3. If not cached, query sent to the local DNS resolver (usually the ISP's DNS server)
  4. Local resolver queries the root DNS server → directed to the .uk TLD server
  5. TLD server → directed to example.co.uk's authoritative name server
  6. Authoritative server returns the IP address for www.example.co.uk
  7. IP address returned to the device; cached for future use
  8. Browser connects to the IP address

Why hierarchical? No single server could store all domain name records for the entire Internet (hundreds of millions of domains). Distributing the database across thousands of servers makes it scalable and resilient.

Internet Registries

Internet registries are organisations that manage the allocation and registration of Internet resources.

RegistryRole
IANA (Internet Assigned Numbers Authority)Top-level allocation of IP address blocks and TLD management
Regional Internet Registries (e.g. RIPE NCC for Europe)Allocate IP addresses to ISPs and organisations within a region
Domain registrarsAllow individuals/organisations to register domain names under TLDs

Internet registries maintain authoritative databases of who has been assigned which IP addresses and domain names, preventing conflicts.

Common Exam Mistakes

1. Confusing IP address and domain name

An IP address (93.184.216.34) is what routers use. A domain name (www.example.com) is what humans use. DNS translates between them. They are not interchangeable terms.

2. Stating all packets take the same route

In packet switching, different packets from the same message may travel different routes through the Internet. They are reassembled in order at the destination using sequence numbers.

3. Confusing URL and FQDN

A FQDN identifies a specific host (www.example.co.uk). A URL identifies a specific resource, including the protocol and path (https://www.example.co.uk/page.html). A FQDN is a component of a URL.

4. Claiming DNS is a single central server

DNS is a hierarchical distributed system — root servers, TLD servers, authoritative servers, and local resolvers each handle part of the resolution process. There is no single DNS server; the system is designed to be resilient and scalable.

Key terms

Packet switching
The method by which data travels across the Internet: a message is broken into packets that are each routed independently and reassembled in order at the destination.
Router
A device that forwards packets between different networks by reading each packet's destination IP address, consulting its routing table, and forwarding toward the destination.
Gateway
A router that connects different network types, such as a home router bridging the home network and the ISP's network with different addressing schemes.
IP address
A numerical label assigned to every device on a network, used by routers to identify the source and destination of packets.
Domain name
A human-readable name that maps to an IP address, such as www.example.co.uk.
FQDN
Fully Qualified Domain Name: the complete domain name of a specific host, including all hierarchical levels.
URL
Uniform Resource Locator: the complete address of a specific resource, including protocol, domain, and path.
DNS
Domain Name System: a hierarchical distributed database that translates domain names into IP addresses.
Internet registries
Organisations that manage the allocation and registration of Internet resources, maintaining authoritative databases of assigned IP addresses and domain names to prevent conflicts.

Frequently asked questions

An IP address (e.g. 93.184.216.34) is a numerical label routers use to identify the source and destination of packets, while a domain name (e.g. www.example.com) is a human-readable name. DNS translates between them; they are not interchangeable.

No single server could store all domain name records for the entire Internet's hundreds of millions of domains. Distributing the database across thousands of servers (root, TLD, authoritative) makes it scalable and resilient.

No. In packet switching, different packets from the same message may travel different routes through the Internet, and if one route is congested or fails packets can be rerouted automatically. They are reassembled in order at the destination using sequence numbers.

Generate revision on any topic you study

Type any topic you're studying and Aicademy generates a complete lesson, quiz, and flashcard set, personalised to your level.

Lessons on anything

Structured, level-matched lessons on any topic you study

Practice quizzes

Find out what you actually know before the exam does

Flashcard sets

Lock in key concepts with instant revision cards

Ask Aica

Stuck on something? Get a clear explanation, any time

Prev

Network Topology and Wireless Networking

Next

Internet Security

Related lessons

Top students don’t revise more. They revise what counts.

Start revising free

Free to start. No card needed.