Networking is the part of the Cloud Technology and Services domain that looks intimidating and turns out to be shallow. The CLF-C02 does not ask you to design a network or work with address ranges. It asks whether you know what the pieces are and what each one is for. A handful of terms, cleanly separated, cover almost every question.
The VPC and its subnets
An Amazon VPC is your own isolated virtual network inside AWS. Everything else here lives in it. A VPC belongs to one Region, and inside it you create subnets, each of which sits in one Availability Zone. That scoping matters: because a subnet is tied to a single AZ, spreading your subnets across multiple AZs is how you make an application survive the loss of one.
A subnet is public or private based on one thing only: whether it has a route to an internet gateway. A public subnet has that route; a private subnet does not. Nothing about pricing, size or contents changes that definition — it is entirely about the route.
The two firewalls, and why the exam loves them
There are two ways to filter traffic in a VPC, and the exam tests the difference constantly:
- A security group acts at the instance level and is stateful. You allow inbound traffic, and the return traffic is permitted automatically. Security groups only allow — there are no deny rules.
- A network ACL acts at the subnet level and is stateless. It evaluates inbound and outbound traffic independently, and it can both allow and deny.
Instance and stateful, or subnet and stateless. If you can say that sentence, you own this pairing.
Gateways: in, and out
Two gateways come up:
- An internet gateway connects the VPC to the public internet. Resources in a public subnet use it to reach and be reached.
- A NAT gateway lets instances in a private subnet reach the internet outbound only — for updates, say — while keeping them unreachable from outside. The classic scenario is “these servers need to download patches but must never be exposed,” and the answer is a NAT gateway, not an internet gateway.
How to use the questions below
Answer each one before opening the explanation, then read past the correct letter to why the other three fail. VPC distractors are all plausible network components dropped into the wrong role — an internet gateway where a NAT gateway belongs, a network ACL described as stateful. The exam is checking whether you can keep the pieces straight, and that is exactly what the reasoning below drills.
Updated for CLF-C02 (July 2026). The sample questions above are our own work
in the style of the exam — not real exam items. The exam itself is set and marked
by the certification body.