Index: [Article Count Order] [Thread]

Date:  Wed, 7 Oct 2009 08:09:38 -0500
From:  "Gerald Waugh" <gwaugh (at mark) frontstreetnetworks.com>
Subject:  [coba-e:16077] Re: Copy Secondary DNS to different BQ machine
To:  <coba-e (at mark) bluequartz.org>
Message-Id:  <BFB1CAEB4B8B4A99A8CEA0848CDE349E@raqware>
References:  <4ACC8EA3.31500.F2E622F@localhost>
X-Mail-Count: 16077

> I'm putting another backup DNS server online.
> 
> I need to copy all the records off one BQ machine onto this.
> 
> The donor machine only acts as a secondary DNS - so I'm going to 
> have to copy the secondary DNS records to the new box.
> 
> I've done this before, but a long time ago and connot remember how!
> 
> Anyone?
> 
If the secondary is BQ/BO use the GUI to setup secondary
"Edit Secondary Services"
Set up the primary to use the secondary in the DNS GUI
Add secondary to SOA records for the domains.
Else
You need modified named.conf files.
naybe in  /etc/bind/named.conf.local  (this is on my debian system)

zone "domain.tld"
{
  type slave;
  file "sec.domain.tld";
  masters
  {
    111.222.333.444;
  };
};

Set up the primary to use the secondary in the DNS GUI
Add secondary to SOA records for the domains.

When you have the conf file fixed reload/restart named
And the secondary will pull the records from the primary

Gerald