1.07. VPC Routing, Internet Gateway & Bastion Hosts

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/15

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

16 Terms

1
New cards

What does the VPC router do?

Routes traffic between subnets and to/from external targets via route tables.

2
New cards

Is the VPC router highly available?

Yes, it's regionally resilient and present in all Availability Zones used by the VPC.

3
New cards

What IP does the VPC router use in each subnet?

The network+1 address (e.g., .1 in the subnet range).

4
New cards

What determines how traffic exits a subnet?

The route table associated with that subnet.

5
New cards

How many route tables can a subnet have?

One. But a route table can be associated with many subnets.

6
New cards

What is the "local" route in a VPC route table?

A default route to allow intra-VPC communication. It cannot be modified or deleted.

7
New cards

How is route priority determined?

By prefix length: the more specific (e.g., /32), the higher the priority.

8
New cards

What is the purpose of an internet gateway (IGW)?

To enable VPC resources with public IPs to access the internet and AWS public zone.

9
New cards

How many IGWs can be attached to a VPC?

Only one. A VPC can have either zero or one internet gateway.

10
New cards

Does an IGW need to be created per Availability Zone?

No, it is regionally resilient and covers all AZs in the VPC’s region.

11
New cards

What steps make a subnet public?

Attach IGW, route 0.0.0.0/0 to IGW, and enable auto-assign public IPv4.

12
New cards

Are public IPv4 addresses assigned to EC2 at OS level?

No. The IGW maps public IPs externally; EC2 OS only sees private IPs.

13
New cards

How does the IGW handle IPv4 packets?

It translates private source IPs to the public IP and vice versa on return.

14
New cards

Do EC2 instances see their IPv6 addresses?

Yes, IPv6 addresses are publicly routeable and visible on the OS.

15
New cards

What is a bastion host or jumpbox?

A public EC2 instance used to SSH into private VPC resources securely.

16
New cards

What is the main use case for a bastion host?

As the only entry point for managing private VPC resources.