From owner-freebsd-questions@FreeBSD.ORG Thu Jul 21 23:24:50 2005 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 1AB4C16A4A6 for ; Thu, 21 Jul 2005 23:24:50 +0000 (GMT) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (sigma.octantis.com.au [207.44.188.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5D0443E47 for ; Thu, 21 Jul 2005 23:24:12 +0000 (GMT) (envelope-from freebsd@meijome.net) Received: (qmail 27017 invoked from network); 22 Jul 2005 09:24:10 +1000 Received: from unknown (HELO ?192.168.13.3?) (202.59.110.3) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 22 Jul 2005 09:24:10 +1000 Message-ID: <42E02E95.50606@meijome.net> Date: Fri, 22 Jul 2005 09:24:05 +1000 From: Norberto Meijome User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <40356a66050720120219f6dd92@mail.gmail.com> <42DF4CAB.4070306@meijome.net> <200507211341.43061.kirk@strauser.com> In-Reply-To: <200507211341.43061.kirk@strauser.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: DNS service with a SQL backend 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: Thu, 21 Jul 2005 23:24:50 -0000 Kirk Strauser wrote: > On Thursday 21 July 2005 02:25, Daniel Marsh wrote: > > >>The only issue I foresee is having to have slightly different zone names >>that you wish to serve for each IP range. > > > Not true. Zone *files*, yes. Because of the wonderfulness that is NAT, my > LAN's nameserver gives different answers based on whether the query comes > from the LAN or the Internet. My named.conf looks similar to: > > view "private" { > match-clients { > !127.0.0.1; > !::1; > localhost; > "lan"; > }; right - but for a setup where u want to filter by country, setting up a different zone file for each country and keeping it up to date is far more complex than powerdns' solution. BUT it is definitely an option I'll keep in mind (periodically generating the zones based on the data from RIR) in case i need to use bind for other reasons. thanks!