miorey
miorey

Reputation: 946

Route 53 and S3 not working properly (transfered domain)

I have a website transferred from Gandi to AWS.
I create a bucket named www.develinside.com setup as website:

http://www.develinside.com.s3-website.eu-west-3.amazonaws.com/

When I call http://www.develinside.com/ I have a DNS_PROBE_FINISHED_NXDOMAIN.
The NS is the default one and I wait some days.

I also used dig as explained here. Everything seems to be ok but it is not working.

Here is my Route 53 setup I checked 3 times the S3 bucket

enter image description here

Upvotes: 0

Views: 249

Answers (1)

Chris Williams
Chris Williams

Reputation: 35176

The domain you've added does not appear to have any NS records when performing a DIG lookup, in fact it returns SERVFAIL which indicates an error in querying the name server.

The whois records indicates that it has its configured nameservers registered to the following (which I presume have no records):

  • Name Server: A.DNS.GANDI.NET
  • Name Server: B.DNS.GANDI.NET
  • Name Server: C.DNS.GANDI.NET

In the AWS Console, do the following to update this.

  • Access the Route 53 console.
  • Select Registered domains in the menu.
  • Click on your domain name
  • Click Add or edit name servers
  • Enter the Name Server values

Until this is done, none of your records will resolve. More information is available here.

Upvotes: 1

Related Questions