-- 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 is defined %}
-- from 'service dns forwarding domain'
{%   for zone, zonedata in forward_zones.items() %}
{%     if zonedata['addnta'] is defined %}
addNTA("{{ zone }}", "static")
{%     endif %}
{%   endfor %}
{% endif %}