whack-a-service/Ansible_DEMO/repo/bind_zone.j2

24 lines
985 B
Text
Raw Normal View History

2021-12-28 18:06:39 +01:00
$ORIGIN .
; ---Area 1---
$TTL 300 ; 1 day
; ---Area 2---
{{ zone }}.{{ domain }} IN SOA {{ machine_hostname }}.{{ zone }}.{{ domain }}. root.{{ zone }}.{{ domain }}. (
2021102303 ; serial
300 ; refresh (1 giorno)
300 ; retry (8 ore)
600 ; expire (1 settimana)
300 ; minimum (1 giorno)
);
; ---Area 3---
IN NS {{ machine_hostname }}.{{ zone }}.{{ domain }}.
; ---Area 4---
$ORIGIN {{ zone }}.{{ domain }}.
;NOTA: ns2 è il nome del server che funge da DNS server
{{ machine_hostname }} 300 IN A {{ machine_pub_ip.stdout }}
; Qui potete inserire gli IP dei client-server che hanno un IP statico
{{ publish }} 30 IN A {{ machine_pub_ip.stdout }}
{{ zone }}.{{ domain }}. 300 IN A {{ machine_pub_ip.stdout }}