From owner-freebsd-questions@FreeBSD.ORG Thu Mar 27 10:30:43 2003 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 2CB0337B401 for ; Thu, 27 Mar 2003 10:30:43 -0800 (PST) Received: from priv-edtnes62.telusplanet.net (outbound01.telus.net [199.185.220.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7334B43FD7 for ; Thu, 27 Mar 2003 10:30:42 -0800 (PST) (envelope-from mtntrip@telus.net) Received: from comp4.ici.net ([142.179.173.206]) by priv-edtnes62.telusplanet.netESMTP <20030327183042.MEBI15875.priv-edtnes62.telusplanet.net@comp4.ici.net> for ; Thu, 27 Mar 2003 11:30:42 -0700 Date: Thu, 27 Mar 2003 11:31:54 -0700 From: James Earl To: freebsd-questions@freebsd.org Message-ID: <20030327183154.GA622@comp4.ici.net> Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset=ISO-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit X-Mailer: Balsa 2.0.9 Lines: 33 X-Spam-Status: No, hits=-13.1 required=5.0 tests=AWL version=2.50 X-Spam-Level: X-Spam-Checker-Version: SpamAssassin 2.50 (1.173-2003-02-20-exp) Subject: Reverse DNS and single IP address space 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: Thu, 27 Mar 2003 18:30:44 -0000 I'm in the process of setting up primary and secondary name servers. This is my first time setting up named so I'm kinda a newbie in this area. My question is in regards to in-addr.arpa entries in named.conf and zone files. In the FreeBSD Handbook and alot of other resources, I've noticed how the ip address is reversed, with part of the address left off. For example: zone "0.168.192.in-addr.arpa" { type slave; file "s/0.168.192.in-addr.arpa.bak"; masters { 192.168.1.1; }; }; Now, what happens when I have only been allocated a single ip address from my ISP (well, actually two, one for the primary/master and one for the secondary/slave)? Would I set it up like this: zone "1.0.168.192.in-addr.arpa" { type slave; file "s/1.0.168.192.in-addr.arpa.bak"; masters { 192.168.1.1; }; }; Or, do I even need to worry about reverse DNS entries since my ISP already has them setup? Thanks.