Cache prefilling

This provides ability to periodically prefill the DNS cache by importing root zone data obtained over HTTPS.

Intended users of this module are big resolver operators which will benefit from decreased latencies and smaller amount of traffic towards DNS root servers.

cache/prefill: <list>
origin: <zone name>

Name of the zone, only root zone import is supported at the moment.

url: <url string>

URL of a file in RFC 1035 zone file format.

refresh-interval: <time ms|s|m|h|d>
Default:

1d

Time between zone data refresh attempts.

ca-file: <path>

Path to CA certificate bundle used to authenticate the HTTPS connection (optional, system-wide store will be used if not specified)

cache:
  prefill:
    - origin: "."
      url: https://www.internic.net/domain/root.zone
      refresh-interval: 12h
      ca-file: /etc/pki/tls/certs/ca-bundle.crt

This configuration downloads the zone file from URL https://www.internic.net/domain/root.zone and imports it into the cache every day. The HTTPS connection is authenticated using a CA certificate from file /etc/pki/tls/certs/ca-bundle.crt and signed zone content is validated using DNSSEC.

The root zone to be imported must be signed using DNSSEC and the resolver must have a valid DNSSEC configuration.

Dependencies

Prefilling depends on the lua-http library.