Avatar of ie0
ie0
Flag for United States of America asked on

DNS analysis

I need to change the Name Servers for my public domain.
Is there a tool I can use to see ALL of the information that the current names servers have about my domain so I can copy them to the new name servers?

I do not have back end access to the old name servers

I do not know what all the spf, mx, A, Cname are etc.
I know I can manually look each individual one up on something like mxtoolbox but I want a report on ALL the settings in one shot.  I do not want to have to go searching for each record.
Thanks
DNS

Avatar of undefined
Last Comment
TechDept

8/22/2022 - Mon
ASKER CERTIFIED SOLUTION
Jan Bacher

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
TechDept

Start by doing a WHOIS. You can use GOOGLE

whois mydomain.com

If not hidden, this query will give you information about the owner, administrator, and technical contacts for your domain.

Since it is very unlikely that any DNS server will be configured to allow dumps (zone transfers) of the entire DNS zone database to any but authorized destinations, you can use NSLOOKUP or DIG to gather the information of the most common DNS records. But there's no way to know what, if any, DNS records you might be missing.

NOTE: If you are issuing these commands from within an Active Directory Domain that has the same name as the Internet Domain you are querying (i.e. Split-Brain DNS), then tack on a known external DNS server to each of the queries so that it will resolve the query for you instead of relying on your own DNS servers to do them. I would use Google's DNS server (8.8.8.8) as in the example below.

nslookup -q=soa mydomain.com.
nslookup -q=soa mydomain.com. 8.8.8.8

Start of Authorities.: Contains the email address of the responsible entity controlling your domain's DNS records. You can email this address and maybe arrange for a copy of the zone database.

nslookup -q=ns mydomain.com.

Name Servers: List of the authoritative DNS Name Servers.

nslookup -q=mx mydomain.com.

Mail eXchanger: List of the Servers, and their priority, that accept incoming emails for your domain.

nslookup -q=spf mydomain.com.
nslookup -q=txt mydomain.com.

Sender Policy Framework: Optional DNS records specifying trusted email sources for your domain and how to handle email from other sources.

nslookup -q=a www.mydomain.com.
nslookup -q=a mydomain.com.
nslookup -q=a *.mydomain.com.

1) Most common host record. Typically used as a web site pointer.
2) Optional "Default" IP when no host name is given. Typically points to the default web server.
3) Optional "Catch All" IP when an invalid host name (type-o) is given. Typically points to the default web server.

One last thing. From the WHOIS information, you will know where the domain is registered, such as Network Solutions, Go Daddy, 1&1, etc. You can contact them to take back control of your domain. You'll have to prove your identity, such as faxing your request on company letterhead from one of the company's known fax phone numbers.

Most likely, the DNS is hosted by the same entity where it is registered. If so, you'll have instant access to your DNS records. If not, you can transfer the DNS to a DNS hosting company of your own choosing and start building the zone database from the information you obtained above.

HTH
All of life is about relationships, and EE has made a viirtual community a real community. It lifts everyone's boat
William Peck