Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 18 Nov 1998 08:32:20 -0500 (EST)
From:      mike@seidata.com
To:        john cooper <john@isi.co.jp>
Cc:        Kurt@pinboard.com, freebsd-net@FreeBSD.ORG
Subject:   Re: BIND 8 ?
Message-ID:  <Pine.BSF.4.05.9811180813300.1248-100000@ns1.seidata.com>
In-Reply-To: <98Nov18.185634jst.21897@ns.isi.co.jp>

next in thread | previous in thread | raw e-mail | index | archive | help
On Wed, 18 Nov 1998, john cooper wrote:

> Ok, I'm sold on the dual DNS bind 8 approach.  Unfortunately
> I can't seem to find any comprehensive documentation on the
> [apparent] new configuration file formats in general, nor on

Maybe this will help,

zone "xxx.xxx.xxx.IN-ADDR.ARPA" {
        type master;
        file "db.xxx.xxx.xxx";
};

zone "domain.com" {
        type slave;
        file "virtuals/db.domain.com";
        masters { xxx.xxx.xxx.xxx; };
};

> how to make a single server feed solely off one network interface.

I believe you're looking for listen-on,

listen-on { xxx.xxx.xxx.xxx; };

Put that in your options {}; block (I.e. listen-on { 10.0.0.1; };
would cause the server to only 'hear' DNS requests on the interface
with the 10.0.0.1 IP (no matter how many interfaces are present in the
server)).

> I have rummaged through www.isc.org without finding what I need.

Lots of documentation is there, it just requires more effort than it
used to (a bad thing for sysadmins, where laziness is a virtue ;).  If
you download the documentation (bind-8.1.2-doc.tar.gz, goto the 'BIND
8.1.2 Documentation' link from http://www.isc.org/new-bind.html) and
gunzip|tar the sucker, you'll get HTML documentation, the BOG, etc. -
lots of useful info.

All of that used to be available online, I suppose they're trying to
reduce the load on their system(s).  *shrug*

Later,

	-mike


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-net" in the body of the message



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.BSF.4.05.9811180813300.1248-100000>