From owner-freebsd-current@FreeBSD.ORG Wed Sep 22 19:50:57 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 9DB6716A4CE for ; Wed, 22 Sep 2004 19:50:57 +0000 (GMT) Received: from nic.ach.sch.gr (nic.sch.gr [194.63.238.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9EBA543D31 for ; Wed, 22 Sep 2004 19:50:56 +0000 (GMT) (envelope-from keramida@freebsd.org) Received: (qmail 23980 invoked by uid 207); 22 Sep 2004 19:50:55 -0000 Received: from keramida@freebsd.org by nic by uid 201 with qmail-scanner-1.21 (sophie: 3.04/2.19/3.81. Clear:RC:1(81.186.70.217):. Processed in 0.5794 secs); 22 Sep 2004 19:50:55 -0000 Received: from dialup217.ach.sch.gr (HELO gothmog.gr) ([81.186.70.217]) (envelope-sender ) by nic.sch.gr (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 22 Sep 2004 19:50:54 -0000 Received: from gothmog.gr (gothmog [127.0.0.1]) by gothmog.gr (8.13.1/8.13.1) with ESMTP id i8MJmRFR001485 for ; Wed, 22 Sep 2004 22:48:27 +0300 (EEST) (envelope-from keramida@freebsd.org) Received: (from giorgos@localhost) by gothmog.gr (8.13.1/8.13.1/Submit) id i8MJmRVO001484 for freebsd-current@freebsd.org; Wed, 22 Sep 2004 22:48:27 +0300 (EEST) (envelope-from keramida@freebsd.org) Date: Wed, 22 Sep 2004 22:48:26 +0300 From: Giorgos Keramidas To: freebsd-current@freebsd.org Message-ID: <20040922194826.GB1137@gothmog.gr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Phone: +30-2610-312145 Mobile: +30-6944-116520 Subject: Getting (barely) started with bind9 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: Wed, 22 Sep 2004 19:50:57 -0000 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