Networking Flashcards

1
Q

VPC

A

Virtual Private Cloud is basically a part of the cloud that you reserve for your resources only and control in/out access to it.

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

Virtual Private Gateway

A

Use when you want to keep the network private and only allow approved inbound traffic. It basically allows protected internet traffic to enter into the VPC.

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

Internet Gateway

A

Is attached to the VPC and allows public traffic from the internet to access your VPC.

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

AWS Direct Connect

A

Dedicate private connection between your data center and your AWS VPC.

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

Subnets

A

Logically isolated parts inside a VPC where you create resources such as EC2 Instances and databases.
Two types: Public Subnet and Private Subnet.
Public Subnet can connect to the internet, private doesn’t.

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

NACL

A

Checks traffic coming in and going out of the Subnets.
Network Access Control List controls access into and outside of Subnets.
Whatever enters doesn’t necessarily goes outside.

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

Secutiry Group

A

Suppose an NACL passes a packet to enter the subnet but that doesn’t mean it can go to all the EC2 instances in that subnet. Here comes the Security Group.
By default, Security groups doesn’t allow any traffic. All ports are blocked, all IP Addresses are blocked.
They check for incoming traffic but doesn’t check outgoing traffic.
They are stateful meaning if a packet left the security group and it comes back later, by default it is allowed inside because the security groups remembers it.

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