[bind10-dev] BIND 10 installation experience - done

JINMEI Tatuya / 神明達哉 jinmei at isc.org
Tue Nov 16 15:50:43 UTC 2010


At Tue, 16 Nov 2010 14:30:26 +0100,
"Elmar K. Bins" <elmi at 4ever.de> wrote:

> I just installed BIND10, got it to somehow work (one problem remains for me, see
> below), and thought I'd write up a report...

Thanks for the report.

>   root at tikka:# b10-loadzone ~ekb/4ever.de
>   Error reading zone file: Cannot parse RR: 4ever.de. IN SOA ns.4ever.de. hostmaster.4ever.de. 2010111400 10000 5000 864000 36000
> 
> Well - don't know what's wrong here. BIND9 (and 8) loads this.

You just found a bug in b10-loadzone:-)

I believe a simple patch to src/lib/python/isc/datasrc/master.py
(copied below) should solve this issue.  If you have time please try
it.

Thanks,

---
JINMEI, Tatuya
Internet Systems Consortium, Inc.

Index: master.py
===================================================================
--- master.py	(revision 3540)
+++ master.py	(working copy)
@@ -103,7 +103,7 @@
 # isttl: check whether a string is a valid TTL specifier.
 # returns: boolean
 #########################################################################
-ttl_regex = re.compile('([0-9]+[wdhms]?)+', re.I)
+ttl_regex = re.compile('([0-9]+[wdhms]?)+$', re.I)
 def isttl(s):
     global ttl_regex
     if ttl_regex.match(s):



More information about the bind10-dev mailing list