What is Link Aggregation (LACP) and when should I use it?
48
✓
✓ Best Answer
Link Aggregation (IEEE 802.3ad, later 802.1AX) combines multiple physical links into a single logical link, providing both increased bandwidth and redundancy.
Key Concepts
- LACP (Link Aggregation Control Protocol): Dynamic negotiation
- Static aggregation: Manual configuration, no LACPDU exchange
- LAG (Link Aggregation Group): The bundled logical link
- Load balancing: By src/dst MAC, IP, or L4 port
Benefits
- Increased bandwidth (2-8x single link)
- Automatic failover on link failure
- Load distribution across links
- No spanning-tree recalculation needed
Use Cases
- Switch-to-switch trunks: Aggregation layer connections
- Server uplinks: High-throughput servers, NAS
- Core network bandwidth expansion
Limitations
- Individual flows do not exceed single link speed
- All member links must have same speed and duplex
- Cross-switch LAG requires MLAG/VPC (vendor-specific)
Configuration Tips
- Use LACP over static for auto-recovery
- Match load-balance algorithm to traffic pattern
- Enable on both ends before connecting cables
- Monitor with LACP status commands
2 Other Answers
13
LACP saved us during a switch upgrade — traffic never noticed the link swap.
7
Test your load-balance hash before production. Default may not fit your traffic.
Your Answer
You must be signed in to post an answer.