dns-cache.rst 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. DNS caching
  2. ===========
  3. User experience may be greatly improved when dns is accelerated. Also, it
  4. seems like a good idea to keep the number of packages being exchanged
  5. between node and gateway as small as possible. In order to do this, a
  6. DNS cache may be used on a node. The dnsmasq instance listening on port
  7. 53 on the node will be reconfigured to answer requests, use a list of
  8. upstream servers and a specific cache size if the options listed below are
  9. added to site.conf. Upstream servers are the DNS servers which are normally
  10. used by the nodes to resolve hostnames (e.g. gateways/supernodes).
  11. There are the following settings:
  12. servers
  13. cacheentries
  14. If both options are set the node will cache as much DNS records as set with
  15. 'cacheentries' in RAM. The 'servers' list will be used to resolve the received
  16. DNS queries if the request cannot be answered from cache.
  17. If these settings do not exist, the cache is not intialized and RAM usage will not increase.
  18. When next_node.name is set, an A record and an AAAA record for the
  19. next-node IP address are placed in the dnsmasq configuration. This means that the content
  20. of next_node.name may be resolved even without upstream connectivity.
  21. ::
  22. dns = {
  23. cacheentries = 5000,
  24. servers = { '2001:db8::1', },
  25. },
  26. next_node = {
  27. name = 'nextnode',
  28. ip6 = '2001:db8:8::1',
  29. ip4 = '198.51.100.1',
  30. }
  31. The cache will be initialized during startup.
  32. Each cache entry will occupy about 90 bytes of RAM.