Profile Applicability:

  • Level 2

Description:

Cross-Zone Load Balancing ensures that each Classic Load Balancer (CLB) distributes incoming traffic evenly across all registered instances in all enabled Availability Zones (AZs), rather than restricting traffic to instances in the same AZ as the incoming request. This feature helps optimize resource utilization and enhances application availability and fault tolerance.

When Cross-Zone Load Balancing is enabled, it allows CLBs to route traffic to healthy instances across all AZs, even if the incoming request originates from a different AZ.

Rationale:

  • High Availability: Ensures even traffic distribution across multiple AZs, improving fault tolerance in case of instance or AZ failures.

  • Optimized Resource Utilization: Prevents uneven traffic distribution that could overwhelm instances in a single AZ.

  • Reduced Downtime: Increases application resilience and minimizes the risk of bottlenecks.

  • Enhanced Load Distribution: Especially beneficial in cases where the number of instances in each AZ is not the same.

Impact:

  • Pros:

    • Ensures even traffic distribution across all AZs.

    • Improves fault tolerance and high availability.

    • Optimizes resource utilization, reducing the risk of overloading instances in one AZ.

  • Cons:

    • May incur additional data transfer costs due to inter-AZ traffic.

    • Could lead to higher latency if traffic crosses AZ boundaries.

Default Value:

  • Cross-Zone Load Balancing is disabled by default for Classic Load Balancers.

  • It must be manually enabled.

Pre-Requisite:

  • IAM Permissions:

    • elasticloadbalancing:DescribeLoadBalancers

    • elasticloadbalancing:ModifyLoadBalancerAttributes

  • AWS CLI installed and configured.

Remediation:

Test Plan:

Using AWS Console:
  1. Sign in to the AWS Management Console.

  2. Navigate to EC2 Dashboard → Load Balancers.

  3. Select Classic Load Balancers from the left-hand panel.

  4. For each Classic Load Balancer:

    • Select the CLB.

    • Go to the Description tab.

    • Under Attributes, check if Cross-Zone Load Balancing is enabled.

Using AWS CLI:

Check Cross-Zone Load Balancing Status:

aws elb describe-load-balancer-attributes --load-balancer-name <clb-name> --query 'LoadBalancerAttributes.CrossZoneLoadBalancing'

 Expected Output (Pass):

 {
    "Enabled": true
}
 Fail Output (Disabled):
 {
    "Enabled": false
}


Implementation Steps:

Using AWS Console:

  1. Sign in to the AWS Console.

  2. Navigate to EC2 Dashboard → Load Balancers.

                           

  1. Select the Classic Load Balancer to modify.

                         

  1. Under the Description tab, click Edit Attributes.

                             

  1. Enable the checkbox for Cross-Zone Load Balancing.

                               

  1. Click Save.

                 

Using AWS CLI:

Enable Cross-Zone Load Balancing:

aws elb modify-load-balancer-attributes --load-balancer-name <clb-name> --load-balancer-attributes 'CrossZoneLoadBalancing={"Enabled":true}'

Verify the Changes:

aws elb describe-load-balancer-attributes --load-balancer-name <clb-name> --query 'LoadBalancerAttributes.CrossZoneLoadBalancing'

Backout Plan:

If enabling Cross-Zone Load Balancing causes issues:

Using AWS Console:

  • Navigate to EC2 Dashboard → Load Balancers.

  • Select the Classic Load Balancer.

  • Click Edit Attributes.

  • Uncheck the Cross-Zone Load Balancing option.

                                   

  • Click Save.

                             

Using AWS CLI:

aws elb modify-load-balancer-attributes --load-balancer-name <clb-name> --load-balancer-attributes 'CrossZoneLoadBalancing={"Enabled":false}'

References:

  1. AWS CLB Documentation

  2. AWS CLI - ELB Commands

  3. Best Practices for Classic Load Balancers

CIS Controls:

Version

Control ID

Control Description

IG1

IG2

IG3

v8

5.3

Securely Manage Network Infrastructure – Ensure load balancers distribute traffic optimally.

v8

13.2

Ensure Secure Network Communication – Implement balanced traffic routing to ensure availability.

v7

9.1

Limit Exposure to External Networks – Optimize traffic flow and distribution across resources.