Question 492 of 1,705
Network Management and OperationshardMultiple ChoiceObjective-mapped

Quick Answer

The answer is to check the NAT Gateway CloudWatch metrics for error packets and connection counts. This is correct because in a centralized egress VPC model, multiple VPCs funnel outbound traffic through a single NAT gateway, which can exhaust its 65,535 ephemeral ports per IP address. When port allocation fails, the `ErrorPortAllocation` metric spikes and `PacketsDropCount` rises, causing connectivity timeouts even when route tables and security groups are properly configured. On the AWS Certified Advanced Networking Specialty ANS-C01 exam, this scenario tests your understanding of NAT gateway scalability limits and CloudWatch monitoring as a diagnostic tool—a common trap is assuming the issue is always a routing or security group misconfiguration. Remember that NAT gateway port exhaustion is a silent killer in centralized egress designs, so always correlate timeout symptoms with `ErrorPortAllocation` and `ActiveConnectionCount` metrics. Memory tip: “Ports drop, packets stop—check the error count at the top.”

ANS-C01 Network Management and Operations Practice Question

This ANS-C01 practice question tests your understanding of network management and operations. The scenario asks you to isolate a root cause — eliminate options that address a different problem before choosing. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.

A company is using a centralized egress VPC model with a NAT gateway for outbound traffic from multiple VPCs. The network team notices that some EC2 instances are having connectivity timeouts when accessing the internet. The team has verified the route tables and security groups. Which additional check should be performed to troubleshoot the issue?

Question 1hardmultiple choice
Read the full NAT/PAT explanation →

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

Check the NAT gateway CloudWatch metrics for error packets and connection counts

Option D is correct because NAT Gateway CloudWatch metrics, specifically `ErrorPortAllocation` and `PacketsDropCount`, directly indicate whether the NAT Gateway is running out of available ports or dropping packets due to connection limits. In a centralized egress model with multiple VPCs, high connection counts can exhaust the NAT Gateway's ephemeral port capacity (65,535 per IP), causing connectivity timeouts even when route tables and security groups are correctly configured.

Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Answer analysis

Option-by-option breakdown

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

  • Check the security group rules for outbound traffic

    Why it's wrong here

    Security groups already verified.

  • Check the VPC Flow Logs for denied traffic

    Why it's wrong here

    Flow Logs show allowed/denied, but timeouts suggest resource issue.

  • Check the route tables for the internet gateway

    Why it's wrong here

    Route tables already verified.

  • Check the NAT gateway CloudWatch metrics for error packets and connection counts

    Why this is correct

    High connection counts or error packets indicate resource exhaustion.

    Related concept

    Read the scenario before looking for a memorised answer.

Common exam traps

Common exam trap: answer the scenario, not the keyword

AWS often tests the misconception that VPC Flow Logs or security group checks are sufficient for diagnosing NAT Gateway issues, when in fact the root cause is often port exhaustion or packet drops at the NAT Gateway itself, which requires CloudWatch metrics to identify.

Trap categories for this question

  • Command / output trap

    Flow Logs show allowed/denied, but timeouts suggest resource issue.

Detailed technical explanation

How to think about this question

NAT Gateways use Source Network Address Translation (SNAT) to map private IPs to the gateway's Elastic IP, with a default limit of 65,535 concurrent connections per IP (port range 1024-65535). When this limit is reached, new outbound connections are dropped, causing TCP SYN timeouts. CloudWatch metrics like `ActiveConnectionCount` and `PacketsDropCount` (specifically `IdleTimeoutCount` and `ConnectionAttemptCount`) are critical for diagnosing this, as they reveal port exhaustion or connection rate limits that route tables and security groups cannot detect.

KKey Concepts to Remember

  • Read the scenario before looking for a memorised answer.
  • Find the constraint that changes the correct option.
  • Eliminate answers that are true in general but not in this case.

TExam Day Tips

  • Watch for words such as best, first, most likely and least administrative effort.
  • Review why wrong options are wrong, not only why the correct option is correct.

Key takeaway

Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Real-world example

How this comes up in practice

A company's IT admin needs to give a contractor read-only access to production logs without sharing account credentials. Using role-based access control (RBAC) and temporary scoped permissions — not a permanent shared password — is the correct pattern. Questions like this test whether you can apply least-privilege access across cloud identity services.

What to study next

Got this wrong? Here's your next step.

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Related practice questions

Related ANS-C01 practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free ANS-C01 practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this ANS-C01 question test?

Network Management and Operations — This question tests Network Management and Operations — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: Check the NAT gateway CloudWatch metrics for error packets and connection counts — Option D is correct because NAT Gateway CloudWatch metrics, specifically `ErrorPortAllocation` and `PacketsDropCount`, directly indicate whether the NAT Gateway is running out of available ports or dropping packets due to connection limits. In a centralized egress model with multiple VPCs, high connection counts can exhaust the NAT Gateway's ephemeral port capacity (65,535 per IP), causing connectivity timeouts even when route tables and security groups are correctly configured.

What should I do if I get this ANS-C01 question wrong?

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

What is the key concept behind this question?

Read the scenario before looking for a memorised answer.

About these practice questions

Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

Same concept, more angles

2 more ways this is tested on ANS-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 has a VPC with a CIDR of 10.0.0.0/16. They have two subnets: 10.0.1.0/24 (public) and 10.0.2.0/24 (private). An EC2 instance in the private subnet needs to download patches from the internet. The team creates a NAT gateway in the public subnet and updates the private subnet route table to route 0.0.0.0/0 to the NAT gateway. The EC2 instance still cannot reach the internet. The team confirms the NAT gateway has an elastic IP and the public subnet has an internet gateway. What is the MOST likely cause?

easy
  • A.The private subnet route table does not have a route for the NAT gateway's IP.
  • B.The network ACL for the private subnet denies outbound traffic to the internet.
  • C.The public subnet does not have a route to the internet gateway.
  • D.The NAT gateway does not have source/destination check disabled.

Why B: The security group or network ACL of the private subnet may be blocking outbound traffic. However, a common mistake is not disabling source/destination check on the NAT gateway. But NAT gateway is a managed service, so source/destination check is automatically disabled. Option A is correct: the private subnet's network ACL must allow outbound traffic and inbound return traffic. Option B is not needed because NAT gateway is managed. Option C is not a requirement. Option D would be for the NAT gateway's subnet.

Variation 2. A company uses AWS CloudFormation to deploy a VPC with public and private subnets. The template includes an Internet Gateway and a NAT Gateway. After deployment, instances in the private subnet cannot access the internet. The network engineer checks the route tables and finds that the private subnet route table has a default route pointing to the NAT Gateway. What is the most likely cause of the issue?

hard
  • A.The NAT Gateway is deployed in the private subnet instead of the public subnet.
  • B.The security group attached to the NAT Gateway blocks outbound traffic.
  • C.The private subnet route table does not have a default route (0.0.0.0/0) to the NAT Gateway.
  • D.The NAT Gateway is in a private subnet and has no route to the internet gateway.

Why A: Option D is correct because the NAT Gateway must be in a public subnet with a route to the IGW. Option A is wrong because the route is present. Option B is wrong because security groups allow outbound traffic by default. Option C is wrong because the default route points to NAT Gateway, not IGW.

Keep practising

More ANS-C01 practice questions

Last reviewed: Jun 30, 2026

Question Discussion

Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.

Loading comments…

Sign in to join the discussion.

This ANS-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 ANS-C01 exam.