What redundancy exists in network fabric?
Oracle Cloud Infrastructure (OCI) was built from the ground up to solve the "noisy neighbor" and oversubscription problems of early clouds. In 2026, its network fabric is considered its greatest engineering feat, specifically due to its non-blocking, flat design.
Here is how redundancy is baked into the very "wiring" of the cloud:
Traditional networks use a "tree" structure, which can create bottlenecks at the top. OCI uses a Multi-Stage Clos Network.
What it is: A massive "mesh" of interconnected switches.
The Redundancy: Every leaf switch (where your servers live) has multiple parallel paths to every other leaf switch in the data center.
The Impact: If a core switch or a fiber cable fails, the fabric simply routes around it. Because it is non-blocking, you get the same high speed whether you are talking to a server in the next rack or one across the building.
In older clouds, the network was managed by the same CPU running your VM. If the CPU crashed, the network died too.
SmartNICs: OCI moves network management to a custom SmartNIC (Silicon-based hardware) outside the host.
Isolation: This "off-box" approach means your server’s network performance is physically isolated from other customers. One "noisy neighbor" cannot saturate the fabric and slow down your rented infrastructure.
The network fabric is physically segmented to prevent a single "event" from taking out your whole app:
Availability Domains (ADs): These are physically separate data centers within a region. They do not share power, cooling, or the internal network fabric.
Fault Domains (FDs): Within a single data center, OCI groups hardware into three FDs. Each FD has independent power and top-of-rack switches. If a rack-level switch fails, only 1/3 of the capacity in that data center is affected.
For your connections into the cloud, OCI enforces redundancy through the Dynamic Routing Gateway (DRG):
Dual Tunnels: When you create a Site-to-Site VPN, OCI automatically builds two IPSec tunnels on two different physical routers.
FastConnect Redundancy: For dedicated lines, OCI provides "Redundant Virtual Circuits." You can connect to two different OCI routers in the same location (device redundancy) or even two different physical locations (site redundancy).
| Component | Redundancy Mechanism | Failure Protected Against |
| Internal Fabric | Clos Mesh (Parallel paths) | Core Switch/Fiber Failure |
| Server NIC | Off-box SmartNIC | Host CPU/Hypervisor Crash |
| Data Center | Availability Domains | Total Data Center Outage |
| Rack | Fault Domains | Rack Switch / Power Unit Failure |
| VPN / Edge | Dual Tunnels / DRG | Router / Provider Failure |
Because of this high-speed, redundant fabric, OCI allows you to use Regional Subnets. This means you can have one IP range that spans three different data centers. If one data center goes dark, your load balancer simply shifts traffic to the other two—your network configuration doesn't have to change at all.