Retrieve all DNS zones (domains) from local server


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Retrieve all DNS zones (domains) from local server
# 1  
Old 01-18-2010
Retrieve all DNS zones (domains) from local server

Hello,

I am trying to retrieve all DNS zones from the local bind server without parsing the /var/named folder, removing .db from the zone file names and the special zones files. I am looking for some kind of named, dig etc command that would retrieve all domains from the server eventually with the corresponding site's IP (this is less important) like this (just the command and the params):

domain1 ip
domain2 ip
....

There are some 600 accounts and probably close to 1000 domains. There is cPanel installed on the server.

The final purpose is to have a list with all domains: active, moved, expired etc because we'll move them to a different server and we want a very precise list with all of them. I am a beginner with bash scripting.

Thanks and regards!

Last edited by AndyB78; 01-18-2010 at 09:01 AM..
# 2  
Old 01-21-2010
Some implementations of nslookup include an ls command to list all the entries in a domain

Take a look at:
nslookup MAN Page

and dare I mention this here if you have a windows machine pointed at this dNS server then look at:
Nslookup: ls

For the Unix version if it includes ls then you can script it using heretext, e.g.:
Code:
nslookup << EEOOFF
server <domain1>
ls
server <domain2>
ls
EEOOFF

I am not certain about the server <domain> bit as the method of changing which domain you are then listing, perhaps another member of unix.com can comment please?

HTH
# 3  
Old 01-21-2010
I haven't dealt with webhosting on that level, but doesn't the dns entries get stored in /etc/hosts, /etc/resolv.conf, or something similar to that?

If you can get a list of IPs or FQDNs you can feed them into an nslookup, then grep/awk/sed what you wanted out of it and output it to a file.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Solaris

Solaris 11.2 x86 Local Zones for Oracle RAC database, intermittent Memory corruption of db

Hi, I was wondering if any Solaris fellow out there has dealt with running Solaris 11 x86 on Local Zones for Oracle RAC (which may or may not be relevant to issue), running on HP gen h/w. Every so often could be weeks between issues or some times days, there will be a memory corruption and db... (2 Replies)
Discussion started by: crossmypath
2 Replies

2. Solaris

DNS client added to DNS server but not working

Hi, We have built a new server (RHEL VM)and added that IP/hostname into dns zone configs file on DNS server (Solaris 10). Reloaded the configuration using and added nameserver into resolv.conf on client. But when I am trying nslookup, its not getting resolved. The nameserver is not able to... (8 Replies)
Discussion started by: snchaudhari2
8 Replies

3. IP Networking

Local DNS

I am trying to install a replacement mail server. On the old machine, nslookup example.com returns 192.168.100.5 instead of its real ip of 207.139...... On the new machine, which I have presumably set up the same way; I compared the data in the gui dnsconfig on both machines, I get an error... (0 Replies)
Discussion started by: jgt
0 Replies

4. Solaris

Enabling time service in local zones

Hi, Is it possible to enable the time service in local zones? E.g. erahmanz1% svcs -a | grep -i time STATE STIME FMRI disabled Sep_10 svc:/network/daytime:dgram disabled Sep_10 svc:/network/daytime:stream disabled Sep_10 svc:/network/time:dgram... (2 Replies)
Discussion started by: ERahman
2 Replies

5. UNIX for Advanced & Expert Users

DNS server choice: Windows DNS vs Linux BIND

I'd like to get some opnions on choosing DNS server: Windows DNS vs Linux BIND comparrsion: 1) managment, easy of use 2) Security 3) features 4) peformance 5) ?? I personally prefer Windows DNS server for management, it supports GUI and command line. But I am not sure about security... (2 Replies)
Discussion started by: honglus
2 Replies

6. Solaris

DNS resolv problem for some domains

Hi guys, I just got a new job. I'm working in an ISP and Datacenter, we have 2 DNS servers, a LINUX (primary), and a SUNOS (secondary). A few days ago we had an issue with some non-authoritative domains(not all, just some) in the SUNOS that can't be resolved. The same domain in the LINUX box is... (2 Replies)
Discussion started by: binover
2 Replies

7. Solaris

Setting up local DNS Server

Hi , Could some one please share some docs or steps to set up solaris box as a local DNS . Thx (1 Reply)
Discussion started by: skamal4u
1 Replies

8. Programming

retrieve IP of local machine

Hi all, I am writing a program to retrieve the IP address or machine name of the local machine using C. Is there any C function that does this? ny clue will be of gr8 help!!! thanx a lot. (1 Reply)
Discussion started by: mridula
1 Replies

9. News, Links, Events and Announcements

DNS Free for Five Domains

We have had a great experience recently with these folks: http://www.zoneedit.com/ and highly recommend them. You can set up and manage the DNS for five free domains there, both primary and secondary. (0 Replies)
Discussion started by: Neo
0 Replies
Login or Register to Ask a Question