aboutsummaryrefslogtreecommitdiffstats
path: root/roles/space_server/templates/ipv4.rev.zone.j2
blob: 1736333b7c9de2fc08fb2b99440a934ac587ce55 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
42.10.in-addr.arpa. 600 IN SOA space.labitat.dk. esmil.labitat.dk. 2019040101 7200 3600 604800 86400
42.10.in-addr.arpa. 600 IN NS  space.labitat.dk.

{% for host in local_hosts %}
{% if 'ipv4' in host %}
{% for ip in host.ipv4 %}
{% if ip.startswith('10.42.') %}
{{ ip.split('.')[3] }}.{{ ip.split('.')[2] }}.42.10.in-addr.arpa. 600 IN PTR {{ host.name }}.s.
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}