<div dir="ltr">Also, instead of zone2sql, consider setting the new servers up from scratch as secondaries to your current production. And set it to AXFR all zones over. We ran into many issues with zone2sql and this worked better for us.<div><br></div><div>Not remembering specifics but it was the sanitization of the records as they came over as we had a bunch of really old records in zones (from the 90s).</div><div><br></div><div>In brief the method we used was:</div><div><br></div><div>* Create all zones as secondaries in pdns, with your bind as primary: pdnsutil create-secondary-zone <zone> <bind IP></div><div>* convert to native when ready: pdnsutil set-kind <zone> native</div><div><br></div><div>You could also do this in SQL. Don't blindly run these.</div><div>* INSERT INTO domains (name,type,master) VALUES ('<zone>', 'SLAVE', '<bind IP>');</div><div>* pdns_control rediscover</div><div>* UPDATE domains SET type='NATIVE' WHERE type='SLAVE' ;</div><br><div>--Chris</div><div><br></div></div>