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

Quick Answer

The answer is to configure VPC Flow Logs in each account to deliver directly to a central S3 bucket using cross-account delivery. This approach is the most scalable and cost-effective because it avoids the additional data transfer and storage costs of intermediate services like CloudWatch Logs or Kinesis, while leveraging S3’s native lifecycle policies to manage log retention. On the AWS Certified Advanced Networking Specialty ANS-C01 exam, this scenario tests your understanding of cross-account log centralization without unnecessary hops—a common trap is assuming you must first send logs to CloudWatch Logs in each account, which incurs per-GB ingestion fees and export complexity. Remember that VPC Flow Logs support a destination ARN for a central S3 bucket directly, so no intermediate service is needed. A useful memory tip: “Direct to S3, no middleman fee”—if the goal is central storage, skip CloudWatch and go straight to the bucket.

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 runs a multi-account AWS environment using AWS Organizations. They need to centrally manage VPC flow logs across all accounts and enable analysis for security incidents. The flow logs must be stored in a central S3 bucket in the management account. What is the MOST scalable and cost-effective approach?

Question 1hardmultiple choice
Full question →

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

Configure VPC Flow Logs in each account to deliver to a central S3 bucket using cross-account delivery.

Option B is correct because sending flow logs to a central S3 bucket using cross-account delivery is scalable and cost-effective. Option A is incorrect because logging to CloudWatch Logs in each account and then exporting incurs additional costs and complexity. Option C is incorrect because VPC Flow Logs cannot be sent directly to a central S3 bucket from member accounts without enabling cross-account delivery. Option D is incorrect because VPC Flow Logs do not support Kinesis Data Firehose directly.

Key principle: NAT direction and interface roles matter as much as the IP address mapping. Inside/outside designation controls which traffic is translated.

Answer analysis

Option-by-option breakdown

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

  • Use a Lambda function in each account to copy flow logs from CloudWatch to a central S3 bucket.

    Why it's wrong here

    Lambda introduces complexity and potential for data loss.

  • Deliver flow logs to Kinesis Data Firehose in each account and then to a central S3 bucket.

    Why it's wrong here

    VPC Flow Logs cannot be delivered to Kinesis Data Firehose directly.

  • Configure VPC Flow Logs in each account to deliver to a central S3 bucket using cross-account delivery.

    Why this is correct

    Cross-account delivery to S3 is scalable and cost-effective.

    Related concept

    Static NAT maps one inside address to one outside address.

  • Create flow logs in each account and export them to a central CloudWatch Logs destination.

    Why it's wrong here

    Exporting from CloudWatch Logs is less efficient and more costly.

Common exam traps

Common exam trap: NAT rules depend on direction and matching traffic

NAT is not only about the public address. The inside/outside interface roles and the ACL or rule that matches traffic are just as important.

Detailed technical explanation

How to think about this question

NAT questions usually test address translation, overload/PAT behaviour, static mappings and whether the right traffic is being translated. Read the interface direction and address terms carefully.

KKey Concepts to Remember

  • Static NAT maps one inside address to one outside address.
  • PAT allows many inside hosts to share one public address using ports.
  • Inside local and inside global describe the private and translated addresses.
  • NAT ACLs identify traffic for translation, not always security filtering.

TExam Day Tips

  • Identify inside and outside interfaces first.
  • Check whether the scenario needs static NAT, dynamic NAT or PAT.
  • Do not confuse NAT matching ACLs with normal packet-filtering intent.

Key takeaway

NAT direction and interface roles matter as much as the IP address mapping. Inside/outside designation controls which traffic is translated.

Real-world example

How this comes up in practice

A startup's cloud architect reviews their monthly bill and notices costs are higher than expected for a long-running batch job. Switching from on-demand instances to Reserved Instances — or using Spot/Preemptible VMs — can reduce compute costs by up to 72 %. Questions like this test whether you understand the tradeoffs between commitment, flexibility, and cost across cloud pricing models.

What to study next

Got this wrong? Here's your next step.

Review the four NAT address types (inside local, inside global, outside local, outside global), PAT port overload, and static vs dynamic NAT use cases. Then practise related ANS-C01 NAT questions on configuration and troubleshooting.

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 — Static NAT maps one inside address to one outside address..

What is the correct answer to this question?

