From owner-freebsd-questions@FreeBSD.ORG Mon May 26 12:44:49 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 3E49137B401 for ; Mon, 26 May 2003 12:44:49 -0700 (PDT) Received: from pop018.verizon.net (pop018pub.verizon.net [206.46.170.212]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C87E43F85 for ; Mon, 26 May 2003 12:44:48 -0700 (PDT) (envelope-from cswiger@mac.com) Received: from mac.com ([129.44.60.214]) by pop018.verizon.net (InterMail vM.5.01.05.33 201-253-122-126-133-20030313) with ESMTP id <20030526194447.EGXC11703.pop018.verizon.net@mac.com>; Mon, 26 May 2003 14:44:47 -0500 Message-ID: <3ED26EA6.9000107@mac.com> Date: Mon, 26 May 2003 15:44:38 -0400 From: Chuck Swiger Organization: The Courts of Chaos User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4b) Gecko/20030507 X-Accept-Language: en-us, en MIME-Version: 1.0 To: romero3000@romero3000.com References: <3105.192.168.1.7.1053976146.squirrel@mail.romero3000.com> In-Reply-To: <3105.192.168.1.7.1053976146.squirrel@mail.romero3000.com> X-Enigmail-Version: 0.75.0.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Authentication-Info: Submitted using SMTP AUTH at pop018.verizon.net from [129.44.60.214] at Mon, 26 May 2003 14:44:47 -0500 cc: freebsd-questions@freebsd.org Subject: Re: Active Directory DNS and BIND 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: Mon, 26 May 2003 19:44:49 -0000 romero3000@romero3000.com wrote: > running Bind on one location and Microsoft DNS server with Active > Direcotory integrated DNS zones at another location. Does anyone know if > it is possible to perform zone transfers to the FreeBSD server?? Yes, named-xfer under FreeBSD works fine. Also note that sufficiently modern versions of named will support the dynamic update protocol used by M$ clients. > Is it possible to perform zone transfers between an active directory enabled > DNS server to a unix DNS server??? Any ideas??? Add something like the following to named.conf zone "example.com" { type slave; file "example.com"; masters { _IP_of_M$_NS_ ; }; }; ...and configure the M$ box to permit zone transfers from the FreeBSD system. -Chuck