I am currently experimenting with the dig
command because I am having issues with my newly registered domain.
When I execute dig @dns.dns1.de overminded.de
on one of my Debian servers, I am getting the following result:
; <<>> DiG 9.8.4-rpz2+rl005.12-P1 <<>> @dns.dns1.de overminded.de
; (2 servers found)
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 30506
;; flags: qr aa rd; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0
;; WARNING: recursion requested but not available
;; QUESTION SECTION:
;overminded.de. IN A
;; ANSWER SECTION:
overminded.de. 86400 IN A 92.222.252.3
;; Query time: 21 msec
;; SERVER: 2a02:2940:0:a0d1::246#53(2a02:2940:0:a0d1::246)
;; WHEN: Sat Feb 7 13:32:46 2015
;; MSG SIZE rcvd: 47
Everything seems fine here. We can see the A-Record being shown correctly. But when I do not specify a lookup-server (I used one of those shown as the authority servers in the command before), I get this output:
; <<>> DiG 9.8.4-rpz2+rl005.12-P1 <<>> overminded.de
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 64219
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0
;; QUESTION SECTION:
;overminded.de. IN A
;; AUTHORITY SECTION:
de. 1751 IN SOA f.nic.de. its.denic.de. 2015020745 7200 7200 3600000 7200
;; Query time: 0 msec
;; SERVER: 213.136.95.10#53(213.136.95.10)
;; WHEN: Sat Feb 7 13:32:39 2015
;; MSG SIZE rcvd: 83
As you can see, there is no ANSWER section there, and the status is also NXDOMAIN which means, afaik, that the domain is not yet registered.
For your information, I ordered the domain 2 days ago, and I am aware of having some waiting time until all DNS servers in the world know about my domain name. But I think 2 days are pretty long.
Do you have any ideas what might be the issue here? Any help is appreciated.