From owner-freebsd-current@FreeBSD.ORG Thu Sep 16 20:00:46 2004 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 914DD16A4CF for ; Thu, 16 Sep 2004 20:00:46 +0000 (GMT) Received: from energistic.com (mail.virtual-voodoo.com [65.204.79.152]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6188343D2F for ; Thu, 16 Sep 2004 20:00:13 +0000 (GMT) (envelope-from steve@energistic.com) Received: from energistic.com (steve@localhost.virtual-voodoo.com [127.0.0.1]) by energistic.com (8.13.1/8.13.1) with ESMTP id i8GJxWsW008031; Thu, 16 Sep 2004 14:59:32 -0500 (EST) (envelope-from steve@energistic.com) Received: (from steve@localhost) by energistic.com (8.13.1/8.13.1/Submit) id i8GJxTNX007661; Thu, 16 Sep 2004 14:59:29 -0500 (EST) (envelope-from steve) Date: Thu, 16 Sep 2004 14:59:29 -0500 From: Steve Ames To: Gordon Bergling Message-ID: <20040916195929.GA42386@energistic.com> References: <4149AD1B.1050902@samsco.org> <20040916172134.GA1043@nemesis.md.0xfce3.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040916172134.GA1043@nemesis.md.0xfce3.net> User-Agent: Mutt/1.5.6i X-Spam-Status: No, hits=-7.3 required=5.0 tests=AWL,BAYES_00, MANY_EXCLAMATIONS,USER_IN_WHITELIST_TO autolearn=no version=2.64 X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on energistic.com cc: freebsd-current@freebsd.org Subject: Re: HEADS UP! BIND 9.2.3 coming soon! X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Sep 2004 20:00:46 -0000 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