Skip to main content
Sofia Connect
← Back to Knowledge BaseNetwork Architecture

Building Resilient Network Architecture: Ring vs Mesh Topologies

Topology is the most consequential architectural decision in network design. This article compares ring, mesh, and hybrid approaches, covering SONET/SDH legacy protection mechanisms, modern MPLS/SR-TE path diversity, and how to achieve sub-50ms restoration.

8 min read

A network's physical and logical topology determines its resilience, scalability, and operational complexity. When a fiber is cut or a node fails, the topology dictates whether traffic can be rerouted, how quickly, and at what cost. For carrier-grade networks — where SLA commitments typically specify 99.99% availability and sub-50ms restoration — topology selection is not an academic exercise.

Ring Topologies

A ring topology connects nodes in a closed loop. Each node has exactly two adjacent neighbours. Traffic normally flows around the ring in one direction; when a failure is detected, traffic reverses and flows the other way — this is the Automatic Protection Switching (APS) mechanism used in SONET/SDH rings.

SONET/SDH Rings: UPSR and BLSR

  • Unidirectional Path Switched Ring (UPSR): traffic is transmitted simultaneously on both directions of the ring. The receiver selects the stronger signal. Failover is immediate (<50ms) but bandwidth efficiency is limited because half the ring capacity is always used for the protection copy.
  • Bidirectional Line Switched Ring (BLSR): working and protection bandwidth are shared on the same ring. Under normal conditions, the protection bandwidth can be used for extra-traffic (lower-priority) circuits. Under failure, protection bandwidth is pre-empted to restore working circuits. More bandwidth-efficient than UPSR.
  • SONET/SDH protection switching time: the ITU-T G.841 standard specifies recovery within 50ms — a benchmark that all subsequent transport protection mechanisms have adopted as the industry standard.

Ring Topology Limitations

Rings are simple and cost-effective for small networks, but they do not scale well. A single failure anywhere on the ring degrades resilience to zero — any second failure causes a complete service outage for traffic crossing that ring segment. Ring capacity is also constrained: all traffic must traverse the ring, so a bottleneck at one link affects all services.

Mesh Topologies

In a mesh topology, nodes have multiple connections to other nodes. A full mesh connects every node directly to every other node — providing maximum path diversity but at prohibitive fiber cost beyond a handful of nodes. Partial mesh — where each node has connections to three or more neighbours — is the practical architecture used by most carrier backbone networks.

The key advantage of mesh is path diversity. When a link fails, multiple alternative paths exist to reach the same destination. MPLS-TE (Traffic Engineering) and its successor Segment Routing (SR-TE) can pre-compute and signal these alternative paths, switching traffic rapidly upon failure detection.

MPLS Fast Reroute (FRR)

MPLS Fast Reroute (RFC 4090) pre-computes backup label-switched paths (LSPs) at the point of local repair (PLR). When the PLR detects a link or node failure (typically via BFD — Bidirectional Forwarding Detection — detecting a session down in <50ms), it immediately diverts traffic onto the pre-computed backup LSP. This local repair happens in the forwarding plane, without waiting for the control plane to reconverge — restoration times are typically 10–50ms.

! Segment Routing with TI-LFA (Topology-Independent Loop-Free Alternate)
! on Cisco IOS-XR — enables fast reroute for all SR-MPLS LSPs

router isis 1
 address-family ipv4 unicast
  segment-routing mpls
  fast-reroute per-prefix enable area
  fast-reroute per-prefix ti-lfa enable

! BFD for fast failure detection on the link to a neighbour
router isis 1
 interface GigabitEthernet0/0/0/1
  point-to-point
  bfd minimum-interval 50
  bfd multiplier 3

Hybrid Topologies

Most real-world carrier networks use a hybrid: a mesh core with ring or hub-and-spoke access layers. The core — where traffic aggregation is highest and resilience is most critical — uses partial or full mesh with MPLS/SR-TE protection. The access layer, where node density is high and per-connection cost must be minimised, often retains ring or point-to-point topologies feeding into the mesh core nodes.

Path Diversity: The Critical Design Rule

Path diversity means that working and protection paths must not share any physical infrastructure — not the same fiber duct, not the same cable joint, not the same line card. Many operators have learned this lesson the hard way: logically separate paths that traverse the same physical conduit provide zero protection against a cable dig-up. Strict SRLG (Shared Risk Link Group) analysis — identifying all infrastructure that is physically co-routed — is mandatory before certifying that a path pair is truly diverse.

Summary

Ring topologies remain relevant for access and metro-ring deployments where simplicity and APS protection switching are paramount. Mesh topologies — implemented with MPLS-TE or SR-TE and BFD-triggered Fast Reroute — provide the path diversity and sub-50ms restoration required for carrier-grade backbone networks. In all cases, logical diversity without verified physical diversity is an illusion: SRLG analysis must be part of any resilient network design process.