diff options
Diffstat (limited to 'etc/namedb/named.conf')
-rw-r--r-- | etc/namedb/named.conf | 20 |
1 files changed, 3 insertions, 17 deletions
diff --git a/etc/namedb/named.conf b/etc/namedb/named.conf index ee22c00eca400..31bb0753a87ed 100644 --- a/etc/namedb/named.conf +++ b/etc/namedb/named.conf @@ -1,4 +1,4 @@ -// $Id: named.conf,v 1.4 1998/12/02 19:59:24 dillon Exp $ +// $Id: named.conf,v 1.1 1998/05/07 23:42:33 ache Exp $ // // Refer to the named(8) man page for details. If you are ever going // to setup a primary server, make sure you've understood the hairy @@ -31,12 +31,6 @@ options { * port by default. */ // query-source address * port 53; - - /* - * If running in a sandbox, you may have to specify a different - * location for the dumpfile. - */ - // dump-file "s/named_dump.db"; }; // Note: the following will be supported in a future release. @@ -83,19 +77,11 @@ zone "0.0.127.IN-ADDR.ARPA" { // // NB: Don't blindly enable the examples below. :-) Use actual names // and addresses instead. -// -// NOTE!!! FreeBSD runs bind in a sandbox (see named_flags in rc.conf). -// The directory containing the secondary zones must be write accessible -// to bind. The following sequence is suggested: -// -// mkdir /etc/namedb/s -// chown bind.bind /etc/namedb/s -// chmod 750 /etc/namedb/s /* zone "domain.com" { type slave; - file "s/domain.com.bak"; + file "domain.com.bak"; masters { 192.168.1.1; }; @@ -103,7 +89,7 @@ zone "domain.com" { zone "0.168.192.in-addr.arpa" { type slave; - file "s/0.168.192.in-addr.arpa.bak"; + file "0.168.192.in-addr.arpa.bak"; masters { 192.168.1.1; }; |