Courseiva
Operations and MaintenancehardMultiple SelectObjective-mapped

NLB Health Check Configuration — Troubleshooting Steps

A company runs SAP NetWeaver on AWS and uses a Network Load Balancer (NLB) to distribute traffic to multiple application servers. The operations team notices that the NLB is not properly routing traffic to healthy targets. Which three steps should the team take to diagnose the issue? (Choose THREE.)

Quick Answer

Diagnosing why a Network Load Balancer isn't routing traffic to healthy targets means working through the chain of things that all have to be true simultaneously for a target to receive traffic: it has to be registered in the target group and in the Available state, network paths including security group rules have to actually allow the health check and client traffic through, and the health check itself has to be configured correctly. Health check settings such as the ping path, port, and protocol are a common root cause because if they're misconfigured, the NLB can mark genuinely healthy instances as unhealthy simply because it's probing the wrong endpoint or port, which looks identical to a real outage from the load balancer's perspective. Security group rules on the target instances matter for the same reason - if the security group doesn't allow traffic from the NLB, health checks will fail even though the application itself is running fine. Confirming targets are registered and in the Available state rules out the simplest possible cause before digging into configuration details. Cross-zone load balancing and CloudWatch metrics, by contrast, aren't diagnostic starting points for this specific symptom: cross-zone balancing only affects how traffic is distributed across AZs once targets are already healthy, and CloudWatch metrics are better suited to spotting trends after the fact than to root-causing why targets are currently marked unhealthy. When you see an NLB not routing to healthy targets, work through registration status, security groups, and health check configuration first.

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

Confirm that the target instances are registered in the target group and are in the Available state.

Target instances must be registered in the target group and in the Available state for traffic to be routed to them. Option B is correct: Security group rules on target instances must allow traffic from the NLB's subnet for health checks and client traffic. Option C is correct: Health check settings (ping path, port, protocol) must be correctly configured so the NLB can determine target health. Option D is wrong: Cross-zone load balancing distributes traffic across all enabled Availability Zones but does not fix routing to healthy targets. Option E is wrong: CloudWatch metrics can show anomalies but are not a primary diagnostic step for routing to healthy targets; they are more useful for monitoring after initial configuration.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • Confirm that the target instances are registered in the target group and are in the Available state.

    Why this is correct

    Unregistered or stopped instances will not receive traffic.

  • Check the security group rules on the target instances to ensure they allow traffic from the NLB's subnet.

    Why this is correct

    Security groups must allow health check traffic.

  • Verify that the health check settings on the NLB target group are correct (e.g., ping path, port, protocol).

    Why this is correct

    Incorrect health check settings can cause false unhealthy status.

  • Enable cross-zone load balancing on the NLB.

    Why it's wrong here

    Cross-zone load balancing does not fix health check issues.

  • Review the CloudWatch metrics for the NLB to see if there are any anomalies.

    Why it's wrong here

    CloudWatch metrics show symptoms but not root cause.

Visual reference

192.168.1.0 /24 256 addresses (254 usable) 192.168.1.0 /25 Subnet A 128 addr (126 usable) 192.168.1.128 /25 Subnet B 128 addr (126 usable) Borrowing 1 bit from host portion creates 2 subnets (/25)

About these practice questions

Courseiva writes every PAS-C01 question from scratch — 1,616 in total, each with an explanation and a wrong-answer breakdown. None are copied from real exams or dumps. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

Same concept, more angles

1 more way this is tested on PAS-C01

These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.

Variation 1. A company runs SAP on AWS and uses a Network Load Balancer (NLB) to distribute traffic to multiple EC2 instances. The Operations team needs to ensure that the NLB only sends traffic to instances that are healthy. Which health check configuration is appropriate for TCP traffic?

medium
  • A.ICMP ping
  • B.TCP health check on the application port
  • C.HTTP health check on port 80
  • D.HTTPS health check on port 443

Why B: The correct health check for a Network Load Balancer (NLB) handling TCP traffic is a TCP health check on the application port (Option B). NLB supports TCP, HTTP, HTTPS, and TLS health checks, but for raw TCP traffic, a TCP health check directly verifies that the target port is open and responding, which is efficient and appropriate. Option A (ICMP ping) is incorrect because NLB does not support ICMP health checks. Options C and D (HTTP/HTTPS on ports 80/443) are unnecessary for TCP traffic and require the target to run an HTTP server, which may not be the case for all TCP applications.

JA

Written by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

This PAS-C01 practice question is part of Courseiva's free Amazon Web Services certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the PAS-C01 exam.