Networking Flashcards
What does VPC stand for?
Virtual Private Cloud
What does VPC do?
Establishes a boundary around your AWS resources
What is a subnet?
A subnet is a section of the VPC that you can use to group resources based on security or operational needs
Can subnets be public or private?
Yes
What is a packet?
A unit of data sent over the internet
Name 2 security mechanisms to control traffic?
Network ACLs
Security Groups
What is the difference between where Network ACLs and Security Groups operate?
Networks ACLs operate at the subnet level and Security Groups operate at the instance level
Are Network ACLs and Security Groups stateful or stateless?
Network ACLs are stateless (require rules for in and out traffic)
Security Groups are stateful (default deny all traffic in and out by default)
Default state for Security Group is …
Deny inbound traffic
Allow outbound traffic
Describe the order of components from client -> instance
client -> internet -> internet gateway -> cloud -> internet gateway -> vpc -> subnet with instances
AWS Direct Connect..
connection between your on-premises data center and a VPC
Give an example of a public subnet?
Online store
Give an example of a private subnet?
Database
What is the default for network ACL?
Allow all traffic in and out (but you can modify by adding your own rules)
Can you configure custom rules for network ACLs and security groups?
Yes