From owner-freebsd-questions@FreeBSD.ORG Sun Mar 19 13:57:40 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 BB01F16A401 for ; Sun, 19 Mar 2006 13:57:40 +0000 (UTC) (envelope-from cswiger@mac.com) Received: from pi.codefab.com (pi.codefab.com [199.103.21.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5799043D45 for ; Sun, 19 Mar 2006 13:57:40 +0000 (GMT) (envelope-from cswiger@mac.com) Received: from localhost (localhost [127.0.0.1]) by pi.codefab.com (Postfix) with ESMTP id B4D9F5EFD; Sun, 19 Mar 2006 08:57:39 -0500 (EST) Received: from pi.codefab.com ([127.0.0.1]) by localhost (pi.codefab.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 86007-02; Sun, 19 Mar 2006 08:57:38 -0500 (EST) Received: from [192.168.1.3] (pool-68-160-194-11.ny325.east.verizon.net [68.160.194.11]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by pi.codefab.com (Postfix) with ESMTP id 934E45CB5; Sun, 19 Mar 2006 08:57:38 -0500 (EST) Message-ID: <441D6355.6080100@mac.com> Date: Sun, 19 Mar 2006 08:57:41 -0500 From: Chuck Swiger Organization: The Courts of Chaos User-Agent: Thunderbird 1.5 (Windows/20051201) MIME-Version: 1.0 To: David Ulrich References: In-Reply-To: X-Enigmail-Version: 0.94.0.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: amavisd-new at codefab.com Cc: freebsd-questions@freebsd.org Subject: Re: Nat, dhcpd and ipfw X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Mar 2006 13:57:40 -0000 David Ulrich wrote: [ ... ] > ############### rc.conf ############### > # -- sysinstall generated deltas -- # Wed Mar 15 14:08:02 2006 > # Created: Wed Mar 15 14:08:02 2006 > # Enable network daemons for user convenience. > # Please make all changes to this file, not to /etc/defaults/rc.conf. > # This file now contains just the overrides from /etc/defaults/rc.conf. > gateway_enable="YES" > > natd_enable="YES" > natd_interface="re0" > natd_flags="-s -u -m" > ifconfig_re0="DHCP" > dhcpd_enable="YES" > dhcpd_iface="vr0" > dhcpd_flags="vr0" > keymap="swissfrench.iso.acc" > nfs_server_enable="YES" > rpcbind_enable="YES" > saver="fire" > scrnmap="NO" > sshd_enable="YES" > usbd_enable="YES" > mysql_enable="YES" > apache_enable="YES" > firewall_enable="YES" > firewall_logging_enable="YES" > firewall_type="open" > hostname="Beastie.aspirine.li" > ifconfig_vr0="inet 10.192.168.5 netmask 255.255.255.0" > [ ... ] > subnet 10.192.168.0 netmask 255.255.255.0 { > range 10.192.168.1 10.192.168.4; > option domain-name "aspirine.li"; > option domain-name-servers 10.192.168.5; > > default-lease-time 600; > max-lease-time 7200; > option routers 10.192.168.5; > option broadcast-address 10.192.168.255; > } You need to put named_enable="YES" into /etc/rc.conf and get your nameserver working on .5, put another working nameserver into your DHCP config, or both. -- -Chuck