summaryrefslogtreecommitdiff
path: root/data/templates/dns-forwarding/recursor.forward-zones.conf.tmpl
blob: de5eaee00174d262e357f754d33f05f6ee676d57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Autogenerated by VyOS (vyos-hostsd)
# Do not edit, your changes will get overwritten

# dot zone (catch-all): '+' indicates recursion is desired
# (same as forward-zones-recurse)
{#- the code below ensures the order of nameservers is determined first by #}
{#- the order of tags, then by the order of nameservers within that tag #}
{%- set n = namespace(dot_zone_ns='') %}
{%- for tag in name_server_tags_recursor %}
{%- set ns = '' %}
{%- if tag in name_servers %}
{%- set ns = ns + name_servers[tag]|join(', ') %}
{%- set n.dot_zone_ns = (n.dot_zone_ns, ns)|join(', ') if n.dot_zone_ns != '' else ns %}
{%- endif %}
# {{ tag }}: {{ ns }}
{%- endfor %}

{%- if n.dot_zone_ns %}
+.={{ n.dot_zone_ns }}
{%- endif %}

{% if forward_zones -%}
# zones added via 'service dns forwarding domain'
{%- for zone, zonedata in forward_zones.items() %}
{% if zonedata['recursion-desired'] %}+{% endif %}{{ zone }}={{ zonedata['nslist']|join(', ') }}
{%- endfor %}
{%- endif %}