VPC Lab Flashcards

1
Q

What resources get created automatically when you provision a VPC?

A

Default Route
Default NACL
Default Security Group

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What does not get created when you provision a VPC?

A

Subnets

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How many IP addresses from your subnet will be reserved by AWS?

A

5

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Which IP addresses are reserved by AWS?

A

x. x.x.0 - 3

x. x.x.255

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the x.x.x.0 IP address?

A

The network address

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is the x.x.x.1 IP address?

A

VPC router

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is the x.x.x.2 IP address?

A

DNS

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the x.x.x.3 IP address?

A

Reserved for future use

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the x.x.x.255 IP address?

A

Network broadcast address

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

True or false: Network broadcast is unsupported in AWS VPC?

A

True. This is why AWS reserves this IP address.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

True or false, you can have as many Internet Gateways as you need in a VPC?

A

False. You are limited to one.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

To what resource is a subnet attached?

A

The route table

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Which route table is a subnet attached by default?

A

The default route table

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

True or false: It is best practice to allow your main route table internet access?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

To provide a VPC with internet access, what steps must be done?

A
  1. Create an internet gateway
  2. Create a route table (or modify an existing)
  3. Add a route from a specified CIDR to the specified internet gateway
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

True or false: When you create a route for IP4, a similar route is created for IP6

A

False. You must create an IP6 route as well.

17
Q

True or false: By default, custom subnets do not automatically assign IP addresses?

A

True. This must be enabled.

18
Q

True or false: Security groups do not span VPCs?

A

True, you must create new security groups for each VPC

19
Q

What is a VPC Endpoint?

A

A route that allows access to an AWS service (such as s3) over the private network.