HEADS UP! BIND 9.2.3 coming soon!

Steve Ames steve at energistic.com
Thu Sep 16 13:00:46 PDT 2004


On Thu, Sep 16, 2004 at 07:21:34PM +0200, Gordon Bergling wrote:
> Thanks for doing this. :)
> 
> Are there any plans to choose a zone-file layout like it is in OpenBSD?
> On OpenBSD they store the zone-files in /var which separate folders for
> Master,Slave and standard.

? Don't you just put one of these in your named.conf:

options {
       directory "/var/namedb";
};

As for 'master','slave', etc... you can specify those directories directly
also:

zone "my-domain.net" {
       type master;
       file "master/my-domain.net";
};

would put this in the "master" subdirectory of the directory listed in
options.

The configuration file can also be stored in /var... just invoke 'named'
with the right command line:

named [-c conffile]

e.g. '/usr/sbin/named -c /var/named/named.conf'

Since BIND already handled all of this I'm not sure how this could be xBSD
specific?

-Steve


More information about the freebsd-current mailing list