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.

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