Greetings,
While I've been doing this sort of thing for quite some time. I have to recognize, that doesn't mean I do it the best -- or even correct way.
So as I'm setting up DNS on another box, as an experiment to potentially replace BIND forever; I'm wondering how I might best resolve web resolution. I have no interest in creating a www host. I would like resolution as follows:
So given that ns0 is SOA
All attempts to visit domain.tld via the web, will probe ns0.
Would the following solve it effectively/correctly?
Thanks.
--chris
While I've been doing this sort of thing for quite some time. I have to recognize, that doesn't mean I do it the best -- or even correct way.

Code:
SERVER#1 (slave for domain.tld and hosts web access)
ns1.domain.tld
SERVER#2 (primary (authoritive) ns for domain.tld)
ns0.domain.tld
Code:
$ORIGIN domain.tld.
@ SOA ns0.domain.tld.
Would the following solve it effectively/correctly?
Code:
ns1 IN CNAME domain.tld.
Thanks.
--chris