2019-11-01 12:02:43 -04:00
|
|
|
# transfer
|
|
|
|
|
|
|
|
|
|
## Name
|
|
|
|
|
|
2019-11-05 15:57:22 +00:00
|
|
|
*transfer* - perform zone transfers for other plugins.
|
2019-11-01 12:02:43 -04:00
|
|
|
|
|
|
|
|
## Description
|
|
|
|
|
|
|
|
|
|
This plugin answers zone transfers for authoritative plugins that implement
|
|
|
|
|
`transfer.Transferer`.
|
|
|
|
|
|
2019-11-05 15:57:22 +00:00
|
|
|
Transfer answers full zone transfer (AXFR) requests and incremental zone transfer (IXFR) requests
|
|
|
|
|
with AXFR fallback if the zone has changed.
|
2019-11-01 12:02:43 -04:00
|
|
|
|
|
|
|
|
Notifies are not currently supported.
|
|
|
|
|
|
|
|
|
|
## Syntax
|
|
|
|
|
|
|
|
|
|
~~~
|
|
|
|
|
transfer [ZONE...] {
|
|
|
|
|
to HOST...
|
|
|
|
|
}
|
|
|
|
|
~~~
|
|
|
|
|
|
|
|
|
|
* **ZONES** The zones *transfer* will answer zone requests for. If left blank,
|
|
|
|
|
the zones are inherited from the enclosing server block. To answer zone
|
|
|
|
|
transfers for a given zone, there must be another plugin in the same server
|
|
|
|
|
block that serves the same zone, and implements `transfer.Transferer`.
|
|
|
|
|
|
|
|
|
|
* `to ` **HOST...** The hosts *transfer* will transfer to. Use `*` to permit
|
|
|
|
|
transfers to all hosts.
|
2020-01-31 12:37:24 +01:00
|
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
|
|
|
|
|
TODO
|