Help for a Windows installation

Alessandro Magno alessandromagno08 at gmail.com
Mon May 17 15:30:49 UTC 2010


Hi,

I'm trying to install the last version of Bind in a standalone Windows
2003 Server.

I would set a caching-only nameserver, but I'm not so expert.

I would:
- limit who can use this nameserver
- log the failed queries
- delete the cache if necessary

How should I fill in these files? Thanks!
Alex

named.conf nr. 1
============

options {
		directory "C:\WINDOWS\system32\dns\etc";
};


key "rndc-key" {
	algorithm hmac-md5;
	secret "    ";
};

controls {
	inet 127.0.0.1 port 953
		allow { 127.0.0.1; } keys { "rndc-key"; };
};


named.conf nr. 2
============

acl corpnets { 192.168.1.0/24; };
options {
     // Working directory
     directory "/etc/namedb";

     allow-query { corpnets; };
};
// Provide a reverse mapping for the loopback
// address 127.0.0.1
zone "0.0.127.in-addr.arpa" {
     type master;
     file "localhost.rev";
     notify no;
};


key "rndc-key" {
	algorithm hmac-md5;
	secret "       ";
};


controls {
	inet 192.168.1.46 port 953
		allow { 192.168.1.46; } keys { "rndc-key"; };
};


zone "." IN {
   type hint;
   file "db.root.hint.txt";
};



More information about the bind-users mailing list