Tutorial / Cram Notes

Accessing custom services within a cloud environment securely and efficiently is a common requirement for organizations leveraging AWS infrastructure. AWS offers various networking services and features that enable both private and public access to these custom services, two notable methods being AWS PrivateLink and VPC peering.

AWS PrivateLink

AWS PrivateLink is a service that enables you to expose your services privately within the AWS network.

Features of AWS PrivateLink:

  • Security: Traffic between your VPC and the service does not leave the AWS network, thereby reducing exposure to threat vectors such as DDoS attacks or sniffing.
  • Scalability: Because it uses the AWS network, it automatically scales with the network traffic, helping to ensure that the service can handle large, sudden loads.
  • Simplicity: Services can be exposed as endpoints in your VPC, which appear as ENIs (Elastic Network Interfaces) with private IPs.
  • Availability: Deployed within the highly available and redundant AWS infrastructure, it increases the reliability of access to your service.

Use Case Example: You might use AWS PrivateLink to privately connect to a third-party SaaS application from your VPC without exposing the data to the public internet.

VPC Peering

VPC peering is a networking connection between two VPCs that enables you to route traffic between them using private IP addresses.

Features of VPC Peering:

  • Private Connectivity: Instances in either VPC can communicate with each other as if they were within the same network.
  • Segmentation: Even though VPCs are connected, they remain separate entities and can have their own security groups, NACLs (Network Access Control Lists), etc.
  • Transitive Peering: VPC peering connections are not transitive, meaning you have to create a direct peering relationship between each pair of VPCs that need to communicate.

Use Case Example: For a company that manages separate VPCs for development and production, VPC peering offers a way to seamlessly connect these environments for back-end data sharing and management tasks, without exposure to the public.

Comparison of AWS PrivateLink and VPC Peering

Feature AWS PrivateLink VPC Peering
Connection Type Service to VPC VPC to VPC
Access Private Private
Network Traffic Stays within AWS Stays within AWS
Scalability Scales with AWS network Manual scaling
Complexity Low, with endpoint management Low, but requires route management
Transitive Routing Not supported Not supported
Service Exposure Exposes specific services Full VPC-level access

Conclusion

Choosing the right access method depends on several factors, including the architecture of your AWS environment, the level of isolation and security required, as well as the ease of management desired. AWS PrivateLink is ideal for providing access to specific services, such as a microservice application or a SaaS product, especially when you want to avoid public internet exposure. VPC peering, on the other hand, is useful when you need a broader level of connectivity between entire VPCs, as long as they are within the same region or between supported regions.

Both PrivateLink and VPC peering provide secure, private connectivity options, and they can be used independently or in conjunction depending on the requirements of your particular AWS infrastructure setup. It’s always important to take into account the architecture of your systems, cost implications, and the complexities involved in managing these connections when choosing between these options.

Practice Test with Explanation

True or False: AWS PrivateLink allows private connectivity between VPCs, AWS services, and on-premises applications, without exposing the traffic to the public internet.

  • (A) True
  • (B) False

Answer: A

Explanation: AWS PrivateLink does indeed enable private connectivity between VPCs, AWS services, and on-premises applications without the need for the traffic to traverse the public internet.

Which statement correctly describes VPC peering?

  • (A) VPC peering does not support transitive peering relationships.
  • (B) VPC peering encrypts all traffic by default between peered VPCs.
  • (C) VPC peering allows for overlapping IP address spaces between VPCs.

Answer: A

Explanation: VPC peering does not support transitive peering relationships, meaning each VPC peering connection is between two VPCs only, and there is no automatic routing of traffic through a third VPC.

What is the maximum number of VPC peering connections that a single VPC can have?

  • (A) 50
  • (B) 100
  • (C) 125

Answer: B

Explanation: The maximum number of active and pending VPC peering connections that a single VPC can have is

Which AWS service can be used to enable DNS resolution for endpoints within a VPC?

  • (A) AWS Direct Connect
  • (B) AWS Route 53
  • (C) AWS PrivateLink

Answer: B

Explanation: AWS Route 53 can be used to enable DNS resolution for endpoints within a VPC.

True or False: AWS PrivateLink provides a private connection to services hosted on-premises, which are part of the AWS network.

  • (A) True
  • (B) False

Answer: B

Explanation: AWS PrivateLink is designed to connect services within the AWS network privately, not services that are hosted on-premises.

Which of the following are use cases for AWS PrivateLink? (Select two)

  • (A) Connecting your VPC to another AWS account’s VPC
  • (B) Providing your services to other AWS customers through Amazon VPC endpoints
  • (C) Broadcasting live streaming videos to the public internet

Answer: A, B

Explanation: AWS PrivateLink is used for connecting your VPC to another AWS account’s VPC and for providing your services to other AWS customers through Amazon VPC endpoints. Broadcasting live streaming videos relates to streaming services, not PrivateLink.

True or False: Traffic that flows between VPCs over a VPC peering connection remains on the global AWS backbone and does not go over the public internet.

  • (A) True
  • (B) False

Answer: A

Explanation: Traffic that flows over a VPC peering connection remains private and utilizes the AWS backbone network, not the public internet.

Which of the following AWS services facilitates the establishment of dedicated network connections from your premises to AWS?

  • (A) AWS VPN
  • (B) AWS Direct Connect
  • (C) AWS PrivateLink

Answer: B

