To make this functionality possible, we have a very simple script which exports your current DNS Server records to text files and makes them available via a simple indexed HTML file which can be accessed from any device with a web browser.

Configuration

Overall, the script’s configuration options are very straight forward. You simply need to configure the output location where you would like the destination files to end up. This folder will be populated with a ‘default.htm’ and ‘[domain].dns.zone.txt’ files. These names can be customized in the script as needed.

The script makes the assumption that you have named your DNS files using the default naming convention the Windows DNS Server uses ([domain].dns). If you are not using the default naming convention, the script will not work properly.

As an additional function, the script can delete unused DNS record files which are no longer active in your DNS Server. If enabled (off by default), when the export procedure fails for a DNS record file, meaning the domain was not found in the DNS Server, it is deleted. These unlinked DNS record files do not do any harm or consume any resources, so it is safe to leave them alone.

If you update your DNS records often, you can configure the script to run regularly through a scheduled task so you know the information you are viewing is always current. The output of the script is read-only so any changes made to the resulting files will not be reflected in your DNS Server.

How it Works

The script simply reads your current DNS files from the default Windows location and then interfaces with the DNSCmd command line tool to produce the output files. The DNSCmd tool is included with Server 2008, but Server 2003 machines must install the Resource Kit Tools to put this utility on your system.

The ‘[domain].dns.zone.txt’ are the output produced by the ZoneExport command.

You can access the listing by viewing the output ‘default.htm’ file in a browser. If you have configured the script to export to a publically available location, you can view the output from anywhere.

By clicking on a domain, you can see all the DNS information from your DNS Server for that domain.

The Script

@ECHO OFFTITLE DNS Dump to HTMLECHO DNS Dump to HTMLECHO Written by: Jason FaulknerECHO SysadminGeek.comECHO.ECHO.

SETLOCAL EnableDelayedExpansion

REM Directory where the HTML pages should be generated.SET OutPath=C:inetpubwwwrootdnsSET HTMLPage=default.htm

REM HTML page title/header.SET Title=DNS Records

REM Delete DNS record files which are not currently loaded in the DNS server (1=Yes, 0=No)SET DeleteNotFound=0

DEL /Q “%OutPath%*“SET OutFile="%OutPath%%HTMLPage%”

REM HTML header info. Customize as needed.ECHO ^<HTML^> » %OutFile%ECHO ^<HEAD^> » %OutFile%ECHO ^<TITLE^>%Title%^</TITLE^> » %OutFile%ECHO ^</HEAD^> » %OutFile%ECHO ^<BODY^> » %OutFile%ECHO ^<H1^>%Title%^<H1^> » %OutFile%ECHO ^<H3^>Machine Name: %ComputerName%^</H3^> » %OutFile%ECHO ^<H5^>Generated on: %Date% %Time%^</H5^> » %OutFile%

SET DNSDir=%WinDir%system32dnsFOR /F %%A IN (‘DIR /A:-D /B /L %DNSDir%*.dns’) DO (    SET Zone=%%A    SET Zone=!Zone:.dns=!    SET ZoneFile=!Zone!.dns.zone.txt    ECHO Exporting: !Zone!    DNSCmd . /ZoneExport !Zone! !ZoneFile!    IF NOT EXIST %DNSDir%!ZoneFile! (        ECHO !Zone! is not currently loaded in DNS Server.        IF {%DeleteNotFound%}=={1} DEL /F /Q %DNSDir%%%A    ) ELSE (        ECHO ^<A HREF="!ZoneFile!"^>!Zone!^</A^>^<BR/^> » %OutFile%        REM Output is always to DNS directory, so move the file to the HTML dir.        MOVE /Y %DNSDir%!ZoneFile! “%OutPath%!ZoneFile!”    )    ECHO.)

ECHO ^<BR/^> » %OutFile%ECHO ^</BODY^> » %OutFile%ECHO ^</HTML^> » %OutFile%

ENDLOCAL

 

Download DNS Dump to HTML Script from SysadminGeek.com

Download Windows Server 2003 Resource Kit Tools from Microsoft