I'm setting up bind and am having some problems. I'm using the tutorial here. For testing, I set up a machine with hostname dc01.home, ip=192.168.1.100. I installed bind, and configured per the tutorial so that there should be a new A record for dc01.home. When I dig my new record, I get a servfail. bind is running (the caching function works great), and I have incremented the serial several times. Here are my config files:
/etc/bind/named.conf.local:
Code:
logging {
channel query.log {
file "/var/log/query.log";
severity debug 3;
};
category queries { query.log; };
};
zone "home" {
type master;
file "/etc/bind/db.home";
};
zone "168.192.in-addr.arpa" {
type master;
file "/etc/bind/db.192.168";
};
/etc/bind/db.home:
Code:
$TTL 604800
@ IN SOA dc01.home. myemail.gmail.com. (
4 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
IN NS dc01.home.
@ IN A 192.168.1.100
/etc/bind/db.192.168:
Code:
$TTL 604800
@ IN SOA dc01.home. myemail.gmail.com. (
2 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS dc01.home.
100.1 IN PTR dc01.home.
Thoughts?
Bookmarks