Explanation: AWS Direct Connect allows for the establishment of dedicated network connections from your premises to AWS.

True or False: You can share multiple subnets to the same AWS RAM (Resource Access Manager) with the same AWS account or AWS Organizations member accounts using VPC peering.

  • (A) True
  • (B) False

Answer: B

Explanation: AWS RAM is not used for sharing subnets via VPC peering. VPC peering connects two VPCs together, while AWS RAM allows you to share AWS resources with any AWS account or within your organization in AWS Organizations.

True or False: AWS PrivateLink can be used to access Amazon S3 from a VPC without needing to use an internet gateway.

  • (A) True
  • (B) False

Answer: A

Explanation: AWS PrivateLink provides private connectivity to AWS services such as Amazon S3 without the need for an internet gateway.

Which of the following statements is true regarding public access to custom services in AWS?

  • (A) Amazon CloudFront must be used for all custom services to be publicly accessible.
  • (B) An Elastic IP address or a public IP address is required for a custom service in a VPC to be accessed over the internet.
  • (C) Public subnets within a VPC require a virtual private gateway for internet access.

Answer: B

Explanation: To make a custom service in a VPC publicly accessible over the internet, it must be hosted in a public subnet with an Elastic IP or a public IP address.

How does AWS Transit Gateway differ from VPC peering when it comes to scaling connectivity?

  • (A) AWS Transit Gateway is not designed for scaling connectivity.
  • (B) AWS Transit Gateway can support transitive routing for VPCs and on-premises networks.
  • (C) AWS Transit Gateway requires a separate connection for each VPC it connects.

Answer: B

Explanation: AWS Transit Gateway is designed to allow scaling of connectivity by supporting transitive routing for multiple VPCs and between VPCs and on-premises networks, unlike VPC peering that requires individual peering connections for each pair of VPCs.

Interview Questions

What are the key differences between AWS PrivateLink and VPC Peering?

AWS PrivateLink provides private connectivity between VPCs, AWS services, and on-premises applications, without exposing traffic to the public internet. It ensures traffic remains within the AWS network and enables service consumers to access services hosted across different accounts and VPCs securely. On the other hand, VPC Peering allows networking connectivity between two VPCs, enabling inter-VPC communication as if they are part of the same network, without using a gateway or VPN connection, though each VPC remains isolated and retains its own IP address space.

How does AWS PrivateLink enhance security compared to traditional AWS service endpoints?

AWS PrivateLink improves security by providing a private endpoint within a VPC for accessing AWS services, without needing to transit over the public internet. This minimizes the risk of internet-based attacks and ensures that data is not exposed to the public network. It facilitates secure, direct communication between your VPC and the service provider’s VPC.

Can you explain how VPC peering works across different regions?

VPC Peering can work across different AWS regions, known as Inter-Region VPC Peering. It allows VPCs in different regions to communicate with each other using private IP addresses, without requiring gateways, VPN connections, or separate physical hardware. Traffic between VPCs uses the private AWS global network backbone, ensuring security and performance.

What are the limitations of VPC Peering that one should be aware of?

Some limitations of VPC Peering include the lack of transitive peering, meaning a VPC can’t act as a pass-through to reach another peered VPC. Overlapping IP address ranges are not allowed between peered VPCs. Also, one cannot have more than one VPC peering connection between the same two VPCs, and the number of active and pending VPC peering connections you can have for each VPC is limited.

Which AWS service would you use to expose your custom services privately to clients in your VPC and why?

AWS PrivateLink is the recommended service for exposing custom services privately because it provides secure access by limiting network exposure and decreases the risk of data exfiltration by ensuring that traffic does not traverse the public internet, but stays within the AWS network.

What is the significance of a service consumer and a service provider in the context of AWS PrivateLink?

In AWS PrivateLink, a service consumer is the principal that connects to a service endpoint to utilize a service hosted by another AWS account, while a service provider is the principal that owns and operates the service which is being accessed through AWS PrivateLink. The service provider creates and manages a Network Load Balancer and an endpoint service, whereas the service consumer creates an interface VPC endpoint to connect to the service.

When setting up VPC Peering, what steps must you take to ensure proper network routing between the peered VPCs?

To ensure proper routing between the peered VPCs, you must create a peering connection and accept it from the other VPC. Then add routes to each VPC’s route tables that point to the IP address range of the peered VPC. Ensure that the security groups and network access control lists (NACLs) allow for the necessary traffic between the VPCs.

Can you restrict access to a service using AWS PrivateLink to specific VPCs or accounts?

Yes, AWS PrivateLink allows you to wh

0 0 votes
Article Rating
Subscribe
Notify of
guest
44 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Ellie Olson
5 months ago

Great blog post! Very helpful for my AWS networking studies.

Chloe Walker
6 months ago

Thank you, this clarified my doubts about PrivateLink.

Suzanna Clark
5 months ago

Can anyone explain the difference between VPC peering and Transit Gateway?

Kaća Novaković
5 months ago

I appreciate the details about VPC peering limitations.

Fernando Hicks
6 months ago

Good post but I think you should also cover AWS Direct Connect.

Joyce Byrd
5 months ago

How secure is AWS PrivateLink compared to VPC peering?

Rashmitha Kavser
6 months ago

Anyone used Transit Gateway and experienced performance issues?

Afşar Candan
5 months ago

Thanks! I understand VPC endpoint services much better now.

44
0
Would love your thoughts, please comment.x
()
x