How to create an A record without IP address. e.g.:

If i nslookup zen.spamhaus.org

output:

Server:  google-public-dns-a.google.com
Address:  8.8.8.8
Name:    zen.spamhaus.org

Here its not showing the IP address of zen.spamhaus.org

link|improve this question

42% accept rate
I'd think CNAME might be what you want. Unfortunately, your question is not clear. – Warner Jul 22 '10 at 5:20
feedback

closed as not a real question by MikeyB, John Gardeniers, sysadmin1138, Warner, Zypher Jul 22 '10 at 19:50

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

2 Answers

zen.spamhaus.org is a subdomain with no A record; there's a SOA and NS records for it, but no A record.

link|improve this answer
I've already tried to use only SOA and NS record but it did not work. – User4283 Jul 21 '10 at 20:41
2  
What exactly are you trying to accomplish?? – Chris S Jul 21 '10 at 20:51
feedback

When you use dig instead of nslookup you get some more information:

$ dig zen.spamhaus.org

; <<>> DiG 9.6.2-P2-RedHat-9.6.2-5.P2.fc12 <<>> zen.spamhaus.org
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 21906
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0

;; QUESTION SECTION:
;zen.spamhaus.org.      IN  A

;; AUTHORITY SECTION:
zen.spamhaus.org.   150 IN  SOA need.to.know.only.hostmaster.spamhaus.org. 1007212045 3600 600 432000 150

For more information on how to create such subdomains please see this HOWTO.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.