I'm trying to setup bind and everything seems to be working fine except for the fact that none of my zones are propagating. I'm running Bind 9.3.3RC2 in a chroot configuration. The server starts up fine, I can run rndc just fine and the status switch returns the following
Quote:
|
Originally Posted by rndc
number of zones: 2
debug level: 0
xfers running: 0
xfers deferred: 0
soa queries in progress: 0
query logging is OFF
recursive clients: 0/1000
tcp clients: 0/100
server is up and running
|
I have two domains that I'm trying to host on this DNS server, lets call them domain1.com and domain2.com. My registrar has an ns1.domain1.com, that is resolving to the world, and it is listed as the primary DNS server for domain1.com and domain2.com. When I do an nslookup from any server other than my DNS box, both domain1 and domain2 fail to resolve. However, when I use my DNS server to lookup both domains they work just find. It is like I just can't figure out why propagation isn't working. The contents of my named.conf are listed below (private information replaced).
TIA for any help!
Quote:
|
Originally Posted by named.conf
key "rndckey" {
algorithm hmac-md5;
secret "xxxxxxxxxxxxxxxxxxxxxxxx";
};
controls {
inet 127.0.0.1 allow { 127.0.0.1; } keys { "rndckey"; };
inet xx.xx.xxx.xxx allow { xx.xx.xxx.208/29; } keys { "rndckey"; };
};
options {
directory "/var/named";
pid-file "/var/run/named/named.pid";
recursion yes;
allow-recursion {
127.0.0.1;
xx.xx.xxx.208/29;
};
// these are the opendns servers (optional)
forwarders {
208.67.222.222;
208.67.220.220;
};
listen-on {
127.0.0.1;
xx.xx.xxx.xxx;
};
query-source address * port 53;
// so people can't try to guess what version you're running
version "REFUSED";
allow-query {
127.0.0.1;
xx.xx.xxx.208/29;
};
};
server xx.xx.xxx.xxx{
keys { rndckey; };
};
zone "." IN {
type hint;
file "named.ca";
};
zone "domain1.com" IN {
type master;
file "data/domain1.com.zone";
allow-update { none; };
allow-transfer { none; };
};
zone "domain2.com" IN {
type master;
file "data/domain2.com.zone";
allow-update { none; };
allow-transfer { none; };
};
|
Recent comments
4 hours 32 min ago
13 hours 59 min ago
14 hours 49 min ago
18 hours 22 min ago
22 hours 46 min ago
23 hours 8 min ago
1 day 1 hour ago
1 day 11 hours ago
1 day 16 hours ago
1 day 17 hours ago