From owner-freebsd-questions@FreeBSD.ORG Fri Feb 11 12:26:36 2005 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 6E90616A4CE for ; Fri, 11 Feb 2005 12:26:36 +0000 (GMT) Received: from phenix.rootshell.be (phenix.rootshell.be [217.22.55.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F16A43D54 for ; Fri, 11 Feb 2005 12:26:36 +0000 (GMT) (envelope-from kilim@phenix.rootshell.be) Received: by phenix.rootshell.be (Postfix, from userid 58045) id 996C017993; Fri, 11 Feb 2005 13:26:34 +0100 (CET) Date: Fri, 11 Feb 2005 13:26:34 +0100 From: kilim To: freebsd-questions@freebsd.org Message-ID: <20050211122634.GA715@phenix.rootshell.be> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.1i Subject: First time DNS setup 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: Fri, 11 Feb 2005 12:26:36 -0000 Hello, I'm trying to set up my DNS server and before I go ahead I wanna ask you to tell me if my config is right. Thank you. This is my setup: FreeBSD 5.3 with Bind 9.3 My Static IP: 123.456.789.999 (example only, obviously) My domain name: really-cool-domain.com (example too) my named.conf: options { directory "/etc/namedb"; pid-file "/var/run/named/pid"; dump-file "/var/dump/named_dump.db"; statistics-file "/var/stats/named.stats"; version "None of your business"; listen-on { 127.0.0.1; 123.456.789.999 }; // is this ok ? forwarders { My_ISPs_DNS1; My_ISPs_DNS2; }; query-source address * port 53; }; zone "." { type hint; file "named.root"; }; // whats going on here below zone "0.0.127.IN-ADDR.ARPA" { type master; file "master/localhost.rev"; }; // IPv6 stuff omited ! zone "really-cool-domain.com" { type master; file "master/really-cool-domain.com"; }; Thank you !