-2

I have a domain called spdserver.com I can access its control panel using IP but using "spdserver.com" doesn't work. I thought it would be name server issue but I checked my Name.com account and everything is right.

Even when I check who.is to see if my IP and name servers are matching together. Did I forget anything? I want your help just to know if I should check anything else?

Jawa
  • 305
  • 7
  • 17

1 Answers1

1

It looks like your DNS entries are not complete. You do not have an A record with an IP address.

Currently, its:

$ dig spdserver.com

; <<>> DiG 9.4.1 <<>> spdserver.com
;; global options:  printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: SERVFAIL, id: 1125
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0
;; QUESTION SECTION:
;spdserver.com.                 IN      A

The "A" record should look something like this, where 10.1.1.1 is your >static< ip address. If you are using dynamic IP, you may need to play some games with crecords (CNAME)

 spdserver.com.                 IN      A  10.1.1.1

Once your DNS entries are updated, give it time to propogate this depends on TTL attributes in DNS.

user176514
  • 71
  • 2
  • 8