AWS Networking Flashcards

1
Q

What is networking?

A

Networking is how you connect computers around the world and allow them to communicate with one another. In this trail, you’ve already seen a few examples of networking.

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

What is an IP Address?

A

An IP (Internet Protocol) address is a unique numerical label assigned to each device connected to a computer network that uses the Internet Protocol for communication.

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

What is CIDR?

A

CIDR (Classless Inter-Domain Routing) notation is a method for specifying IP addresses and their associated routing prefix. It is used to define IP address ranges more flexibly and efficiently than the traditional class-based IP addressing system. CIDR notation helps improve the allocation of IP addresses and supports more efficient routing.

192.168.1.0/24 means 8 bits are flexible (32 - 24)

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

What is a VPC?

A

A Virtual Private Cloud is an isolated network you create in the AWS cloud.

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

What 3 main things do you choose when you create a VPC?

A
  1. Name of your VPC
  2. A Region for your VPC to live in
  3. A IP range for your VPC in CIDR notation. This determines the size of your network.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

When creating a subnet, what should you consider?

A
  1. The VPC you want the subnet to live in
  2. The AZ you want your subnet to live in
  3. A CIDR block for your subnet
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

When you divide you VPC into segments, what is this called?

A

This is called a ‘Subnet’. Think of subnets as smaller networks inside your base network.

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

For High Availability in your VPC, what should you consider?

A

Create 2 subnets within each Availability Zone. 2 public and 2 private according to AWS documentation.

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

What is an ‘Internet Gateway’?

A

An internet gateway enables internet connectivity for your VPC. Just as a modem connects your computer to the internet, the internet gateway connects your VPC to the internet.

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

What is a Virtual Private Gateway?

A

A virtual private gateway allows you to connect your AWS VPC to another private network. The flow is on-premise to AWS.

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

When you create a ‘VPC’, another table is created. What is this called?

A

This is called the main route table.

A route table contains a set of rules, called routes, that are used to determine where network traffic is directed.

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

Two main parts to a route table?

A
  1. Destination: Which is a range of IP addresses where you want your traffic to go.
  2. Target: Which is the connection through which to send the traffic. A local VPC network as an example.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is a network ACL?

A

Think of a network ACL as a firewall at the subnet level. A network ACL enables you to control what kind of traffic is allowed to enter or leave your subnet.

The default network ACL allows all traffic in and all traffic out of your subnet.

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

What is a security group?

A

Firewalls that exist at the EC2 instance level.

Not option. Need to place EC2 instance inside a security group.

By default, blocks all inbound and allows all outbound.

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

How can you connect a remote data center to AWS?

A

AWS VPN

AWS Direct Connect

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