Jump to content

List of what name servers each domain is using


xpcwebhosting

Recommended Posts

We had the previous owners name servers shut down without warning and some of the clients domains are still set to use them. Does anyone know of a way I can find a list of what name servers each domain is using. Maybe a report, or looking in a database, etc.?

 

Our registrar is eNom, and I don't see a method of running that type of report on their end. I wonder if that data is actually stored in WHMCS... should I be asking eNom instead?

Link to comment
Share on other sites

I can't edit my previous post, but I found the following in my archive.

 

Created it once to read it into excel:

<?php
require "dbconnect.php";

$result = full_query("SELECT domain, (SELECT tblorders.nameservers FROM tblorders WHERE id = tbldomains.orderid) AS ns FROM tbldomains;");

while($data = mysql_fetch_array($result))
echo $data['domain'].",".$data['ns']."\n";
?>

Link to comment
Share on other sites

Does anyone know of a way I can find a list of what name servers each domain is using

 

Get a list of the domains on the affected server from your control panel

Do a WHOIS on each of them

Update 9through your WHMCS) or email the clients to change (if domain not with you) as necessary

 

Sadly its a common issue after an acquisition - we've automated the lookup process somehwta, but it's not ina releasable format.

 

You'll also find that depending on the registrar of each domain, at the point the nameservers ceased they *may* have changed it to theirs or to nonsense - so the best time to find the nameservers for each domain is at takeover - not later...

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated