public inbox for linux-newbie@vger.kernel.org
 help / color / mirror / Atom feed
From: Ray Olszewski <ray@comarre.com>
To: linux-newbie@vger.kernel.org
Subject: Re: Setting up DNS without domain
Date: Tue, 12 Aug 2003 15:59:51 -0700	[thread overview]
Message-ID: <5.1.0.14.1.20030812155116.030d0b88@celine> (raw)
In-Reply-To: <20030812223545.GA1046@linux>

At 12:35 AM 8/13/2003 +0200, Peter Edstrom wrote:
>Hello!
>
>Since the DNS's of my ISP is constantly going down, I want to set up my
>own using BIND (except if you have any other recommendations). The
>problem is that all howtos I've found is based around having a domain,
>which I don't. Is this a prerequisite of running a DNS, or can
>you use a bogus domain (like youareamunch.kinlloyd which probably isn't
>already in use) or perhaps just your IP?

No, you can run BIND (named) without your own domain, just to resolve 
offsite FQNs that your local hosts need to resolve. Just run it and provide 
only the file that identifies root server (on my Debian system, 
/etc/bind/db.root). You do this by configuring named.conf to provide only 
that db file (as a "hint"), probably something like this:

         // prime the server with knowledge of the root servers
         zone "." {
                         type hint;
                         file "/etc/bind/db.root";
         };

If you have a significant number of hosts on your LAN, you might want to 
make this instance of BIND locally (on-LAN only) authoritative for a dummy 
domain that the hosts can use to find each other. (That's what I do here, 
for example.) In that case, the stuff you've seen about using BIND with 
real (registered) domains should guide you.

>Another question: Do you recommend chrooting BIND?

I offer no recommendation, but I do not do so myself.



-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs

  reply	other threads:[~2003-08-12 22:59 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-08-12 22:35 Setting up DNS without domain Peter Edstrom
2003-08-12 22:59 ` Ray Olszewski [this message]
2003-08-12 23:07   ` Peter Edstrom
     [not found] ` <3F396E1C.6010401@wa5rrh.org>
2003-08-12 23:19   ` Peter Edstrom
2003-08-12 23:53     ` Jim Reimer
2003-08-12 23:42 ` James Turnbull
  -- strict thread matches above, loose matches on Subject: below --
2003-08-13 10:33 Peter Edstrom

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5.1.0.14.1.20030812155116.030d0b88@celine \
    --to=ray@comarre.com \
    --cc=linux-newbie@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox