You are troubleshooting a web application deployed on Compute Engine instances behind a target pool. Users report intermittent timeouts when accessing the application via the forwarding rule's IP address. Based on the exhibit, what is the most likely cause of the issue?
Trap 1: The forwarding rule is missing a backend service.
Target pools do not use backend services.
Trap 2: The port range is set to 80-80, which restricts traffic to port 80…
Port 80 is correct for HTTP; this would not cause timeouts.
Trap 3: The forwarding rule should use a backend service instead of a…
Target pools can handle HTTP traffic, but health checks are still needed.
- A
The forwarding rule is missing a backend service.
Why wrong: Target pools do not use backend services.
- B
The target pool lacks health checks, causing traffic to be sent to unhealthy instances.
Target pools rely on health checks to stop routing to unhealthy instances; without them, traffic may be routed to failed instances.
- C
The port range is set to 80-80, which restricts traffic to port 80 only.
Why wrong: Port 80 is correct for HTTP; this would not cause timeouts.
- D
The forwarding rule should use a backend service instead of a target pool for HTTP traffic.
Why wrong: Target pools can handle HTTP traffic, but health checks are still needed.