Network Topology Types Explained: Star, Bus, Ring, Mesh, and Tree

The shape a network is wired in affects its speed, cost, and how badly a single failure hurts -- here's how the main topology types compare.

What a network topology actually is

A network topology is the physical or logical arrangement of how devices (nodes) like computers, switches, and routers connect to each other. The same number of devices wired in different shapes can behave very differently in cost, speed, and how far a single failure spreads.

Star topology: everything connects to one hub

Every device connects with its own cable to a central switch or router. If one device's cable fails, nobody else is affected, which makes problems easy to isolate -- but if the central hub itself fails, every connected device loses connectivity at once, a weakness known as a single point of failure (SPOF).

Bus topology: one shared cable for everyone

All devices tap into a single shared backbone cable, and every device receives all the data traveling along it. It was cheap to build with early Ethernet, but a break anywhere on that one cable takes the whole network down, and this design has been almost entirely replaced by star topology.

Ring topology: a circular relay

Each device connects to exactly two neighbors, forming a loop that passes data around it in one direction (or both, with a dual ring). Older technologies like Token Ring and FDDI used this design; a single break can take down the whole ring, which is why some implementations added a second, redundant ring.

Mesh topology: multiple overlapping paths

Devices connect through more than one path, so traffic can reroute around a broken link. A full mesh, where every node connects directly to every other node, is the most resilient but grows expensive fast since connections increase roughly with the square of the node count -- a partial mesh, connecting only some nodes redundantly, is the common compromise.

Tree and hybrid topologies: star networks stacked in layers

A tree topology links multiple star networks in a hierarchy -- for example, per-floor switches (access layer) connecting up to a building switch (distribution layer), which connects up to a core switch. Mixing different topologies to fit different needs like this is called a hybrid topology, and it is how most real corporate and campus networks are actually built.

Your home Wi-Fi is a star topology too

When every phone, laptop, and smart TV in your home connects wirelessly to a single router, that is structurally the same as a wired star topology -- just using radio instead of cables. It's also why the whole house loses internet access at once when the router loses power: that's the star topology's single point of failure showing up at home.

Why star topology quietly won

Star topology dominates modern networks not because it's the most failure-resistant on paper -- a full mesh technically beats it there -- but because it offers the best practical balance: cheap to wire, easy to add or remove a device without disrupting anyone else, and simple to troubleshoot since a technician can isolate a fault to one cable or port. Its one real weakness, the central hub as a single point of failure, is manageable by simply buying a more reliable switch or router rather than wiring an entire redundant network.

How real networks blend more than one shape

Very few networks stick to one pure topology in practice. A typical office runs star-wired access switches in a tree hierarchy up to a core, then adds mesh-like redundant links between core switches so that no single cable failure can split the network in two. Understanding the basic shapes is what lets you recognize which trade-offs a given design is making.

Frequently Asked Questions

Which topology do real companies actually use?

Most mid-size and large organizations don't use a single pure topology. They typically build a hierarchical tree with access, distribution, and core layers, then add extra ('meshed') links between core devices for redundancy -- a hybrid design.

How do you fix star topology's single-point-of-failure problem?

By adding redundancy at the hub itself: duplicate core switches or routers configured to fail over automatically, backup power (a UPS) to survive outages, and, for critical networks, mesh-style extra links so traffic has more than one path to take.