Skip to content
Snippets Groups Projects
Select Git revision
  • 08684e90bb4dd77a4d377e91c61d3bc3cf6ea847
  • experimental default protected
  • v2023.2.5-ffs
  • nrb/ex400-remove-wps
  • nrb/airmax-test
  • v2023.2.4-ffs
  • nrb/ar9344-reset-sequence
  • autinerd/experimental-openwrt-24.10
  • v2023.2.3-ffs
  • v2023.2.2-ffs
  • v2023.2-ffs
  • v2023.1-ffs
  • v2022.1.4-ffs
  • feature/addMikrotikwAP
  • v2022.1.3-ffs
  • v2021.1.2-ffs
  • v2022.1.1-ffs
  • master protected
  • v2021.1.1-ffs
  • nrb/gluon-master-cpe510
  • v2021.1-ffs
  • experimental-2025-06-22
  • experimental-2025-06-22-base
  • v2023.2.5-ffs0.1
  • experimental-2025-06-08
  • experimental-2025-06-08-base
  • experimental-2025-06-06
  • experimental-2025-06-06-base
  • experimental-2025-05-27
  • experimental-2025-05-27-base
  • experimental-2025-05-18
  • experimental-2025-05-18-base
  • experimental-2025-05-15
  • experimental-2025-05-15-base
  • experimental-2025-05-13
  • experimental-2025-05-13-base
  • experimental-2025-05-08
  • experimental-2025-05-08-base
  • experimental-2025-05-05
  • experimental-2025-05-05-base
  • experimental-2025-05-02
41 results

modules

Blame
    • Jan-Niklas Burfeind's avatar
      ffe8cab5
      modules: update packages · ffe8cab5
      Jan-Niklas Burfeind authored
      04eadf860 dnsproxy: Update to 0.46.4
      f5547cfde cloudflared: Update to 2022.11.1
      4abdc2f33 github-ci: error on any shell errors
      798fe3f59 django: bump version 4.0.8
      ce3e9d4b4 natmap: merge "ipv4" and "ipv6" options into single "family" option
      0393a5c19 snowflake: update to version 2.4.1
      ec2fbd57e natmap: add new package
      ffe8cab5
      History
      modules: update packages
      Jan-Niklas Burfeind authored
      04eadf860 dnsproxy: Update to 0.46.4
      f5547cfde cloudflared: Update to 2022.11.1
      4abdc2f33 github-ci: error on any shell errors
      798fe3f59 django: bump version 4.0.8
      ce3e9d4b4 natmap: merge "ipv4" and "ipv6" options into single "family" option
      0393a5c19 snowflake: update to version 2.4.1
      ec2fbd57e natmap: add new package
    dns-forwarder.rst 810 B

    DNS forwarder

    A Gluon node can be configured to act as a DNS forwarder. Requests for the next-node hostname(s) can be answered locally, without querying the upstream resolver.

    Note: While this reduces answer time and allows to use the next-node hostname without upstream connectivity, this feature should not be used for next-node hostnames that are FQDN when the zone uses DNSSEC.

    One or more upstream resolvers can be configured in the dns.servers setting. When next_node.name is set, A and/or AAAA records for the next-node IP addresses are placed in the dnsmasq configuration.

    dns = {
      servers = { '2001:db8::1', },
    },
    
    next_node = {
      name = { 'nextnode.location.community.example.org', 'nextnode', 'nn' },
      ip6 = '2001:db8:8::1',
      ip4 = '198.51.100.1',
    }