create config powerdns

This commit is contained in:
vincent 2023-10-15 20:44:12 +02:00
parent a8ed6daf77
commit 1fbf3a9407
6 changed files with 63 additions and 0 deletions

19
ansible/group_vars/DNS Normal file
View File

@ -0,0 +1,19 @@
pdns_config:
local-address: "127.0.0.1"
local-port: "5300"
api: yes
api-key:
pdns_backends:
gsqlite3:
dnssec: yes
database: "/var/lib/powerdns/powerdns.sqlite"
pdns_sqlite_databases_locations:
- "/var/lib/powerdns/powerdns.sqlite"
pdns_rec_config:
forward-zones:
- "consul=127.0.0.1:8600"
- "ducamps.win=192.168.1.10"
- "ducamps.eu=192.168.1.10"
local-address: "{{ ansible_default_ipv4.address }}"

View File

@ -0,0 +1,6 @@
---
- name: DNS playbook
hosts: DNS
roles:
- role: pdns_recursor-ansible
become: true

View File

@ -7,6 +7,8 @@ gerard
corwin
merlin
[DNS]
gerard
[dhcp]
gerard

View File

@ -39,3 +39,5 @@
scm: git
- src: git@github.com:vincentDcmps/ansible-role-nfs.git
scm: git
- src: https://github.com/PowerDNS/pdns-ansible.git
- src: https://github.com/PowerDNS/pdns_recursor-ansible.git

View File

@ -5,6 +5,9 @@ gerard-dev
[VPS]
merlin-dev
[DNS]
oscar-dev
[database]
oscar-dev

31
docs/ADR/004-DNS.md Normal file
View File

@ -0,0 +1,31 @@
# 004 DNS
## Status
In progress
## Context
curently main local domain DNS is located on NAS.
goal:
- avoid DNS outtage in case of NAS reboot (my synology have 10 years and is a litle long to reboot) morever during NAS reboot we lost the adblock DNS in the nomad cluster because nomad depend of the NFS share.
- remove the direct redirection to service.consul DNS and the IPTABLE rule use to redirect port 53 on consul on gerard instead new DNS could be forward directly to an active consul node on port 8300
### DNS software
need DHCP Dynamic update
could redirect domain on other port than port 53
## Decision
we will migrate Main Domain DNS from NAS to gerard (powerDNS)
powerDNS provide two disting binaries one for authority server one other for recursor
goal is to first migrate the recursice part from synology to a physical service
and in second time migrate authority server in nmad cluster
## Consequences
before to move authority server need to remove DB dns dependance (create db consul services)
need to delete the iptable rule on gerard before deploy