Ich wollte von meinem Windows-Rechner alle Websites loggen. Dazu einfach folgende Befehle ausführen. Danach natürlich die IP-Adresse des DNS-Servers in Windows eintragen oder per DHCP zuweisen 😉
apt-get install bind9 nano named.conf
logging {
channel queries {
file "/var/log/named/query.log";
severity info;
print-time yes;
print-category yes;
};
category queries {
queries;
};
};
mkdir /var/log/named/ touch /var/log/named/query.log chown bind /var/log/query.log
service bind9 restart
tailf /var/log/query.log
Logging Optionen: http://www.zytrax.com/books/dns/ch7/logging.html