Two questions from a dns newb:

  1. Is it possible for a subdomain to use a different set of nameservers than its parent domain?
    Eg: abc.ca uses ns.whatever.com and ns2.whatever.com, while sub.abc.ca uses ns.anything.com and ns2.anything.com

  2. If this is possible, what is the command to look this up? Would something as simple as this work?

dig ns sub.abc.ca
link|improve this question

correct syntax should be: dig sub.abc.ca NS – Armand Nov 20 '11 at 21:29
feedback

2 Answers

up vote 0 down vote accepted

To be on the safe side you should directly ask the authoritative servers at the parent domain about any NS records for the sub-domain.

% dig +norec @parent sub.example.com. ns

This ensures you'll get the current answer straight from the horses mouth, rather than whatever happens to be in your local recursive resolver's cache.

link|improve this answer
feedback

Yes, you're spot on. Other options include: host -t NS sub.abc.ca

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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