Home > Software design >  What is the route for public access from within a private subnet given in this diagram-example provi
What is the route for public access from within a private subnet given in this diagram-example provi

Time:03-22

[cite] Amazon Virtual Cloud - Kindle Book, location 607

For this question, please note the boxed (red) text that indicates that instances from within the private subnet can send requests to the internet.

Q: Where is the route path for instances in the "private" subnet to get Internet access? Wouldn't it need its own gateway for that?

example page

CodePudding user response:

The instances in private subnet access the internet through NAT and then through Internet Gateway (IGW):

private instance ---> NAT ---> IGW ---> Internet
  • Related