Dynamic DNS Woes
0 answers - 4105 bytes -

In article <e4b28c$1phd$1 (AT) sf1 (DOT) isc.org>,
Chad Morris <morrisce (AT) acs (DOT) sparcc.orgwrote:
I'm getting the following error about both forward and reverse mappings
May 15 19:06:13 dns dhcpd: unable to add reverse map from
206.46.110.10.in-addr.arpa. to
connection refused
"Connection refused" means there's no DNS server running on the machine
that it's sending the update request to. Make sure the MNAME field in
the SA record of 46.110.10.in-addr.arpa is correct, it sounds like it's
pointing to a host that isn't running BIND.
below is my config
//
// Do any local configuration here
//
// Consider adding the 1918 zones here, if they are not used in your
// organization
//include "/etc/bind/zones.rfc1918";
acl okay_hosts {
10.110.40.0/21;
10.110.72.0/21;
10.110.80.0/21;
10.110.48.0/21;
10.110.56.0/21;
10.110.64.0/21;
127.0.0.1;
};
acl slave_servers {
10.110.48.3;
10.110.57.1;
10.110.65.1;
10.110.72.2;
10.110.80.2;
};
zone "flyers.stark.k12.oh.us" {
type master;
notify yes;
file "/";
allow-update {
okay_hosts;
localhost;
};
also-notify {
slave_servers;
};
};
zone "40.110.10.in-addr.arpa" {
type master;
notify no;
file "/etc/bind/10.110.40.rev";
allow-update {
okay_hosts;
};
};
zone "57.110.10.in-addr.arpa" {
type master;
notify yes;
file "/etc/bind/10.110.57.rev";
allow-update {
okay_hosts;
};
};
zone "48.110.10.in-addr.arpa" {
type master;
notify yes;
file "/etc/bind/10.110.48.rev";
allow-update {
okay_hosts;
};
};
zone "65.110.10.in-addr.arpa" {
type master;
notify yes;
file "/etc/bind/10.110.65.rev";
allow-update {
okay_hosts;
};
};
zone "80.110.10.in-addr.arpa" {
type master;
notify yes;
file "/etc/bind/10.110.80.rev";
allow-update {
okay_hosts;
};
};
zone "72.110.10.in-addr.arpa" {
type master;
notify yes;
file "/etc/bind/10.110.72.rev";
allow-update {
okay_hosts;
};
};
zone "99.144.66.in-addr.arpa" {
type master;
notify yes;
file "/etc/bind/66.144.99.rev";
allow-update {
};
};
zone "78.110.10.in-addr.arpa" {
type master;
file "/etc/bind/10.110.78.rev";
allow-update {
okay_hosts;
};
notify yes;
};
zone "46.110.10.in-addr.arpa" {
type master;
file "/etc/bind/10.110.46.rev";
allow-update {
okay_hosts;
};
notify yes;
};
zone "47.110.10.in-addr.arpa" {
type master;
file "/etc/bind/10.110.47.rev";
allow-update {
okay_hosts;
};
notify yes;
};
zone "87.110.10.in-addr.arpa" {
type master;
file "/etc/bind/10.110.87.rev";
allow-update {
okay_hosts;
};
notify yes;
};
zone "79.110.10.in-addr.arpa" {
type master;
file "/etc/bind/10.110.79.rev";
allow-update {
okay_hosts;
};
};
zone "69.110.10.in-addr.arpa" {
type master;
file "/etc/bind/10.110.69.rev";
allow-update {
okay_hosts;
};
notify yes;
};
zone "70.110.10.in-addr.arpa" {
type master;
file "/etc/bind/10.110.70.rev";
allow-update {
okay_hosts;
};
notify yes;
};
zone "61.110.10.in-addr.arpa" {
type master;
file "/etc/bind/10.110.61.rev";
allow-update {
okay_hosts;
};
notify yes;
};
zone "62.110.10.in-addr.arpa" {
type master;
file "/etc/bind/10.110.62.rev";
allow-update {
okay_hosts;
};
notify yes;
};
zone "49.110.10.in-addr.arpa" {
type master;
file "/etc/bind/10.110.49.rev";
allow-update {
okay_hosts;
};
notify yes;
};
zone "50.110.10.in-addr.arpa" {
type master;
file "/etc/bind/10.110.50.rev";
allow-update {
okay_hosts;
};
notify yes;
};
zone "aviators.stark.k12.oh.us" {
type master;
file "/";
};
zone "ahs.stark.k12.oh.us" {
type master;
file "/";
};