From owner-freebsd-isp Wed Oct 29 13:31:31 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id NAA16550 for isp-outgoing; Wed, 29 Oct 1997 13:31:31 -0800 (PST) (envelope-from owner-freebsd-isp) Received: from panda.hilink.com.au (panda.hilink.com.au [203.8.15.25]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id NAA16542 for ; Wed, 29 Oct 1997 13:31:25 -0800 (PST) (envelope-from danny@panda.hilink.com.au) Received: (from danny@localhost) by panda.hilink.com.au (8.8.5/8.8.5) id IAA19728; Thu, 30 Oct 1997 08:35:57 +1100 (EST) Date: Thu, 30 Oct 1997 08:35:57 +1100 (EST) From: "Daniel O'Callaghan" To: Marcin Pasek cc: freebsd Subject: Re: DNS next level.... In-Reply-To: <34574CCE.47DBB38@v-m.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-isp@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Wed, 29 Oct 1997, Marcin Pasek wrote: > HI, and thanks a lot for all the pointers that I got in setting up a > primary and secondary DNS server on my system.. > > there is one more thing that I need to setup. > Let say I have a xxxx.com domain set up on one DNS server and I make > one of the host UNIX so I have unix.xxx.com NOw here is my question > how do I setup my DNS so that all setting for unix.xxx.com are located > at a diffrent DNS server for that subdomain....so that I could setup > www.unix.xxx.com and also I could setup MX records and stuff.? You can just put everything in the one DNS as: unix IN A 1.2.3.4 www.unix IN A 1.2.3.5 Or you can delegate the unix subdomain unix IN NS dns1.unix.xxx.com. IN NS dns2.unix.xxx.com. ; glue dns1.unix IN A 1.2.3.4 dns2.unix IN A 1.2.3.5 You *MUST* include the glue records. Danny