What prevents Route 53 public and private same hosting addresses from colliding?

0

Using route53, some addresses are accessed only internally and others are accessed publicly.

Both are configured with the same hosting name, only the subdomains are configured differently. Then one domain was not connected.

Is there any way to solve this problem?

joker
已提问 2 年前216 查看次数
1 回答
0
已接受的回答

Route53 prioritizes private hosted zone over public hosted zone if the domain name is exactly "same". For ex) VPC A has private hosted zone associated with it for "abc.com" and there is actually a public hosted zone "abc.com". Any record lookup under abc.com from the VPC will go to private hosted zone and if the record is not present you would get a NXDomain (it will not search the public hosted zone)

When you see that there are two sub-domains, one being resolved internally and one publicly the scenario would be as follows:

  • VPC A has private hosted zone for "internal.abc.com" and there is a public hosted zone for "abc.com". --> If you lookup for anything under internal.abc.com, for ex, "talk.internal.abc.com" the answer is from the private hosted zone. (If record is not present it will not fall back to public hosted zone) --> If you lookup for anything else under "abc.com" for ex, "dd.abc.com" , the request would be sent to the public hosted zone.

In this scenario, there is no exact match so we choose the longest match for resolution and hence longest match for "talk.internal.abc.com" is "internal.abc.com" (Private hosted zone) and not "abc.com" (public hosted zone). However for ""dd.abc.com" the longest prefix match will be "abc.com"(public hosted zone).

profile pictureAWS
GG
已回答 2 年前
profile picture
专家
已审核 6 个月前
  • I didn't explain in detail, so it's not the answer I was looking for, but thank you for the explanation.

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则