Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Bind 9.6-ESV-R5 errors

10 views
Skip to first unread message

Jack Tavares

unread,
Mar 26, 2012, 4:56:34 PM3/26/12
to bind-...@lists.isc.org
Hello

I get several errors whenever I run rndc reload
that look like this:

named[9178]: 27-Mar-2012 05:56:00.798 general: error: zone 0.IN-ADDR.ARPA/IN/view_internal_dns: zone serial unchanged. zone may fail to transfer to slaves.
named[9178]: 27-Mar-2012 05:56:00.798 general: error: zone 127.IN-ADDR.ARPA/IN/view_internal_dns: zone serial unchanged. zone may fail to transfer to slaves.
named[9178]: 27-Mar-2012 05:56:00.798 general: error: zone 254.169.IN-ADDR.ARPA/IN/view_internal_dns: zone serial unchanged. zone may fail to transfer to slaves.

etc etc.

This occurs with a very simple stripped down named.conf file:
--start--
controls {
inet 127.0.0.1 port 953 allow {
127.0.0.1;
};
};
logging {
channel logfile {
syslog daemon;
severity error;
print-category yes;
print-severity yes;
print-time yes;
};
category default {
logfile;
};
category config {
logfile;
};
category notify {
logfile;
};
};
acl "internal_addr" {
10.0.0.0/8;
};

options {
listen-on port 53 {
127.0.0.1;
"internal_addr";
};
listen-on-v6 port 53 {
::1;
};
recursion no;
directory "/config/namedb";
};
view "view_internal_dns" {
match-clients {
"internal_addr";
};
recursion yes;
};
view "view_externall_dns" {
match-clients {
"any";
};
recursion yes;
};
--end--

Upgrading bind is not currently an option. Is there a way to stop these errors?

--
Jack Tavares

Mark Andrews

unread,
Mar 26, 2012, 5:05:21 PM3/26/12
to Jack Tavares, bind-...@isc.org

In message <6134BB3286A31D4DB61E...@SEAEMBX01.olympus.F5Net.co
m>, Jack Tavares writes:
> Hello
>
> I get several errors whenever I run rndc reload
> that look like this:
>
> named[9178]: 27-Mar-2012 05:56:00.798 general: error: zone 0.IN-ADDR.ARPA/IN/
> view_internal_dns: zone serial unchanged. zone may fail to transfer to slaves
> .
> named[9178]: 27-Mar-2012 05:56:00.798 general: error: zone 127.IN-ADDR.ARPA/I
> N/view_internal_dns: zone serial unchanged. zone may fail to transfer to slav
> es.
> named[9178]: 27-Mar-2012 05:56:00.798 general: error: zone 254.169.IN-ADDR.AR
> PA/IN/view_internal_dns: zone serial unchanged. zone may fail to transfer to
> slaves.
>
> etc etc.

Ignore them. They are from the built in empty zones. They are fixed in
the next maintenance release.

Mark
> _______________________________________________
> Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe
> from this list
>
> bind-users mailing list
> bind-...@lists.isc.org
> https://lists.isc.org/mailman/listinfo/bind-users
--
Mark Andrews, ISC
1 Seymour St., Dundas Valley, NSW 2117, Australia
PHONE: +61 2 9871 4742 INTERNET: ma...@isc.org

Jack Tavares

unread,
Mar 26, 2012, 5:19:38 PM3/26/12
to bind-...@lists.isc.org
Mark:

>Ignore them. They are from the built in empty zones. They are fixed in
>the next maintenance release.

I notice that adding
"enable-empty-zones no;"

to the config stops these messages.
Is there any downside to doing that?

Thank you
--
Jack

Mark Andrews

unread,
Mar 26, 2012, 10:25:26 PM3/26/12
to Jack Tavares, bind-...@isc.org

In message <6134BB3286A31D4DB61E...@SEAEMBX01.olympus.F5Net.co
m>, Jack Tavares writes:
The zones are from RFC 6303, Locally Served DNS Zones. Their purpose is
stop reverse queries for local addresses leaving the site. Removing
them shouldn't hurt but it does increase traffic on the public servers
and will increase response time.

Mark
0 new messages