summaryrefslogtreecommitdiff
path: root/data/templates/dns-forwarding/recursor.vyos-hostsd.conf.lua.tmpl
blob: 6d1760199cbf9ba3bec1e2c6f2be25f1864f9042 (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
-- Autogenerated by VyOS (vyos-hostsd) --
-- Do not edit, your changes will get overwritten --

{% if hosts -%}
-- from 'system static-host-mapping' and DHCP server
{%- for tag, taghosts in hosts.items() %}
{%- for host, hostprops in taghosts.items() %}
addNTA("{{ host }}.", "{{ tag }}")
{%- for a in hostprops['aliases'] %}
addNTA("{{ a }}.", "{{ tag }} alias")
{%- endfor %}
{%- endfor %}
{%- endfor %}
{%- endif %}

{% if forward_zones -%}
-- from 'service dns forwarding domain'
{%- for zone, zonedata in forward_zones.items() %}
{%- if zonedata['addNTA'] %}
addNTA("{{ zone }}.", "static")
{%- endif %}
{%- endfor %}
{%- endif %}