All DDoS Definitions
DDoS Definition

Load Balancer

A load balancer is a traffic-distribution control, and in DDoS terms a defensive layer whose behavior under flood a thorough DDoS test is built to validate. It sits in front of a backend pool (at Layer 4 as a network load balancer, or at Layer 7 as an application load balancer or reverse proxy) and spreads incoming connections across healthy nodes, removing failed ones from rotation through health checks. Against volumetric or connection-exhaustion attacks it can absorb load by fanning traffic across capacity, but it is also a chokepoint in its own right: its connection state table, TLS-termination CPU, and health-check logic can each become the layer of first failure before any backend node is touched.

Load balancer: the layer that distributes, and can fail first Incoming legitimate (green) + attack (red) legit + attack Load balancer (NLB L4 / ALB L7) chokepoint under load - connection state table - TLS handshake CPU - health-check logic backend pool distributes to healthy nodes Backend 1 healthy Backend 2 healthy Backend 3 pulled from rotation Under a connection flood the balancer's own state table can saturate before any backend does. A DDoS test finds where that ceiling sits: connection rate, concurrent limits, TLS throughput, and health-check stability. BlackNeuron
Load balancer under DDoS: incoming legitimate and attack traffic hits the load balancer, whose connection table, TLS CPU, and health-check logic can saturate and pull healthy backends from rotation before the backend pool itself fails

Why it matters in DDoS testing

A load balancer is often assumed to be pure spare capacity, but under a connection flood its state table (or the accept queue behind it) saturates while backends sit idle, and cascading health-check failures can pull healthy nodes out of rotation exactly when the pool is needed most. A DDoS test measures where that ceiling actually sits: connection setup rate, concurrent-connection limits, TLS handshake throughput, and whether health checks flap under partial load. Establishing those limits safely, without taking production down in the process, is the core constraint explored in DDoS Resilience Testing.