Install PowerDNS on Ubuntu 20.04

PowerDNS is an OpenSource DNS server. Update apt repo apt-get update && apt-get upgrade -y On Ubuntu, systemd-resolved listen to port 53. This is a local DNS resolver, we need to stop this service before we can install PowerDNS. systemctl disable systemd-resolved systemctl stop systemd-resolved rm -f /etc/resolv.conf echo “nameserver 1.1.1.1” > /etc/resolv.conf echo “nameserver … Read more

PowerDNS

Install PowerDNS Install PowerDNS on Ubuntu 20.04 PowerDNS Command line List all DNS Zones pdns_control list-zones pdns_control list-zones slave Delete a DNZ Zone pdnsutil delete-zone DOMAIN_NAME To notify slave DNS server pdns_control notify DOMAIN_NAME PowerDNS Admin Python Django application to manage PowerDNS servers. https://github.com/PowerDNS-Admin/PowerDNS-Admin powerdns cpanel