Computer Networks Basics·Lesson 10 of 10

Network Edge and Network Core

01

Two Halves of a Network

It helps to split any large network — especially the internet — into two parts. The network edge is where you and your devices live: the phones, laptops, and servers that actually produce and consume data. The network core is the mesh of routers and links in the middle whose only job is to move that data from one edge to another.

🛣️

The road system

Your driveway and the local streets are the edge — where journeys begin and end. The highways connecting cities are the core — high-capacity roads built purely to move traffic across long distances. You get on at the edge, travel through the core, and exit at another edge.

The path from you to the core

End system (host)

Your device — where data starts and ends

Edge

Access network

How you connect: Wi-Fi, broadband, cellular

Edge

Network core

A mesh of routers forwarding packets across the world

Core
02

The Network Edge

The edge is made of end systems (also called hosts) — the clients and servers that run applications. To reach the core, each end system first connects through an access network. The type of access network depends on where you are and how you're connecting.

Common access networks

  • Home broadband — cable, DSL, or fibre into your house
  • Wi-Fi — wireless access within a home, café, or office
  • Cellular — 4G/5G connecting phones on the move
  • Enterprise Ethernet — wired access in offices and campuses
03

The Network Core

The core is a dense mesh of interconnected . Its job is to carry data across the network using two key functions: forwarding (moving a packet from an incoming link to the correct outgoing link) and routing (choosing the overall path a packet takes). There are usually many possible paths, so if one link is busy or fails, data can go another way.

04

How the Core Moves Data

There are two fundamental ways to move data through a core: circuit switching and . Circuit switching reserves a dedicated path for the whole conversation (like an old telephone call). Packet switching chops data into small packets that are sent independently and share the links with everyone else's traffic. The internet uses packet switching.

Circuit SwitchingPacket Switching
PathDedicated, reserved end-to-endShared; packets routed independently
EfficiencyWastes capacity when idleHigh — links are shared
SetupConnection set up firstNo setup; just send packets
ResilienceFails if the path breaksReroutes around failures
Used byTraditional phone networksThe internet

Why packet switching won

Reserving a dedicated circuit wastes capacity whenever no one is talking. Packet switching lets many conversations share the same links, filling the gaps — far more efficient for bursty computer traffic, and it can reroute around failures. That efficiency and resilience is why the internet is packet-switched.

🚫

"My data travels along one fixed path to its destination."

On a packet-switched network, individual packets from the same message can take different routes and even arrive out of order. The core picks paths dynamically, and the destination reassembles the packets back into the original data.

Q:What's the difference between the network edge and the network core?

A: The edge is the end systems (hosts) and the access networks that connect them — where data is created and consumed. The core is the mesh of routers and links in the middle that forwards data between edges. Edge = endpoints; core = the transport in between.

Quick Revision Cheat Sheet

Network edge: End systems (hosts) + access networks

Network core: Mesh of routers that forward data

Forwarding: Move a packet to the right outgoing link

Routing: Choose the overall path a packet takes

Internet uses: Packet switching, not circuit switching