dns-forwarder.rst 754 B

1234567891011121314151617181920212223242526
  1. DNS forwarder
  2. =============
  3. A Gluon node can be configured to act as a DNS forwarder. Requests for the
  4. next-node hostname can be answered locally, without querying the upstream
  5. resolver.
  6. **Note:** While this reduces answer time and allows to use the next-node
  7. hostname without upstream connectivity, this feature should not be used for
  8. next-node hostnames that are FQDN when the zone uses DNSSEC.
  9. One or more upstream resolvers can be configured in the *dns.servers* setting.
  10. When *next_node.name* is set, A and/or AAAA records for the next-node IP
  11. addresses are placed in the dnsmasq configuration.
  12. ::
  13. dns = {
  14. servers = { '2001:db8::1', },
  15. },
  16. next_node = {
  17. name = 'nextnode',
  18. ip6 = '2001:db8:8::1',
  19. ip4 = '198.51.100.1',
  20. }