What does VPC stand for?
Virtual Private Cloud
What is the difference between a private and public subnet?
What are Route Tables used for?
To define access to the internet/between subnets
How does AWS provide subnets for you in a VPC?
How can a private subnet access the internet?
The private subnet connects to the public subnet via a NAT Gateway (AWS managed)/NAT instance (self managed), which can access the IGW.
How can a private subnet access the internet?
The private subnet connects to the public subnet via a NAT Gateway (AWS managed)/NAT instance (self managed), which can access the IGW.
What is a NACL?
Network ACL (Access Control List):
- A firewall which controls traffic from and to a subnet
- Can have ALLOW and DENY rules
- Attached at the subnet level
- Rules only include IP addresses
- Stateless (rules must be set for outbound traffic)
How are security groups used with VPC?
What is the VPC flow log?
Information about IP traffic going into your VPC
What is VPC Peering?
Connect two VPC, privately, using AWS’ network, allowing them to behave as if they were in the same network.
What is a requirement of VPC Peering?
What does it mean to say that VPC Peering is not transitive?
If A is connected to B, and B to C, that does not mean that A is connected to C.
What is a VPC Endpoint?
An endpoint allowing you to connect to AWS services using a private network instead of the public network
- This gives you enhanced security and lower latency to access AWS services
What is the difference between VPC Endpoint Gateway and VPC Endpoint Interface?
Gateway - S3 and Dynamo DB
Interface - The rest (e.g., cloudwatch).
What is Site to Site VPN?
What is Direct Connect (DX)?
What is the limitation with Site to site and DX with respect to VPC endpoints?
Site to Site VPN and DX cannot access VPC endpoints.
What is a subnet?
Tied to an AZ, it is a network partition of the VPC.