dckr9
dckr9

Reputation: 133

AWS Route-53 DNS Server IP Address

I'm using Route-53 as a DNS management service. I have a problem that I'm not really sure how to solve it. I've come here to seek ideas.

I have a partner who wants an IP address of the DNS server, so that they can integrate their on-prem DNS server, to what I'm using(Route-53). This is not possible as Route-53 doesn't give an IP address for accessing the DNS servers. This is because it's a managed service. How can I get IP address for the Route-53 DNS servers so that my integrating partner can use to integrate the DNS server from their end to mine(Route-53)?

I appreciate your advice.

Upvotes: 3

Views: 11594

Answers (2)

Erik Asplund
Erik Asplund

Reputation: 823

Taken from AWS docs:

10.0.0.2: Reserved by AWS. The IP address of the DNS server is the base of the VPC network range plus two. For VPCs with multiple CIDR blocks, the IP address of the DNS server is located in the primary CIDR. We also reserve the base of each subnet range plus two for all CIDR blocks in the VPC. For more information, see Amazon DNS server.

https://docs.aws.amazon.com/vpc/latest/userguide/VPC_Subnets.html

Upvotes: 3

JD D
JD D

Reputation: 8087

I'm assuming your hosted zone is private, as if it was public, your partner wouldn't need to do any special configuration (unless they don't allow querying public DNS in their network).

If this is a private DNS, I think what you want is to setup a Route 53 Resolver. Specifically, you would want an inbound endpoint setup in your VPC. This will give you a specific IP address that you can provide to your partner. If you haven't already, you'd then need to configure network routing between your VPC and your partner's network (via a tunnel or peering).

AWS has a couple user guides for this, see below:

Upvotes: 0

Related Questions