coredns/plugin/transfer
Miek Gieben 24176a97e6
Move to CODEOWNERS (#3489)
* Move to CODEOWNERS

No change in who own what; just a move to CODEOWNERS. This allows
dreck cleanups.

Added .dreck.yaml for alias and exec.

Fixes: #3486

Signed-off-by: Miek Gieben <miek@miek.nl>

* stickler bot

Signed-off-by: Miek Gieben <miek@miek.nl>

* sort the file

Signed-off-by: Miek Gieben <miek@miek.nl>
2019-11-29 13:17:05 +00:00
..
README.md transfer: small doc update (#3426) 2019-11-05 10:57:22 -05:00
setup.go plugin/transfer: Zone transfer plugin (#3223) 2019-11-01 12:02:43 -04:00
setup_test.go plugin/transfer: Zone transfer plugin (#3223) 2019-11-01 12:02:43 -04:00
transfer.go Call wg.Add in main goroutine to avoid race conditons. (#3433) 2019-11-07 15:29:50 +00:00
transfer_test.go plugin/transfer: Zone transfer plugin (#3223) 2019-11-01 12:02:43 -04:00

transfer

Name

transfer - perform zone transfers for other plugins.

Description

This plugin answers zone transfers for authoritative plugins that implement transfer.Transferer.

Transfer answers full zone transfer (AXFR) requests and incremental zone transfer (IXFR) requests with AXFR fallback if the zone has changed.

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.