Hi,
I'm trying to delegate a number of our domains to Azure DNS, but some fail due to a Name Server mismatch.
For example, the German Domain Registration authority denied the delegation of our domainprintvis.de
I've now re-created the complete zone for this domain, and the result now looks like this:
When I request the Name Servers for the domain printvis.de using "Get-AzureDnsRecordSet -Name'@' -RecordType 'NS' -ResourceGroupName 'SpeednamesDNS' -ZoneName 'printvis.de' | Select -ExpandProperty 'Records'" I get the following list:
Nsdname
-------
ns1-07.azure-dns.com
ns2-07.azure-dns.net
ns3-07.azure-dns.org
ns4-07.azure-dns.info
But when using "nslookup -type=all printvis.de ns1-07.azure-dns.com" I get:
Address: 208.76.47.7
printvis.de nameserver = ns4-07.azure-dns.info
printvis.de nameserver = ns2-07.azure-dns.net
printvis.de nameserver = ns3-07.azure-dns.org
printvis.de
primary name server = ns1-07.azure-dns.com
responsible mail addr = development.printvis.com
serial = 9
refresh = 3600 (1 hour)
retry = 300 (5 mins)
expire = 2419200 (28 days)
default TTL = 300 (5 mins)
Since I just recreated this zone I'm not sure if this is now correct or not, but when doing the same lookup for one of our other domains, it sure doesn't look ok:
I.e. the domain printvis.asia:
Output of: "Get-AzureDnsRecordSet -Name '@' -RecordType 'NS' -ResourceGroupName 'SpeednamesDNS' -ZoneName 'printvis.asia' | Select -ExpandProperty 'Records'"
Nsdname
-------
ns1-05.azure-dns.com
ns2-05.azure-dns.net
ns3-05.azure-dns.org
ns4-05.azure-dns.info
Output of: "nslookup -type=all printvis.asia ns1-05.azure-dns.com"
Address: 208.76.47.5
printvis.asia internet address = 137.135.168.86
printvis.asia nameserver = ns2-05.azure-dns.net
printvis.asia nameserver = ns3-05.azure-dns.org
printvis.asia
primary name server = ns1-05.azure-dns.com
responsible mail addr = development.printvis.com
serial = 29
refresh = 3600 (1 hour)
retry = 300 (5 mins)
expire = 2419200 (28 days)
default TTL = 300 (5 mins)
The question now is, how to update the zone file so it reflects the correct Name Servers so the domain delegation will not get denied.
Thanks,
Peter