Date: Wed, 22 Sep 2004 22:48:26 +0300 From: Giorgos Keramidas <keramida@freebsd.org> To: freebsd-current@freebsd.org Subject: Getting (barely) started with bind9 Message-ID: <20040922194826.GB1137@gothmog.gr>
next in thread | raw e-mail | index | archive | help
For those of you tracking -CURRENT and upgrading *after* bind9 was connected to the build, here's a relatively minimal named.conf that will work for bind9. % options { % directory "/etc/namedb"; % pid-file "/var/run/named/pid"; % }; % % zone "." { type hint; file "named.root"; }; % zone "0.0.127.IN-ADDR.ARPA" { type master; file "master/127.0.0.rev"; }; % zone "foo.net" { type master; file "master/foo.net"; }; Make sure you update rc.conf to use -c config-file too if you were using the old bind8 option -b config-file. This should get you up and running until you get a chance to read the full list of bin9 options from the file `/usr/src/contrib/bind9/doc/misc/options'. Just my $0.02 to all the -CURRENT users ;-) - Giorgos
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20040922194826.GB1137>