VPC Lab Flashcards
What resources get created automatically when you provision a VPC?
Default Route
Default NACL
Default Security Group
What does not get created when you provision a VPC?
Subnets
How many IP addresses from your subnet will be reserved by AWS?
5
Which IP addresses are reserved by AWS?
x. x.x.0 - 3
x. x.x.255
What is the x.x.x.0 IP address?
The network address
What is the x.x.x.1 IP address?
VPC router
What is the x.x.x.2 IP address?
DNS
What is the x.x.x.3 IP address?
Reserved for future use
What is the x.x.x.255 IP address?
Network broadcast address
True or false: Network broadcast is unsupported in AWS VPC?
True. This is why AWS reserves this IP address.
True or false, you can have as many Internet Gateways as you need in a VPC?
False. You are limited to one.
To what resource is a subnet attached?
The route table
Which route table is a subnet attached by default?
The default route table
True or false: It is best practice to allow your main route table internet access?
False. Since new subnets are automatically assigned to a route table, it is best to not associate an internet connection to it. Instead, use an alternate route table with internet access and explicitly add the subnet to it when it is ready.
To provide a VPC with internet access, what steps must be done?
- Create an internet gateway
- Create a route table (or modify an existing)
- Add a route from a specified CIDR to the specified internet gateway