coredns/middleware/file
Miek Gieben 00f5c7797e mw/kubernetes: remove federation and cidr (#916)
* mw/kubernetes: remove federation and cidr

Remove both as we have a corefile syntax change that handles cidr and
remove federation because that is going to be its own middleware.

* backwards incompat changes

This PR:
* removes cidr from kubernetes (core Corefile feature now)
* removes federation from kubernets (comes back as new middleware)
* [remove autopath - which was already gone, so that already was
  backwards incompat]
* adds `fallthrough` to the *etcd* middleware and makes you enable it.
* Fail on unknown properties
* documentation
* Disable TestHealthCheck as it uses realtime and fails
2017-08-14 08:49:26 +01:00
..
tree Fix various issues with formatting and typos (#424) 2016-11-13 14:03:12 +00:00
closest.go Fix import path github.com/miekg/coredns -> github.com/coredns/coredns (#547) 2017-02-22 06:51:47 +00:00
closest_test.go middleware/file: don't reload zone when SOA isn't changed (#707) 2017-06-08 18:43:11 +01:00
cname_test.go middleware/file: don't reload zone when SOA isn't changed (#707) 2017-06-08 18:43:11 +01:00
delegation_test.go middleware/file: don't reload zone when SOA isn't changed (#707) 2017-06-08 18:43:11 +01:00
dname.go middleware/file: add DNAME support (#651) 2017-05-26 10:37:06 +01:00
dname_test.go middleware/file: don't reload zone when SOA isn't changed (#707) 2017-06-08 18:43:11 +01:00
dnssec_test.go mw/file: rename to BenchmarkFileLookup (#741) 2017-06-18 19:50:38 +01:00
dnssex_test.go middleware/file: proper support for wildcard (#323) 2016-10-08 15:22:31 +01:00
ds_test.go middleware/file: don't reload zone when SOA isn't changed (#707) 2017-06-08 18:43:11 +01:00
ent_test.go middleware/file: don't reload zone when SOA isn't changed (#707) 2017-06-08 18:43:11 +01:00
example_org.go middleware/file: fix delegations (#376) 2016-11-05 14:39:49 +00:00
file.go middleware/file: consider no SOA a fatal error (#734) 2017-06-13 12:51:52 -07:00
file_test.go mw/file: rename to BenchmarkFileLookup (#741) 2017-06-18 19:50:38 +01:00
glue_test.go middleware/file: don't reload zone when SOA isn't changed (#707) 2017-06-08 18:43:11 +01:00
lookup.go all: gometalinter (#843) 2017-08-06 05:54:24 -07:00
lookup_test.go mw/file: rename to BenchmarkFileLookup (#741) 2017-06-18 19:50:38 +01:00
notify.go all: gometalinter (#843) 2017-08-06 05:54:24 -07:00
nsec3_test.go middleware/file: don't reload zone when SOA isn't changed (#707) 2017-06-08 18:43:11 +01:00
README.md middleware/secondary: multiple fixes (#745) 2017-06-21 23:46:20 -07:00
reload.go cleanup: go vet and golint run (#736) 2017-06-14 09:37:10 -07:00
reload_test.go middleware/file: don't reload zone when SOA isn't changed (#707) 2017-06-08 18:43:11 +01:00
secondary.go middleware/secondary: add jitter (#841) 2017-08-06 02:22:50 -07:00
secondary_test.go Fix import path github.com/miekg/coredns -> github.com/coredns/coredns (#547) 2017-02-22 06:51:47 +00:00
setup.go mw/kubernetes: remove federation and cidr (#916) 2017-08-14 08:49:26 +01:00
setup_test.go cidr everywhere: check all middleware (#915) 2017-08-13 18:16:25 +01:00
wildcard.go middleware/file: fix delegations (#376) 2016-11-05 14:39:49 +00:00
wildcard_test.go middleware/file: fix multiple wildcards (#787) 2017-07-24 14:21:40 -07:00
xfr.go middleware/secondary: multiple fixes (#745) 2017-06-21 23:46:20 -07:00
xfr_test.go middleware/file: don't reload zone when SOA isn't changed (#707) 2017-06-08 18:43:11 +01:00
zone.go golint cleanup (#828) 2017-08-04 09:46:40 -07:00
zone_test.go middleware/file: fix delegations (#376) 2016-11-05 14:39:49 +00:00

file

file enables serving zone data from an RFC 1035-style master file.

The file middleware is used for an "old-style" DNS server. It serves from a preloaded file that exists on disk. If the zone file contains signatures (i.e. is signed, i.e. DNSSEC) correct DNSSEC answers are returned. Only NSEC is supported! If you use this setup you are responsible for resigning the zonefile.

Syntax

file DBFILE [ZONES...]
  • DBFILE the database file to read and parse. If the path is relative the path from the root directive will be prepended to it.
  • ZONES zones it should be authoritative for. If empty, the zones from the configuration block are used.

If you want to round robin A and AAAA responses look at the loadbalance middleware.

TSIG key configuration is TODO; directive format for transfer will probably be extended with TSIG key information, something like transfer out [ADDRESS...] key [NAME[:ALG]] [BASE64]

file DBFILE [ZONES... ] {
    transfer to ADDRESS...
    no_reload
    upstream ADDRESS...
}
  • transfer enables zone transfers. It may be specified multiples times. To or from signals the direction. ADDRESS must be denoted in CIDR notation (127.0.0.1/32 etc.) or just as plain addresses. The special wildcard * means: the entire internet (only valid for 'transfer to'). When an address is specified a notify message will be send whenever the zone is reloaded.
  • no_reload by default CoreDNS will reload a zone from disk whenever it detects a change to the file. This option disables that behavior.
  • upstream defines upstream resolvers to be used resolve external names found (think CNAMEs) pointing to external names. This is only really useful when CoreDNS is configured as a proxy, for normal authoritative serving you don't need or want to use this.

Examples

Load the example.org zone from example.org.signed and allow transfers to the internet, but send notifies to 10.240.1.1

file example.org.signed example.org {
    transfer to *
    transfer to 10.240.1.1
}