coredns/plugin/transfer
Yong Tang 614d08cba2
Revert "Implement notifies for transfer plugin (#3972)" (#3995)
This reverts commit 68f1dd5ddf.

Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
2020-07-08 09:00:26 -07:00
..
README.md Revert "Implement notifies for transfer plugin (#3972)" (#3995) 2020-07-08 09:00:26 -07:00
setup.go Revert "Implement notifies for transfer plugin (#3972)" (#3995) 2020-07-08 09:00:26 -07:00
setup_test.go Revert "Implement notifies for transfer plugin (#3972)" (#3995) 2020-07-08 09:00:26 -07:00
transfer.go Revert "Implement notifies for transfer plugin (#3972)" (#3995) 2020-07-08 09:00:26 -07:00
transfer_test.go Revert "Implement notifies for transfer plugin (#3972)" (#3995) 2020-07-08 09:00:26 -07:00

transfer

Name

transfer - perform zone transfers for other plugins.

Description

This plugin answers zone transfers for authoritative plugins that implement transfer.Transferer. Currently, no internal plugins implement this interface.

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.

Examples

TODO