VPC Flashcards
What is a Virtual Private Cloud (VPC)?
An isolated section of the AWS cloud where you can launch AWS resources in a user defined virtual network
How many regions can a VPC span?
1
How many AZs does a VPC span?
VPCs span all of the AZs in the Region
How many VPC’s can you have per region?
5
How many subnets can a VPC contain?
“200
more can be requested through AWS”
What is created in default VPCs?
"A CIDR block size /16 A default subnet per AZ block size /20 An Internet Gateway A default security group A default NACL A default Route Table Default DHCP options *CIDR classless inter-domain routing"
What is a Default Everywhere IP?
“0.0.0.0/0
represents all possible IP addresses”
In VPCs what is the Internet Gateway (IGW) component?
“A VPC component used to allow a VPC access to the internet
creates a target in the VPC route tables for internet-routable traffic
performs NAT for instances assigned public IPv4 addresses
*NAT network address translation”
In VPCs what is the Routing Tables component?
A VPC component used to determine where network traffic is directed
What is the relationship between route tables and subnets?
“Each subnet in your VPC must be associated with a route table
A subnet can be associated with only one route table at a time
A route table can be associated with multiple subsets”
What is a Bastion / Jumpbox?
“An EC2 instance with hardened security, the only point that accepts SSH/RDP access from the internet, the only IP allowed to SSH/RDP into surrounding VPC components
Bastions/Jumpboxes must be located in a public subnet”
Bastion vs NAT
“NAT provides private subnets outbound access and denys inboud initiations from the internet
Bastions provide inbound access to private subnets”
What is a Subnet?
“A logical subdivision of an IP network
Subnets can be public or private”
What is AWS Direct Connect?
“An AWS solution for establishing dedicated network connections from on-premises locatoins to AWS
Offers a very fast and very consistant network
Low-end Bandwidth from 50-500M
High-end Bandwidth either 1GB or 10GB”
What is a NAT?
“Network Address Translation
A method of re-mapping one IP Address space into another
Use cases:
allowing private instances internet access
resolve network address conflicts”