.\" -*- mode: troff; coding: utf-8 -*- .\" Automatically generated by Pod::Man 5.01 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>. .ie n \{\ . ds C` "" . ds C' "" 'br\} .el\{\ . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "GDNSD.ZONEFILE 5" .TH GDNSD.ZONEFILE 5 2024-03-15 "gdnsd 3.8.2" gdnsd .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH NAME gdnsd.zonefile \- gdnsd zonefile syntax .SH SYNOPSIS .IX Header "SYNOPSIS" example.com: .PP .Vb 1 \& $TTL 86400 \& \& @ SOA ns1 dns\-admin ( \& 1 ; serial \& 7200 ; refresh \& 30M ; retry \& 3D ; expire \& 900 ; ncache \& ) \& \& @ NS ns1.example.com. \& @ NS ns2 \& @ NS ns.example.net. \& \& ns1 A 192.0.2.1 ; a comment \& ns2.example.com. A 192.0.2.2 \& \& @ 7200 MX 10 mail\-a \& @ 7200 MX 100 mail\-b \& \& $ttl 86400 \& ; a comment \& mail\-a A 192.0.2.3 \& mail\-b A 192.0.2.4 \& \& subz NS ns1.subz \& subz NS ns2.subz \& ns1.subz A 192.0.2.5 \& ns2.subz A 192.0.2.6 \& \& www 600/10 DYNA some_plugin!resource_name \& alias CNAME www \& \& _http._tcp 1800 SRV 5 500 80 www \& \& foo TXT "blah blah" "blah" \& _spf TXT "v=spf1 ..." .Ve .SH DESCRIPTION .IX Header "DESCRIPTION" This is the primary zonefile syntax for \fBgdnsd\fR\|(8). The syntax is designed to be as close as possible to the standard zonefile syntax from RFC 1035 (which is the "standard" format one typically sees with traditional BIND servers). This document will just cover a few important highlights and/or deviations from the norm. .SH DIRECTIVES .IX Header "DIRECTIVES" The standard \f(CW$TTL\fR, \f(CW$ORIGIN\fR, and \f(CW$INCLUDE\fR directives are supported with their normal syntax and semantics: .PP \&\f(CW$TTL\fR changes the default TTL of any records coming after it, and can occur multiple times. Note that in the absence of a zonefile-level \f(CW$TTL\fR setting, the default TTL comes from the global config option \f(CW\*(C`zones_default_ttl\*(C'\fR, which in turn defaults to \f(CW86400\fR (1 day). .PP \&\f(CW$ORIGIN\fR changes what is appended to unqualified hostnames (those lacking a final \f(CW\*(C`.\*(C'\fR) seen in the zone file from that point forward, as well as any \f(CW\*(C`@\*(C'\fR entries (which is an alias for the current origin). \f(CW$ORIGIN\fR itself may also be an unqualified name, in which case the previous origin is appended to it. Any fully-qualified \f(CW$ORIGIN\fR must be within the zone described by this zonefile. The default origin is the zone name itself. .PP \&\f(CW$INCLUDE\fR includes another file as if its contents existed at the point of the \f(CW$INCLUDE\fR directive. Include directives may specify an optional origin, which has the same effect as \f(CW$ORIGIN\fR at the top of the included file. Changes to the origin (and default ttl) within included files have no effect on the outer file. .PP BIND's \f(CW$GENERATE\fR extension is not supported at this time, but there's no fundamental reason it couldn't be added at a later date. .SH "SPECIAL NAMES AND ORIGINS" .IX Header "SPECIAL NAMES AND ORIGINS" The standard \f(CW\*(C`@\*(C'\fR, as a whole name, is supported as an alias for the current origin. In addition to this, gdnsd implements two special extensions \f(CW@Z\fR and \&\f(CW@F\fR. These denote the current zone name, and the original origin (before any internal \f(CW$ORIGIN\fR declarations) of the file currently being parsed. Unlike \&\f(CW\*(C`@\*(C'\fR, they can also be used as the final label of an unqualified name. \f(CW@Z\fR and \f(CW@F\fR will always be equivalent to each other in the main zonefile for a zone, but may differ when parsing included files from "$INCLUDE". As an example: .PP .Vb 12 \& * zones/example.org has the line "$INCLUDE includes/foo foo" \& * zones/includes/foo has these lines: \& $ORIGIN bar \& asdf A 192.0.2.1 \& $ORIGIN baz.@F \& asdf A 192.0.2.2 \& $ORIGIN quux.@Z \& asdf A 192.0.2.3 \& * This results in creating all of these: \& asdf.bar.foo.example.org A 192.0.2.1 \& asdf.baz.foo.example.org A 192.0.2.2 \& asdf.quux.example.org A 192.0.2.3 .Ve .PP Note that the origin changes accomplished with \f(CW@F\fR and \f(CW@Z\fR backtrack towards the root of the name hierarchy, and thus wouldn't normally be possible without explicitly using the zone name itself. The main benefit of these directives is they allow this kind of origin-switching behavior while keeping all zone data relative to the zone name rather than absolute. When combined with the fact that the zones scanner will load symlinks, this means the above \&\fIzones/example.org\fR could also be symlinked as \fIzones/example.com\fR, loading all the same files and providing an identical tree of data under the other zone name without conflict. .SH "SUPPORTED RESOURCE RECORD TYPES" .IX Header "SUPPORTED RESOURCE RECORD TYPES" All RRs must be of class \f(CW\*(C`IN\*(C'\fR, which is the implicit default. .PP \&\fBgdnsd\fR\|(8) supports the following standard RR types with their standard RDATA formats: .PP traditional: SOA, A, AAAA, NS, PTR, CNAME, MX, SRV, TXT, NAPTR non-traditional: CAA explicitly unsupported: HINFO .PP It also supports the generic format for unknown RR types documented in RFC 3597, which has syntax like: .PP .Vb 1 \& foo TYPE31337 \e# 10 0123456789 ABCDEF0123 .Ve .PP \&... which indicates an RR of numeric type 31337 containing 10 bytes of RDATA, specified as the final part of the RR as a pair of 5\-byte hex strings. See RFC 3597 itself for full details. .PP gdnsd does not allow using the RFC3597 format to specify any of the supported traditional standard RR types, but it can be used to encode data for the non-traditional types. It's also not allowed to use RFC3597 to specify HINFO RRs, as these are now reserved in gdnsd for use in handling \f(CW\*(C`ANY\*(C'\fR queries, using the RFC 8482 HINFO option. .PP \&\f(CW\*(C`SOA\*(C'\fR records' negative-caching TTL is set to the minimum of the traditional "minimum" (last) field (which always means "negative cache TTL" as of RFC 2308), and the actual TTL of the SOA record itself. This TTL is used as the actual TTL of the SOA record any time it is emitted, whether for negative or positive answers. .PP Additionally, gdnsd supports two special-case, non-standard virtual resource record types DYNA and DYNC: .SS DYNA .IX Subsection "DYNA" \&\f(CW\*(C`DYNA\*(C'\fR is for dynamically-determined address records (both A and AAAA) via plugin code. The right-hand-side of a \f(CW\*(C`DYNA\*(C'\fR RR is a plugin name and a resource name separated by an exclamation mark. The named plugin will be fed the resource name and the DNS client's IP address and/or edns-client-subnet information, and it is up to the plugin code which addresses of which types to return in the response. .PP The dynamic plugin lookup for \f(CW\*(C`DYNA\*(C'\fR will be used anywhere that regular \f(CW\*(C`A\*(C'\fR and/or \f(CW\*(C`AAAA\*(C'\fR records would be used. \f(CW\*(C`DYNA\*(C'\fR cannot co-exist with actual static A or AAAA records at the same name, but can co-exist with any other RR-type. .PP \&\f(CW\*(C`DYNA\*(C'\fR and \f(CW\*(C`DYNAAAA\*(C'\fR RRs \fBcannot\fR be used to supply the addresses of nameservers. In other words, any name that exists in zone scope on the right-hand-side of an \f(CW\*(C`NS\*(C'\fR record cannot have \f(CW\*(C`DYNA\*(C'\fR or \f(CW\*(C`DYNAAAA\*(C'\fR (and relatedly, must have at least one of \f(CW\*(C`A\*(C'\fR or \f(CW\*(C`AAAA\*(C'\fR). .PP Example: .PP .Vb 4 \& ; asks plugin \*(Aqgeoip\*(Aq to provide address data from \& ; its resource named \*(Aqpubwww\*(Aq for address queries. \& foo DYNA geoip!pubwww \& foo MX 10 mail .Ve .SS DYNC .IX Subsection "DYNC" \&\f(CW\*(C`DYNC\*(C'\fR has the same syntax as \f(CW\*(C`DYNA\*(C'\fR above, but different data rules. Plugins results returned via \f(CW\*(C`DYNC\*(C'\fR can be either addresses or a \f(CW\*(C`CNAME\*(C'\fR record. \f(CW\*(C`DYNC\*(C'\fR cannot co-exist with \fBany\fR other resource record at the same name, much like normal \f(CW\*(C`CNAME\*(C'\fR RRs. This also implies that \f(CW\*(C`DYNC\*(C'\fR cannot be used at the zone root, as the zone root requires \f(CW\*(C`NS\*(C'\fR and \f(CW\*(C`SOA\*(C'\fR RRs. .PP \&\f(CW\*(C`DYNC\*(C'\fR's dynamic CNAME targets cannot be used to point at names in the same zonefile as the \f(CW\*(C`DYNC\*(C'\fR record; they must be used to point at other zones. .PP Example: .PP .Vb 5 \& ; asks plugin \*(Aqgeoip\*(Aq to provide address data or a CNAME \& ; (at the plugin\*(Aqs discretion) for its resource named \& ; \*(Aqwww\*(Aq. No other RRs of any type for name \*(Aqfoo\*(Aq are \& ; legal alongside this record. \& foo DYNC geoip!www .Ve .SS "DYNA/DYNC TTLs" .IX Subsection "DYNA/DYNC TTLs" \&\f(CW\*(C`DYNA\*(C'\fR and \f(CW\*(C`DYNC\*(C'\fR TTL fields have a syntax extension and slightly different meanings than the TTL field of a traditional, fixed RR. The format for DYNA/DYNC TTLs is \f(CW\*(C`MAX[/MIN]\*(C'\fR, with \f(CW\*(C`MIN\*(C'\fR defaulting to half of \f(CW\*(C`MAX\*(C'\fR if not specified explicitly. .PP Based on the configuration and state of the underlying monitored services, (see "service_types" in \fBgdnsd.config\fR\|(8)), gdnsd knows the minimum time to the next possible state-change which could affect a given \f(CW\*(C`DYNA\*(C'\fR or \&\f(CW\*(C`DYNC\*(C'\fR result. For example, given the configuration and state, it may be known that in order for a currently \f(CW\*(C`DOWN\*(C'\fR address to transition to the \f(CW\*(C`UP\*(C'\fR state (and thus change the answer to a given query) would require 7 more successful monitoring checks in a row at 8\-second intervals, and therefore cannot happen in less than 56 seconds. In this case 56 seconds would be the internally-calculated TTL. .PP In cases where multiple monitored resources factor into a plugin's decision and/or response (e.g. multifo), the calculated TTL will generally be the minimum of all involved internal monitoring TTLs. This calculated TTL is then clamped to the \f(CW\*(C`MAX\*(C'\fR and \f(CW\*(C`MIN\*(C'\fR limits from the zonefile. .PP Examples: .PP .Vb 6 \& ; Explicit range of 30 \- 300: \& www 300/30 DYNC weighted!foo \& ; Implicit range of 150 \- 300: \& www 300 DYNA metafo!myservice \& ; Avoid all TTL\-mangling and use a fixed value of 10 minutes: \& www 600/600 DYNA geoip!foo\-dist .Ve .SS "TXT data auto-splitting" .IX Subsection "TXT data auto-splitting" gdnsd's \f(CW\*(C`TXT\*(C'\fR RRs support the auto-splitting of long string constants. Rather than manually breaking the data into 255\-byte chunks as required by the protocol, you can specify a single long chunk and have the server break it at 255 byte boundaries automatically. (this behavior can be disabled via \fBgdnsd.config\fR\|(5) as well, which will turn oversized chunks into zonefile parsing errors). .PP TXT records are limited to a maximum of 16000 bytes when encoded in rdata form for wire transmission. .SH "SEE ALSO" .IX Header "SEE ALSO" \&\fBgdnsd\fR\|(8), \fBgdnsd.config\fR\|(5) .PP The gdnsd manual. .SH "COPYRIGHT AND LICENSE" .IX Header "COPYRIGHT AND LICENSE" Copyright (c) 2012 Brandon L Black .PP This file is part of gdnsd. .PP gdnsd is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. .PP gdnsd is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. .PP You should have received a copy of the GNU General Public License along with gdnsd. If not, see .