auto make -f Makefile.doc

This commit is contained in:
coredns-auto-go-mod-tidy[bot]
2020-09-24 18:30:59 +00:00
parent 9798dd067f
commit 8c6ca43571
7 changed files with 67 additions and 53 deletions

View File

@@ -35,7 +35,6 @@ A working syntax would be:
.nf
secondary [zones...] {
transfer from ADDRESS
transfer to ADDRESS
}
.fi
@@ -43,15 +42,14 @@ secondary [zones...] {
.IP \(bu 4
\fB\fCtransfer from\fR specifies from which address to fetch the zone. It can be specified multiple times;
if one does not work, another will be tried.
.IP \(bu 4
\fB\fCtransfer to\fR can be enabled to allow this secondary zone to be transferred again.
if one does not work, another will be tried. Transfering this zone outwards again can be done by
enableing the \fItransfer\fP plugin.
.PP
When a zone is due to be refreshed (Refresh timer fires) a random jitter of 5 seconds is
applied, before fetching. In the case of retry this will be 2 seconds. If there are any errors
during the transfer the transfer fails; this will be logged.
during the transfer in, the transfer fails; this will be logged.
.SH "EXAMPLES"
.PP
@@ -63,8 +61,7 @@ Transfer \fB\fCexample.org\fR from 10.0.1.1, and if that fails try 10.1.2.1.
.nf
example.org {
secondary {
transfer from 10.0.1.1
transfer from 10.1.2.1
transfer from 10.0.1.1 10.1.2.1
}
}
@@ -78,10 +75,12 @@ Or re-export the retrieved zone to other secondaries.
.RS
.nf
\&. {
secondary example.net {
example.net {
secondary {
transfer from 10.1.2.1
transfer to *
}
transfer {
to *
}
}
@@ -92,3 +91,7 @@ Or re-export the retrieved zone to other secondaries.
.PP
Only AXFR is supported and the retrieved zone is not committed to disk.
.SH "ALSO SEE"
.PP
See the \fItransfer\fP plugin to enable zone transfers \fIto\fP other servers.