Connectivity

Link Aggregation for Business Networks: Speed and Resilience Guide

Link aggregation combines multiple physical network connections into a single logical link to increase bandwidth and improve resilience. This guide explains the technology, the main standards, practical use cases in business networks, and how it differs from related technologies like channel bonding and SD-WAN.

NH

Nathan Hill-Haimes

Technical Director

8 min read·Mar 2026

What is link aggregation and how does it work?

Link aggregation combines multiple physical Ethernet links into a single logical link so they behave as one connection. It runs at Layer 2 of the OSI model, inside your building, typically between two switches or between a server and a switch. The network stack treats the bonded ports as one combined resource.

The principle is simple. A single Gigabit Ethernet port gives you 1 Gbps. Two ports bonded together provide up to 2 Gbps aggregate capacity, and the connection keeps running if one of the two links develops a fault. Four ports give up to 4 Gbps, and so on. This is a wired LAN technology — distinct from WAN-level approaches like channel bonding and SD-WAN, which combine internet circuits across the public network rather than ports inside your network.

Because it lives on the local network, link aggregation is a building block of resilient office and server-room design, not an internet-bandwidth fix. If your problem is the speed of the circuit coming into the building, you need business leased lines or better business broadband, not a LAG between switches.

What standards govern link aggregation?

Two standards govern it. The dominant one is the IEEE 802.1AX standard (originally 802.3ad), which defines the Link Aggregation Control Protocol (LACP) for dynamic negotiation between devices. The alternative is static aggregation, which assigns ports to a group with no protocol negotiation and no automatic fault detection.

LACP is the preferred approach for most business deployments. It automatically detects link failures and misconfiguration and supports interoperability between equipment from different manufacturers. For a deeper walkthrough of the protocol, see our guide to LACP and link aggregation control.

Static aggregation (sometimes called manual or force-mode) is simpler to configure but riskier: a failed link may keep sending traffic to a dead path without either switch noticing. In practice, LACP is the default for production networks; static aggregation is reserved for specific interoperability cases or tightly controlled environments where both ends are known to be correct.

FeatureLACP (802.1AX / 802.3ad)Static aggregation
NegotiationDynamic, automaticNone — manually forced
Link-failure detectionYes, automaticNo
Cross-vendor interoperabilityStrongFragile
Misconfiguration safetyDetects and disablesCan send traffic to a dead path
Recommended for productionYesRarely

How is traffic distributed across aggregated links?

Traffic across a link aggregation group is distributed by a hashing algorithm, not round-robin. Each flow — defined by a combination of source and destination addresses and ports — is assigned to one specific member link using a hash of its identifiers. This is the single most misunderstood point about link aggregation.

The consequences matter for capacity planning:

  • All packets in one TCP connection travel via the same member link, preserving packet order.
  • Different connections (different clients, different sessions) hash to different links, achieving aggregate throughput across the group.
  • A single session is capped at the speed of one member link — bonding helps many concurrent sessions, not one big transfer.

On managed switches the hash can usually be tuned: Layer 2 (source/destination MAC), Layer 3 (IP address) or Layer 4 (port-based) hashing. The right choice depends on the traffic profile. A network with many clients talking to one file server benefits from a Layer 4 hash so sessions spread evenly; a flat Layer 2 hash may pin most traffic to a single link.

Where does link aggregation actually get used?

The three common deployments are switch uplinks, server and storage connectivity, and hyperconverged clusters. In each case the goal is the same: remove a bandwidth bottleneck while gaining link-level resilience. These are exactly the design decisions a competent network partner should be making for you.

Switch uplinks

The most common deployment is on uplinks between access-layer and distribution-layer switches. A floor or departmental access switch carries many user devices; aggregating two or four uplinks to the distribution switch increases bandwidth for traffic moving between segments — users to file servers, users to the internet gateway, and so on. For a medium-sized office with 30–50 users on one access switch, two bonded Gigabit uplinks sharply reduce the chance of the uplink becoming a peak-time bottleneck.

Server and storage connectivity

File servers, hypervisors and storage arrays benefit when network bandwidth is the constraint. A server with two 10 Gigabit NICs bonded to the switch has 20 Gbps of theoretical aggregate capacity across all simultaneous sessions — useful for busy file servers with many concurrent users, or for backups that compete with live traffic.

Hyperconverged infrastructure

In virtualised environments using hyperconverged platforms (VMware vSAN, Nutanix, Microsoft Storage Spaces Direct), link aggregation is common on both management and storage-replication networks. Redundancy matters most here — a LAN link failure inside a storage cluster can be highly disruptive, and LACP's automatic failover stops a single-cable fault from becoming an outage.

What does link aggregation deliver — and what doesn't it?

Link aggregation delivers two things: more aggregate bandwidth and link-level resilience. It does not deliver device-level redundancy. Bandwidth grows roughly in proportion to the number of member links, but real efficiency depends on how evenly the hash spreads traffic.

LACP provides automatic link-failure detection and recovery. When a member link fails, LACP removes it from the active group and redistributes traffic across the survivors — typically within milliseconds. When the link recovers, LACP re-adds it automatically. That makes single cable or transceiver faults a non-event.

The critical limitation: if the switch itself fails, the aggregated link fails with it. Full device-level redundancy needs additional design — Spanning Tree Protocol across multiple physical paths, switch stacking, or Multi-Chassis Link Aggregation (MC-LAG). For sites that cannot tolerate downtime, link aggregation is one layer in a wider resilience plan that should also cover circuit diversity and multi-site connectivity. The UK's National Cyber Security Centre treats network resilience as part of operational security, not just an IT nicety — see its guidance on designing resilient systems.

What equipment do you need for link aggregation?

You need managed switches at both ends of the aggregated link. Both must support 802.1AX/LACP for dynamic aggregation, though they do not have to be from the same manufacturer. Unmanaged switches cannot do link aggregation at all.

For server NIC bonding, the operating system must support 802.3ad/LACP mode — the Linux bonding driver, Windows NIC Teaming, or VMware teaming policies — and the connected switch must be configured to form a matching LAG with the server's ports. Mismatched configuration on either side is the most common reason a LAG silently fails to form.

How does link aggregation compare to channel bonding and SD-WAN?

These three are often confused because they all combine connections, but they operate at different layers and solve different problems. Link aggregation is LAN-side, inside your building; channel bonding and SD-WAN are WAN-side, combining internet circuits.

TechnologyWhat it combinesWhere it operatesLayer
Link aggregation (LACP / 802.1AX)LAN ports between switches or server-to-switchInside your buildingLayer 2
Channel bondingMultiple WAN/internet circuits from different ISPsPremises to bonding serverWAN
SD-WANMultiple WAN paths with intelligent, application-aware routingAcross the WANWAN policy

All three can coexist. A single site might run LACP between its switches, channel bonding across two internet circuits, and software-defined WAN to manage traffic policy and failover across those circuits. Getting the LAN, the circuits and the routing right under one accountable provider is far simpler than stitching three vendors together.

Is Your Network Infrastructure Fit for Purpose?

AMVIA conducts network infrastructure reviews for UK SMEs — assessing switch configuration, cabling, WAN connectivity and resilience against your current and planned requirements.

Frequently Asked Questions