What are Network Topologies? Star, Bus, Ring, and Mesh Explained
Learn network topologies — star, bus, ring, and mesh — their fault tolerance tradeoffs and when to use each, with interview Q&A.
Expected Interview Answer
A network topology is the physical or logical arrangement of how devices are connected to each other in a network — the most common patterns are bus (a single shared cable), star (all devices connect to a central switch), ring (each device connects to exactly two neighbors forming a loop), and mesh (devices connect to many or all other devices directly), and the choice determines cost, fault tolerance, and how a failure affects the rest of the network.
In a bus topology, every device shares one central cable, which is cheap but a single break anywhere takes down the whole segment and collisions increase with more devices; it is largely obsolete today. In a star topology, every device connects individually to a central switch or hub, so a single cable failure only affects that one device, and this is the dominant topology in modern Ethernet LANs precisely because of that fault isolation, though the central switch becomes a single point of failure. In a ring topology, each device connects to exactly two neighbors and data travels around the loop, which historically gave predictable performance (as in Token Ring) but one broken link could disrupt the whole ring unless a dual-ring design was used. In a mesh topology, devices have multiple direct connections to each other (full mesh: every device to every other device; partial mesh: only some), giving very high redundancy and fault tolerance at the cost of far more cabling and complexity, which is why mesh is typically reserved for critical backbone links or wireless mesh networks rather than every endpoint.
- Star isolates failures to a single link, making it the default LAN choice
- Bus is cheap but has almost no fault tolerance and does not scale well
- Ring gives predictable, ordered access but a break can disrupt the loop
- Mesh maximizes redundancy for critical links at the cost of cabling complexity
AI Mentor Explanation
A bus topology is like every player on the ground sharing one single radio channel to talk — cheap to set up, but if that one channel jams, no one can communicate at all. A star topology is like every player having their own private line to the team captain, who relays messages — if one player's line breaks, only that player is cut off, everyone else keeps talking fine. A ring topology is like players passing a message hand to hand around a fielding circle, and a mesh is like every player having a direct line to every other player, expensive but nearly impossible to fully disrupt. The captain-hub star pattern is why modern team communication systems favor it.
Step-by-Step Explanation
Step 1
Bus
All devices share one central cable; simple and cheap, but a single break disrupts the whole segment.
Step 2
Star
Every device connects individually to a central switch; a single link failure isolates only that device.
Step 3
Ring
Each device connects to exactly two neighbors in a loop; a break can disrupt the ring unless dual-ring.
Step 4
Mesh
Devices connect directly to many/all others, maximizing redundancy at the cost of cabling complexity.
What Interviewer Expects
- Can name and describe bus, star, ring, and mesh topologies
- Knows star is the dominant modern LAN topology and why
- Understands the fault-tolerance tradeoff of each topology
- Can explain when a mesh design is worth the added cost
Common Mistakes
- Thinking topology only refers to physical cabling, ignoring logical topology
- Not knowing star topology isolates failures to a single link
- Assuming ring topology is still common in modern networks
- Confusing partial mesh with full mesh (not every node connects to every other in partial mesh)
Best Answer (HR Friendly)
“A network topology is just the shape or pattern of how devices are wired together. Bus is everyone sharing one line, which is cheap but fragile. Star is everyone connecting to one central switch, which is what almost every modern office and home network uses because if one cable fails, only that device drops. Ring connects devices in a loop, and mesh connects many devices directly to each other for maximum redundancy, usually reserved for critical backbone links.”
Code Example
# Show this host’s single link to the central switch/gateway
ip link show eth0
# Confirm every other device is reachable only via that central switch
traceroute -n 192.168.1.50
# 1 192.168.1.1 (the central switch/router hop)
# 2 192.168.1.50 (destination, one hop beyond the switch)Follow-up Questions
- Why did Ethernet largely move from bus to star topology over time?
- What is the difference between a full mesh and a partial mesh network?
- How does a hybrid topology combine star and mesh in real data centers?
- What is the single point of failure risk in a star topology and how is it mitigated?
MCQ Practice
1. In a star topology, what happens if one device's cable fails?
Star topology isolates each device on its own link, so a single cable failure only affects that device.
2. What is the main drawback of a bus topology?
Bus topology shares one central cable, so a single break can take down the whole shared segment.
3. What best describes a full mesh topology?
Full mesh means each device has a direct connection to every other device, maximizing redundancy.
Flash Cards
What is a network topology? — The arrangement/pattern of how devices are connected in a network.
Why is star the dominant LAN topology? — A single cable failure only isolates one device instead of the whole network.
What is the bus topology drawback? — One cable break can disrupt the entire shared segment.
Full mesh vs partial mesh? — Full mesh connects every device to every other; partial mesh connects only some.