add ipa host

This commit is contained in:
Daniel Poelzleithner 2019-07-23 02:18:17 +02:00
parent 500accabeb
commit 45a8f7ea5e
3 changed files with 10 additions and 1 deletions

View File

@ -17,7 +17,7 @@ bind:
# dns.spaceboyz.net
- 172.22.24.4
- 2a01:4f8:a0:33d0::4
serial: 2019071702
serial: 2019071703
reverse-zones-inet:
- 72.20.172.in-addr.arpa

View File

@ -147,6 +147,7 @@ hosts-inet:
logging: 172.20.73.13
dnscache: 172.20.73.8
mongo: 172.20.73.14
ipa: 172.20.73.20
priv1:
priv1-gw: 172.20.74.1
{%- for i in range(1, 14) %}
@ -276,6 +277,9 @@ hosts-inet:
c3d2-gw: 172.22.99.4
bgp: 172.22.99.250
hosts-inet-extra:
ipa: 172.20.73.20
hosts-inet6:
dn42:
mgmt:

View File

@ -21,3 +21,8 @@ $TTL 10M
{%- for ns in pillar['bind']['public-ns'][ctx] %}
dyn IN NS {{ ns }}.
{%- endfor %}
{%- for name, a in pillar['hosts-inet-extra'].items() %}
{{ name }} IN A {{ a }}
{%- endfor %}