[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: migrating DNS server from NT to Linux.
- To: members@xxxxxxxxxxxxxxxxxx
- Subject: Re: migrating DNS server from NT to Linux.
- From: John Holland <john@xxxxxxxxx>
- Date: Thu, 04 Jan 2001 17:44:48 -0500
- In-Reply-To: <000901c07699$558f4360$d4f1da8d@homeip.net>
- References: <20001222161114.E27466@voyager.net><20001222163346.A28649@voyager.net><3A4409FB.4FD270C6@armintl.com><20001222223631.A29785@voyager.net><3A44224D.A089F9DF@armintl.com><20001223.11502500@estate1.whitemice.org><20001223111417.A31845@voyager.net><3A453449.E2BCBBE@armintl.com><20001225.15031500@estate1.whitemice.org>
Samir,
Don't take this as the best or the most direct way to do this, but this is
how I would attack the problem.
Create entries for each of the zones in named.conf as slaves:
zone "kazoocmh.org" {
type slave;
file "s/db.kazoocmh.org";
masters {
10.11.1.3;
};
allow-query { any; };
};
Obviously change the domain name, file path, and master DNS server ip
address. This will cause named to do a zone transfer of each of the
domains into their respective files.
Then change "slave" to "master" in named.conf.
(More directly, do a zone transfer using named-xfer for each of the 500
domains.)
Edit each of the domain config files, changing the NS and SOA records to
match the new nameserver.
ndc reload and named will now be acting as the primary DNS server for those
zones.
>I need to move my existing DNS server from NT 4.0 to Linux Red Hat 6.2.
>Are there any tools that would automate the process or do I have to do the
>whole thing manully. If I do it manually I dono how long it would take cause
>I have more than 500 zones on the NT's DNS server. Please leme know if there
>is any easier solution to this mess. Thankx and HAPPY NEW YEAR to all
>Kalamazoo Linux Users.