Which CIDR block provides the largest number of usable IP addresses?
Smaller CIDR suffix means more IP addresses.
A /22 block has 1024 IP addresses, which is more than /24 (256), /26 (64), and /30 (4).
You have a VPC with CIDR block 192.168.0.0/16. You want to create subnets that each have 256 IP addresses. Which subnet CIDR block should you use?
Recall that a /24 subnet has 256 IP addresses.
A /24 subnet provides 256 IP addresses, matching the requirement exactly.
You have two VPCs peered together. VPC A uses 10.0.0.0/16 and VPC B uses 10.0.128.0/17. What issue will arise from this configuration?
Check if the IP ranges in the two CIDR blocks share any addresses.
10.0.128.0/17 covers 10.0.128.0 to 10.0.255.255, which is inside 10.0.0.0/16 range, causing overlap.
In an AWS subnet with CIDR block 10.0.1.0/24, how many IP addresses are available for your instances?
AWS reserves 5 IP addresses per subnet.
A /24 subnet has 256 IPs, but AWS reserves 5, leaving 251 usable IPs.
You need to design a VPC with CIDR block 172.31.0.0/16 across three Availability Zones (AZs). Each AZ requires two subnets: one public and one private, each with 4096 IP addresses. Which set of subnet CIDR blocks correctly meets these requirements without overlap?
A /20 subnet has 4096 IP addresses. Ensure subnets do not overlap and fit within /16.
Option D assigns non-overlapping /20 subnets spaced by 16.0 increments, each with 4096 IPs, fitting within 172.31.0.0/16.