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