[Samba] corrupted db after upgrading to 4.7

Rowland Penny rpenny at samba.org
Mon Nov 6 11:41:33 UTC 2017


On Mon, 6 Nov 2017 11:53:32 +0100 (CET)
Maxence SARTIAUX <msartiaux at it-optics.com> wrote:

I use Devuan and these are my named.conf files:

/etc/bind/named.conf                            

include "/etc/bind/named.conf.options";
include "/etc/bind/named.conf.local";
include "/etc/bind/named.conf.default-zones";


nano /etc/bind/named.conf.options

options {
        directory "/var/cache/bind";
        version "0.0.7";
        notify no;
        empty-zones-enable no;
        allow-query { 127.0.0.1; 192.168.0.0/24; };
        allow-recursion { 192.168.0.0/24;  127.0.0.1/32; };
        forwarders { 8.8.8.8; };
        allow-transfer { none; };
        dnssec-validation no;
        dnssec-enable no;

        listen-on-v6 { none; };
        listen-on port 53 { 192.168.0.2; 127.0.0.1; };
        tkey-gssapi-keytab "/usr/local/samba/private/dns.keytab";
};


nano /etc/bind/named.conf.local

include "/usr/local/samba/private/named.conf";

nano /etc/bind/named.conf.default-zones

// prime the server with knowledge of the root servers
zone "." {
        type hint;
        file "/etc/bind/db.root";
};

// be authoritative for the localhost forward and reverse zones, and for
// broadcast zones as per RFC 1912

zone "localhost" {
        type master;
        file "/etc/bind/db.local";
};

zone "127.in-addr.arpa" {
        type master;
        file "/etc/bind/db.127";
};

zone "0.in-addr.arpa" {
        type master;
        file "/etc/bind/db.0";
};

zone "255.in-addr.arpa" {
        type master;
        file "/etc/bind/db.255";
};

Try using them as base for yours, you have quite a few settings not
required by Samba, then restart Bind and see what happens.

Rowland



More information about the samba mailing list