From owner-freebsd-questions@FreeBSD.ORG Tue Aug 10 08:14:05 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 356D916A4CE for ; Tue, 10 Aug 2004 08:14:05 +0000 (GMT) Received: from probsd.org (rrcs-midsouth-24-199-182-230.biz.rr.com [24.199.182.230]) by mx1.FreeBSD.org (Postfix) with ESMTP id E159243D46 for ; Tue, 10 Aug 2004 08:14:04 +0000 (GMT) (envelope-from ms@probsd.org) Received: from localhost (jail [192.168.1.4]) by probsd.org (Postfix) with ESMTP id 870D99D576; Tue, 10 Aug 2004 04:14:05 -0400 (EDT) Received: from probsd.org ([192.168.1.4]) by localhost (jail [192.168.1.4]) (amavisd-new, port 10024) with ESMTP id 37165-02; Tue, 10 Aug 2004 04:14:04 -0400 (EDT) Received: from probsd.org (jail [192.168.1.4]) by probsd.org (Postfix) with ESMTP id BC8859D493; Tue, 10 Aug 2004 04:14:03 -0400 (EDT) Received: from 192.168.1.1 (SquirrelMail authenticated user ms); by probsd.org with HTTP; Tue, 10 Aug 2004 04:14:03 -0400 (EDT) Message-ID: <2400.192.168.1.1.1092125643.squirrel@192.168.1.1> Date: Tue, 10 Aug 2004 04:14:03 -0400 (EDT) From: "Michael Sharp" To: jmlewis@dslextreme.com User-Agent: SquirrelMail/1.4.3 X-Mailer: SquirrelMail/1.4.3 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal X-Virus-Scanned: by amavisd-new at probsd.org - Isn't it ironic cc: freebsd-questions@freebsd.org Subject: re: Replacing Bind8x with Bind9 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 08:14:05 -0000 read the /usr/ports/dns/bind9 Makefile and use the 'PORT_REPLACES_BASE_BIND9' option to make. make PORT_REPLACES_BASE_BIND9=yes install clean In rc.conf ---------- named_enable="YES" named_program="/usr/local/sbin/named" named_flags="-c /usr/local/etc/namedb/named.conf -u bind" and you can also put NO_BIND= true in /etc/make.conf so that base BIND isn't build when you make world. Definetly consider chrooting or jailing BIND Michael