← Module 01 · Networking Fundamentals FUND

Network Topologies

The shape of how devices are physically or logically wired together — and why that shape decides how a network fails.

Think of a topology as the street layout of a town. It decides which houses can reach which other houses directly, what happens when one road closes, and how much road needs to get built in the first place. Networks have the same trade-off between cost, simplicity, and resilience.

Bus Star Ring Mesh
Four ways to wire the same four devices together. Each trades cabling cost against how gracefully it survives a failure.

Bus

Every device taps into a single shared cable — like one long hallway that every apartment opens directly onto. It's cheap (minimal cabling) but fragile: a single break anywhere in that hallway cuts off everyone past the break, and every device hears every other device's traffic, so collisions are common. This is how early Ethernet (10BASE2/10BASE5, coaxial cable) actually worked. You will not find a real bus network in production today — it's here mostly so you recognize the term and understand why it was abandoned.

Star

Every device connects to one central point — like every house in a neighborhood having its own private road to a roundabout. This is what a modern switch does: each device gets its own cable back to the switch, so one bad cable only takes down one device. The trade-off is the reverse of bus: if the central switch itself dies, everyone connected to it loses connectivity at once. This is the topology behind virtually every office and home network today.

Ring

Each device connects to exactly two neighbors, forming a loop — like a circular one-way street where mail passes from house to house until it reaches its destination. Token Ring and FDDI networks worked this way. A single break in a simple ring stops traffic entirely, which is why real implementations often used a dual counter-rotating ring — a second loop running the opposite direction as backup. You'll mostly encounter ring topology today in metro/service-provider fiber rings (SONET/SDH), not in office LANs.

Mesh

Every device connects directly to every other device — like a friend group where everyone has everyone else's phone number, with no need to go through a middleman. This is maximally resilient (many paths survive any single failure) but the cabling cost grows fast: for n devices you need n(n-1)/2 links, so a full mesh of 10 devices needs 45 connections. In practice you'll see partial mesh — critical core devices (like data center routers) meshed together, while everything else uses star.

Hybrid

Almost every real network is a hybrid. A typical company might use star topology within each office floor (everyone cabled to a floor switch), those floor switches connected in a resilient ring or partial mesh at the building core, and multiple buildings connected to each other over a WAN. You mix topologies to get star's easy fault isolation at the edge and mesh/ring's resilience at the core, without paying full-mesh cost everywhere.

WHAT TO ACTUALLY REMEMBER

In interviews and in the field, "star" and "hybrid" are what you'll actually work with day to day. Bus and ring matter mostly as historical/conceptual grounding — they explain why switches and structured cabling won.