Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.protocols.dns.bind > #49

Re: Securing zone transfer and DDNS

From Jan-Piet Mens <jpmens.dns@gmail.com>
Newsgroups comp.protocols.dns.bind
Subject Re: Securing zone transfer and DDNS
Date 2011-11-07 15:59 +0100
Message-ID <mailman.9.1320677995.68562.bind-users@lists.isc.org> (permalink)
References <21ed7915.4729b742.4eb72f52.7f82@o2.pl> <4EB746D7.9000205@dougbarton.us> <687fd44f.1f6eb34b.4eb7ebcc.d7948@o2.pl>

Show all headers | View raw


> Bind version is: 9.7.4

Upgrade; 9.8.1 is current. (In addition, you're reading a book called
BIND 10 -- even though the book doesn't once mention that software!)

> Maybe this is a stupid question but what is ARM?

BIND 9 Administrator Reference Manual. It is provided in multiple
formats within the BIND source distribution. (doc/arm/*)

[...]

I assume what you probably want to do is something like this:

        key "my.key" {
                algorithm HMAC-MD5;
                secret "xxxx";
        };
        key "my.key2" {
        ...
        };

        acl xferkey {
                key my.key2;
        };

        zone "example.net" IN {
                type master;
                file "example.net";
                allow-update {
                        key "my.key";
                };
                allow-transfer {
                        xferkey;
                };
        };

Create your keys with the dnssec-keygen utility (check its manual page).

Instead of allow-update, I'd like to suggest you read up on the `grant'
statement which allows a much finer granularity on DDNS.

        -JP

Back to comp.protocols.dns.bind | Previous | Next | Find similar


Thread

Re: Securing zone transfer and DDNS Jan-Piet Mens <jpmens.dns@gmail.com> - 2011-11-07 15:59 +0100

csiph-web