What is a VPC?
A Virtual Private Cloud, an isolated virtual network in AWS where you can launch resources (EC2, RDS, etc.). Each account comes with a default VPC.
What’s the difference between default and non-default VPC?
Default VPC comes preconfigured with subnets, route tables, and an internet gateway. A non-default VPC is created manually and fully customizable.
What is a subnet?
A subdivision of a VPC IP range (CIDR). Defines a smaller network segment where resources live. Can be public, private, or VPN-only depending on route table entries.
How do you decide if a subnet is public or private?
If the subnet’s route table has an entry to an Internet Gateway (IGW) → public. If no IGW but has a Virtual Private Gateway (VPG) → VPN-only. If neither → private.
What is a route table?
A set of rules (routes) that define how traffic is directed within a VPC. Every subnet must be associated with one.
What is an Internet Gateway (IGW)?
A VPC component that allows communication between instances in the VPC and the internet. Also translates private IPs to public IPs (NAT).
What is a NAT Gateway?
A managed AWS service that allows private subnets to initiate outbound connections to the internet (e.g., for updates), but prevents inbound connections.
What is an Egress-only Internet Gateway?
Similar to NAT Gateway, but used for IPv6 traffic only.
What is a Security Group (SG)?
A stateful firewall at the instance level. Works as an allow list only. Return traffic is automatically allowed.
What is a Network ACL (NACL)?
A stateless firewall at the subnet level. Evaluates inbound and outbound rules separately. Allows both allow and deny rules.
Key difference SG vs NACL?
SG = instance-level, stateful, allow-only rules. NACL = subnet-level, stateless, allow & deny rules.
What is a VPC Peering?
A connection between two VPCs allowing traffic via private IPs. Not transitive (A-B and B-C doesn’t mean A-C). Max ~1.25–1.5 Gbps.
What is an AWS Transit Gateway?
A scalable hub-and-spoke service that connects multiple VPCs and on-prem networks. Simplifies networking (no need for full-mesh peering).
What is a VPC Endpoint?
A private connection from your VPC to AWS services (like S3, DynamoDB) without using the internet. Uses Elastic Network Interfaces.
What is PrivateLink?
An extension of endpoints that lets you privately connect your VPC to third-party services or other AWS accounts through their load balancers.
What is Route 53?
AWS’s scalable, highly available DNS service. Translates domain names into IPs and performs health checks for endpoints.
What is CloudFront?
AWS’s Content Delivery Network (CDN). Distributes content via edge locations worldwide for low latency. Integrated with WAF & Shield.
What is Global Accelerator?
Provides two static IPs that route traffic through AWS’s global network to the closest healthy endpoint. Improves latency & failover across regions.
Difference Route 53 vs Global Accelerator?
Route 53 = DNS-based traffic routing (decision at resolution time). Global Accelerator = network-level routing using static IPs and AWS backbone.
What is a Site-to-Site VPN?
A managed VPN that connects on-premises networks (Customer Gateway) to AWS (Virtual Private Gateway) over the public internet. Max ~1.25 Gbps.
What is a Client VPN?
A managed VPN for individual remote users (teleworkers) to securely connect to AWS or on-prem networks.
What is Direct Connect?
A private, dedicated connection between your data center and AWS via a colocation facility. Bandwidth up to 10/50/100 Gbps. Lower latency, higher reliability.
Key difference: VPN vs Direct Connect?
VPN = quick, cheap, internet-based, ~1.25 Gbps. Direct Connect = private, high bandwidth (up to 100 Gbps), stable, ideal for hybrid/enterprise workloads.
rango de IP privadas que AWS asigna como default VPC?
172.31.0.0/16