1 Answer
- Newest
- Most votes
- Most comments
0
I finally found my problem.
Regarding the result of the reachability analyzer, we can see that the final destination is on the NAT gateway. The destination must be the Internet Gateway of the public network.
I had configured a single routing table for my environment and applied it to both the private and public networks which caused this error.
The solution should be as follows.
**Routing table of the public network **
| Destination | Target |
|---|---|
| <VPC Local CIDR> | local |
| 0.0.0.0/0 | internet-gateway-id |
Routing table of the private network
| Destination | Target |
|---|---|
| <VPC Local CIDR> | local |
| 0.0.0.0/0 | nat-gateway-id |
In the end, the reachability analyzer should indicate the destination as the Internet Gateway:
Regards,
answered 3 years ago
Relevant content
asked a year ago
asked 4 years ago
asked 3 years ago
