Networking Services Flashcards
What is VPC?
Virtual Private Cloud. It’s a foundational service that allows you to create a secure private network in the AWS cloud where you launch your resources.
What are the components of VPC?`
- AZ’s: it spans AZ’s within a region
- Subnet: allows you to split the network inside the VPC. Example: Private and Public. This is where you launch resources like EC2 instances.
- NACL: Network Access Control Lists: ensure the proper traffic is allowed into the subnet.
- Router and Route table: Defines where network traffic is routed.
- Internet Gateway: allows public traffic to the internet from a VPC
What allows you to connect 2 VPC’s together?
VPC Peering
What is DNS?
Domain Name System. It translates the friendly name (amazon.com) to the IP address(xx.xxx.xx.xx). SO it directs internet traffic.
What is Amazon Route 53?
A highly available DNS service that routes users to applications
What can Route 53 do?
- Register your Domain Name
- Health checks on AWS resources
- Connect hybrid clouds using DNS query resolution to
What is AWS Direct Connect?
- A dedicated physical network connection (super fast) to connect your on-premises data center to AWS
- Your data travels over a private (dedicated) network (unlike VPN which is public network)
- Totally circumvents the public cloud
When would you use Direct Connect in the real world?
- Large datasets that you need to xfer to AWS
- Business-critical data you need to xfer to AWS bypassing your service provider
- Hybrid model
What is AWS VPN?
- Site-to-Site VPN creates a secure connection between your internal networks and your AWS VPCs.
- Data goes over the public internet
- data is automatically encrypted
- slightly cheaper than Direct Connect
When would you use Site-to-Site in the real world?
- moving apps to the cloud
What is a virtual private gateway?
The VPN connector on the AWS side.
What is the customer gateway?
The VPN connector on the customer side
What is the API Gateway?
- Allows you to build and manage API’s.
- it integrates with services such as Lambda