Practice Questions

Elastic Load Balancing (ELB)

ELB automatically distributes incoming traffic across multiple targets (EC2 instances, containers, Lambda functions, IP addresses) in one or more Availability Zones. AWS offers three load balancer types.

Application Load Balancer (ALB)

ALB operates at Layer 7 (HTTP/HTTPS). It inspects request content and routes based on rules.

Network Load Balancer (NLB)

NLB operates at Layer 4 (TCP/UDP/TLS). It does not inspect request content — it routes based on connection-level information.

Gateway Load Balancer (GWLB)

GWLB operates at Layer 3 (IP). It is used to deploy, scale, and manage third-party virtual network appliances (firewalls, IDS/IPS, deep packet inspection systems). Less commonly tested than ALB and NLB.