How to update a zone with auto-dnssec: maintain

8,738

Solution 1

I think I finally found the root cause of my problem. I have two views, that were configured to include the same master zone file twice.

You cannot use the same file for two zones. So this is invalid and caused my problem:

view "internal" {
    match-clients ...;
    zone "example.com" {
        type master;
        file "/etc/bind/zones/example.net";
    };
};
view "external" {
    match-clients ...;
    zone "example.com" {
        type master;
        file "/etc/bind/zones/example.net";
    };
};

The proper way to share a zone is described in chapter 4 of the " Understanding views in BIND 9, by example" guide. Basically, only one of the zone must be the master zone, and the other one must be a slave. After adding a few acls, keys and also-notify for localhost in the right places, I got rid of those errors.

In the end this is my final configuration:

key "internal" {
    // TSIG Key generated with dnssec-keygen -a HMAC-MD5 -b 512 -n USER internal
    algorithm hmac-md5;
    secret "XXXX";
};

view "internal" {
    match-clients { key internal; ...IPs...; }; // our network
    zone "robin.info" {
        type slave;
        file "/etc/bind/slave-zones/robin.info"; // Not the same file as external view!
        masters { 127.0.0.1; };
    };
};

view "external" {
    match-clients { !key internal; "any"; }; // everyone else
    server 127.0.0.1 {
        /* Deliver notify messages to internal view with internal key. */
        keys { internal; };
    };
    zone "robin.info" {
        type master;
        file "/etc/bind/zones/robin.info";
        // ACL file with allow-transfer and also-notify
        // including secondary DNS servers and 127.0.0.1
        include "/etc/bind/acls"; 
        key-directory "/etc/bind/dnssec/robin.info/2017";
        inline-signing yes;
        auto-dnssec maintain;
    };
};

Solution 2

I have been hit by a similar issue, also using debian jessie's bind. I have not several views nor shared files, but bind complained with the same kind of errors than:

11-Dec-2016 13:54:20.796 zone robin.info/IN/internal (signed): reconfiguring zone keys
11-Dec-2016 13:54:20.805 malformed transaction: /etc/bind/zones/robin.info.signed.jnl last serial 2016121113 != transaction first serial 2016121111
11-Dec-2016 13:54:20.805 zone robin.info/IN/internal (signed): zone_rekey:dns_journal_write_transaction -> unexpected error

My solution was to use

rndc sync -clean

along with reloading bind (even if dynamic updates are not enabled!). From the man:

Sync changes in the journal file for a dynamic zone to the master file. If the 
"-clean" option is specified, the journal file is also removed. If no zone is 
specified, then all zones are synced.

Solution 3

The core seems to be the could not get zone keys for secure dynamic update error message, so falling back to unsigned; and since it's not going through the signing path which auto-bumps the SOA for signing, it complains that the SOA is out-of-date.

I got the same error message when adding signing to three zones and scratched my head, then sighed and just restarted named entirely. That solved it for me. Bind 9.11.0P3.

I don't recall seeing this problem in the past when adding signing, but all other zones were signed ages ago with the transition under an earlier version of Bind. Also, these three zones are reverse DNS files, so slightly unusual in filename. That's about all I have to explain it.

So: bind bug, restart named entirely, let it find the keyfiles for real and then sign.

Share:
8,738

Related videos on Youtube

Calimo
Author by

Calimo

Computational biologist, bioinformatician, author of the pROC R package.

Updated on September 18, 2022