The correct answer is: Configure VPC Flow Logs in each account to deliver to a central S3 bucket using cross-account delivery. — Option B is correct because sending flow logs to a central S3 bucket using cross-account delivery is scalable and cost-effective. Option A is incorrect because logging to CloudWatch Logs in each account and then exporting incurs additional costs and complexity. Option C is incorrect because VPC Flow Logs cannot be sent directly to a central S3 bucket from member accounts without enabling cross-account delivery. Option D is incorrect because VPC Flow Logs do not support Kinesis Data Firehose directly.

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

Review the four NAT address types (inside local, inside global, outside local, outside global), PAT port overload, and static vs dynamic NAT use cases. Then practise related ANS-C01 NAT questions on configuration and troubleshooting.

What is the key concept behind this question?

Static NAT maps one inside address to one outside address.

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

4 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 multi-account AWS environment with hundreds of VPCs connected via a transit gateway. The network team needs to centrally monitor network traffic and detect anomalies such as unusual outbound data transfers. Which combination of services would provide the most scalable and cost-effective solution?

hard
  • A.Use AWS Trusted Advisor to check for unusual traffic patterns
  • B.Enable VPC Flow Logs in each VPC, publish to CloudWatch Logs, and create cross-account CloudWatch dashboards
  • C.Use AWS Network Manager to monitor all VPCs and Transit Gateway attachments
  • D.Enable VPC Flow Logs in each VPC, publish to Amazon S3, and use Amazon Athena to query logs from a central account

Why D: Option D is correct because VPC Flow Logs capture IP traffic metadata at scale, and publishing to Amazon S3 provides a cost-effective, durable storage layer. Using Amazon Athena to query the logs from a central account enables serverless, on-demand analysis across hundreds of VPCs without provisioning servers, making it both scalable and cost-effective for anomaly detection.

Variation 2. A company is designing a multi-account strategy using AWS Organizations. The security team wants to centrally manage VPC Flow Logs from all accounts. Which THREE steps are required to achieve this?

medium
  • A.Set up a VPN connection between the logging account and each member account.
  • B.Enable VPC Flow Logs in each account, specifying the central S3 bucket as the destination.
  • C.Create an S3 bucket in the central logging account with a bucket policy that grants write access to the member accounts.
  • D.Configure the central S3 bucket to use server-side encryption with AWS KMS (SSE-KMS).
  • E.Create a VPC peering connection between all accounts to allow log delivery.

Why B: To centralize flow logs, you need a central S3 bucket with appropriate permissions, enable flow logs in each account, and send them to the central bucket. The bucket policy must allow cross-account writes.

Variation 3. A company has a multi-account AWS environment using AWS Transit Gateway. The network team wants to centralize network logging from all accounts into a single account for analysis. Which combination of services should be used to achieve this?

hard
  • A.AWS CloudTrail and Amazon CloudWatch Logs
  • B.Amazon Kinesis Data Streams and Amazon Redshift
  • C.Amazon S3 and Amazon Athena
  • D.AWS Config and Amazon DynamoDB

Why C: Option D is correct because VPC Flow Logs can be published to a central S3 bucket using cross-account permissions, and then Amazon Athena can analyze the logs. Option A is wrong because CloudWatch Logs cross-account subscription is possible but not as straightforward for central analysis. Option B is wrong because Amazon Kinesis can stream data but requires additional setup. Option C is wrong because AWS Config records configuration changes, not network traffic.

Variation 4. A company has a multi-account AWS environment using AWS Transit Gateway with multiple VPC attachments. The network team wants to centralize logging of all network traffic crossing the Transit Gateway. Which TWO services can be used together to achieve this?

hard
  • A.VPC Flow Logs published to a central Amazon S3 bucket
  • B.AWS Site-to-Site VPN flow logs
  • C.AWS Direct Connect Gateway flow logs
  • D.AWS Transit Gateway Network Manager
  • E.AWS CloudTrail for Transit Gateway events

Why A: Option A is correct because VPC Flow Logs can be published to a central account. Option C is correct because Transit Gateway Network Manager can centralize flow logs. Option B is incorrect because CloudTrail does not capture network traffic. Option D is incorrect because Direct Connect is for on-premises connectivity. Option E is incorrect because VPN is a site-to-site connection, not a logging service.

Last reviewed: Jun 20, 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.