Pick a depth. Each prompt opens in your AI pre-loaded with the lesson. Click a row to preview the prompt.
Every VPC, subnet, and peering connection is a CIDR decision you can't easily undo. A /16 gives you 65k addresses but burns a private-IP block; a /24 gives you 254 hosts but caps your autoscaling group before you notice. Multi-cloud peering fails on day one if two clouds picked overlapping ranges.
Create non-overlapping VPC CIDRs across two clouds and verify the math.
ipcalc 10.0.0.0/22.# AWS VPC at 10.10.0.0/16 (65,536 addresses, 65,531 usable per subnet)
aws ec2 create-vpc --cidr-block 10.10.0.0/16 \
--tag-specifications 'ResourceType=vpc,Tags=[{Key=Name,Value=prod-aws}]'
# Subnet a /24 carve-out (256 addresses, 251 usable — AWS reserves 5)
aws ec2 create-subnet --vpc-id <vpc-id> \
--cidr-block 10.10.1.0/24 --availability-zone us-east-1a
# Verify no overlap with peer
aws ec2 describe-vpcs --query 'Vpcs[*].[VpcId,CidrBlock]' --output table