I am looking to redesign a mid size(corp) dns architecture and I have searched here and icann.org + google(of course) but I'm unable to find a best practice in regard to name server entries and zones/child nodes.
So here we go, say we have 10+ dns servers:
then we have say happy.example.com
and then we have:
A Records
- ns1.happy.example.com 222.222.222.222
- ns2.happy.example.com 333.333.333.333
- ns3.happy.example.com 444.444.444.444
- NS Records
- happy.example.com ns1.happy.example.com
- happy.example.com ns2.happy.example.com
- happy.example.com ns3.happy.example.com
THEN we have sad.example.com:
- A Records
- ns1.sad.example.com 222.222.222.222
- ns2.sad.example.com 333.333.333.333
- ns3.sad.example.com 444.444.444.444
- NS Records
- sad.example.com ns1.sad.example.com
- sad.example.com ns2.sad.example.com
- sad.example.com ns3.sad.example.com
My question is there any advantage to this?
Would it not be better to just do:
- A Record
- ns1.example.com 222.222.222.222
- ns2.example.com 333.333.333.333
- ns3.example.com 444.444.444.444
Then do:
- NS Records
- happy.example.com ns1.example.com
- happy.example.com ns2.example.com
- happy.example.com ns3.example.com
- sad.example.com ns1.example.com
- sad.example.com ns2.example.com
- sad.example.com ns3.example.com