The TCP/IP model is the practical protocol suite used on the internet. It has 4 layers (simpler than OSI's 7):
| TCP/IP Layer | OSI Equivalent | Protocols |
|---|---|---|
| Application | Application + Presentation + Session | HTTP, HTTPS, FTP, SMTP, DNS |
| Transport | Transport | TCP, UDP |
| Internet (Network) | Network | IP, ICMP |
| Link (Network Access) | Data Link + Physical | Ethernet, Wi-Fi, ARP |
| Feature | IPv4 | IPv6 |
|---|---|---|
| Length | 32-bit | 128-bit |
| Format | 4 decimal octets: 192.168.1.1 | 8 groups of 4 hex: 2001:0db8:85a3::0000:8a2e:0370:7334 |
| Addresses | ~4.3 billion (2³²) | ~340 undecillion (2¹²⁸) |
| Why needed? | Exhausted by internet growth | Solves address exhaustion |
| NAT needed? | Yes — NAT extends IPv4 life | No — enough addresses for every device |
Subnetting: divides a network into smaller sub-networks. The subnet mask identifies which part of an IP address is the network ID and which is the host ID. E.g. 255.255.255.0 means the first three octets are the network, last octet = host.
Data is split into packets for transmission. Each packet contains:
How it works:
Advantages of packet switching: efficient use of network (no dedicated circuit), resilient (packets reroute if a link fails), different packets take optimal paths.
DNS is a hierarchical distributed database that maps domain names to IP addresses:
NAT allows multiple devices on a private LAN to share a single public IP address. The router translates private IPs (e.g. 192.168.x.x) to its public IP and tracks connections using a port translation table. This helps extend the life of IPv4.
8 questions · instantly marked · AQA 7517 standard
| Term | Definition |
|---|
10 questions · 10 minutes