Comments

  • Calimo
    Calimo almost 2 years

    I am running an authoritative BIND 9.9.5-9+deb8u8-Debian on Debian Jessie. I have a working zone for robin.info that works properly (various tests report success, such as the one on pingdom.com's DNS check tool)

    I am trying to secure it with dnssec. I am following the instructions given in the BIND DNSSEC Guide, chapter 4 with easy start. I generated a ZSK and KSK successfully, and updated my zone adding the lines in bold:

    zone "robin.info" {
            type master;
            file "/etc/bind/zones/robin.info";
            include "/etc/bind/include-zones/acls";
            key-directory "/etc/bind/dnssec/robin.info/2016";
            inline-signing yes;
            auto-dnssec maintain;
    };

    I made sure that no .jnl, .jbk, .signed and .signed.jnl files were present with the zone file, then restarted bind with rndc reload and confirmed that the zone was loaded and had DNSKEY entries, although I had a few errors in the log:

    11-Dec-2016 13:54:20.742 zone robin.info/IN/internal (signed): loaded serial 2016121111
    11-Dec-2016 13:54:20.742 zone robin.info/IN/external (signed): loaded serial 2016121111
    11-Dec-2016 13:54:20.750 zone robin.info/IN/external (signed): receive_secure_serial: unchanged
    11-Dec-2016 13:54:20.750 zone robin.info/IN/external (signed): reconfiguring zone keys
    11-Dec-2016 13:54:20.766 zone robin.info/IN/external (signed): next key event: 11-Dec-2016 14:54:20.750
    11-Dec-2016 13:54:20.796 zone robin.info/IN/internal (signed): receive_secure_serial: unchanged
    11-Dec-2016 13:54:20.796 zone robin.info/IN/internal (signed): reconfiguring zone keys
    11-Dec-2016 13:54:20.805 malformed transaction: /etc/bind/zones/robin.info.signed.jnl last serial 2016121113 != transaction first serial 2016121111
    11-Dec-2016 13:54:20.805 zone robin.info/IN/internal (signed): zone_rekey:dns_journal_write_transaction -> unexpected error
    

    These serial errors seem to cause problem down the line when I want to update my zone. I make changes in the unsigned zone /etc/bind/zones/robin.info, and increase my the serial to 2016121121

    11-Dec-2016 13:57:58.658 zone robin.info/IN/internal (signed): serial 2016121121 (unsigned 2016121121)
    11-Dec-2016 13:57:58.658 zone robin.info/IN/internal (signed): could not get zone keys for secure dynamic update
    11-Dec-2016 13:57:58.658 zone robin.info/IN/internal (signed): receive_secure_serial: not found
    11-Dec-2016 13:57:58.659 malformed transaction: /etc/bind/zones/robin.info.jnl last serial 2016121121 != transaction first serial 2016121111
    11-Dec-2016 13:57:58.659 zone robin.info/IN/external (unsigned): not loaded due to errors.
    11-Dec-2016 13:57:58.659 all zones loaded
    11-Dec-2016 13:57:58.659 running
    11-Dec-2016 13:57:58.661 zone robin.info/IN/internal (signed): reconfiguring zone keys
    11-Dec-2016 13:57:58.670 malformed transaction: /etc/bind/zones/robin.info.signed.jnl last serial 2016121115 != transaction first serial 2016121111
    11-Dec-2016 13:57:58.670 zone robin.info/IN/internal (signed): zone_rekey:dns_journal_write_transaction -> unexpected error
    11-Dec-2016 13:57:58.670 zone robin.info/IN/external (signed): reconfiguring zone keys
    11-Dec-2016 13:57:58.671 zone robin.info/IN/external (signed): next key event: 11-Dec-2016 14:57:58.670
    

    I can confirm with dig that my old zone is still loaded (from SOA and changes that aren't visible).

    There are several error messages here:

    1) Suggesting that I am having trouble with the keys ("could not get zone keys for secure dynamic update"). However bind had no trouble with that on the first load, and my key files are readable by bind (named is run as user bind which is member of group bind):

    xavier@dent:/etc/bind/zones$ ls -l /etc/bind/dnssec/robin.info/2016
    total 17k
    -rw-r--r-- 1 root bind  603 Dec 10 17:23 Krobin.info.+008+43324.key
    -rw-r----- 1 root bind 1.8k Dec 10 17:23 Krobin.info.+008+43324.private
    -rw-r--r-- 1 root bind  604 Dec 10 17:22 Krobin.info.+008+44679.key
    -rw-r----- 1 root bind 1.8k Dec 10 17:22 Krobin.info.+008+44679.private
    

    2) Suggesting an error with the serials (the inital error was last serial 2016121113 != transaction first serial 2016121111). However I thought I didn't have to worry about too much about the serials, since in ISC's KB I can read that:

    Note that the serial number in this response is not the same as the one in the file example.com.db. Named keeps track of the serial number of the signed version of the zone independently of the unsigned version. If the unsigned zone is updated with a new serial number that's higher than the one in the signed copy, then the signed copy will be increased to match it, but otherwise the two are kept separate.[1]

    So far the only way I found to update the zone is to stop bind, delete the .jnl, .jbk, .signed and .signed.jnl files and start bind again. This seems wrong, and I need to make sure I increase the serial enough to activate the new zone. What am I doing wrong and how can I fix my dnssec?

    • elmo
      elmo over 7 years
      Ok, this part makes me wonder. "I made sure that no .jnl, .jbk, .signed and .signed.jnl files were present with the zone file, then restarted bind with rndc reload". Since a rndc reload worked, I assume that bind were still running when you initially deleted those journal files, and that they hence weren't really deleted? Except that that wouldn't matter, since you later write that you then do stop bind, deletes those files, etc?
    • elmo
      elmo over 7 years
      Regarding the permissions, I assume that the bind user not only have permissions to read the files in /etc/bind/dnssec/robin.info/2016 directory, but also has permissions to traverse all the directories leading there?
    • Calimo
      Calimo over 7 years
      @andol actually I did sudo service bind9 stop, modified the files and then sudo service bind9 start.
    • Calimo
      Calimo over 7 years
      @andol yes the parent directory has rx for group bind
    • Calimo
      Calimo over 7 years
      Just to show how weird and buggy this is: if I have a current serial like 2016112120 in the live SOA, vim my zone file and bump the serial to 2017021501, and restart, I can see /etc/bind/zones/robin.info.signed.jnl last serial 2017021503 != transaction first serial 2017021501. Why would the last serial already end up in 03?
  • Calimo
    Calimo over 7 years
    Interesting! service bind9 restart seems to do the trick indeed.
  • Calimo
    Calimo over 7 years
    A bit more testing and it seems that I sometimes need to restart bind9 twice after editing the zone file with vim and bumping the serial.
  • Calimo
    Calimo about 7 years
    After DNS keys expiring when the server was left alone for a month, even more testing debugging, I found that the root cause of the problem (same zone file used in two views) and wrote the solution below.
  • Phil P
    Phil P almost 7 years
    Not the cause of my problem: no signed master zones re-use the same zonefile (a few do include a common fragment, but those have not been involved in the glitches) and I do not use views. Some other unsigned zones do use stub empty zonefiles (for protecting root servers from bogosity), they're not involved in this.