Unsure about domain adding.
I logged in to the DNS management and then clicked on the domain i want to add an A record for, then clicked "New A/AAA Record" and typed the domain name as the hostname and entered the IP i was given. When i click "Add", it shows up as "www" in the list of A records.
Is that correct? Am i doing something wrong?
Cheers,
xaez
4 Replies
$ dig dpn.name
; <<>> DiG 9.2.2 <<>> dpn.name
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 56026
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0
;; QUESTION SECTION:
;dpn.name. IN A
;; AUTHORITY SECTION:
dpn.name. 8143 IN SOA ns1.linode.com. davidnovakovic.gmail.com. 2007021706 7200 7200 1209600 86400
;; Query time: 47 msec
;; SERVER: 131.244.14.1#53(131.244.14.1)
;; WHEN: Sun Feb 18 11:11:05 2007
;; MSG SIZE rcvd: 97
;; QUESTION SECTION:
;dpn.name. IN A
;; ANSWER SECTION:
dpn.name. 86400 IN A 64.71.152.86
;; AUTHORITY SECTION:
dpn.name. 86400 IN NS ns2.linode.com.
dpn.name. 86400 IN NS ns1.linode.com.
;; ADDITIONAL SECTION:
ns1.linode.com. 3600 IN A 69.93.127.10
ns2.linode.com. 3600 IN A 65.19.178.10
;; Query time: 128 msec
;; SERVER: 67.18.92.7#53(67.18.92.7)
;; WHEN: Mon Feb 19 19:03:25 2007
You can use dig to check a specific name server instead of your usual ISP settings (which will likely be cached) to get the info directly from the source like so:
dig @ns1.linode.com dpn.name
Ta for the tip.