User Tools

Site Tools


bind9-pinpoint-zone

This is an old revision of the document!


DNS Pinpoint Zone with Bind9

Add zone definition to /etc/bind/named.conf.local

zone "somehost.domain.tld" {
        notify no;
        type master;
        file "/etc/bind/somehost.domain.tld.zone";
};

Create pinpoint zone file /etc/bind/somehost.domain.tld.zone

$TTL 1D
@               IN      SOA     ns.domain.tld. hostmaster.domain.tld. (
                                2021071401      ; serial, todays date + todays                                                                                                                                serial #
                                8H              ; refresh, seconds
                                2H              ; retry, seconds
                                1W              ; expire, seconds
                                1D )            ; minimum, seconds
                                                ;
                        NS      ns              ; Inet Address of name server

                IN      A       192.168.1.1
ns              IN      A       192.168.1.1

The closing is important, otherwise the zone file will fail to load.

bind9-pinpoint-zone.1627748966.txt.gz · Last modified: 2021/07/31 18:29 by baumi

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki