DNS Server
Tutorials
DNS over HTTPS (DoH)
Secure DNS
- DNS settings to avoid email spoofing and phishing for unused domain - nixCraft (cyberciti.biz)
- How to test and validate DNSSEC using dig command line - nixCraft (cyberciti.biz)
Adguard Home
NSD
- NSD Tutorial Updated for 2024: Now With Zone Transfers! - LowEndBox
- How To Use NSD, an Authoritative-Only DNS Server, on Ubuntu 14.04 | DigitalOcean
Pi-hole
Pi-hole - A DNS-based advertisement blocker
docker-compose.yaml :
pihole:
image: pihole/pihole:latest
container_name: pihole
restart: always
ports:
- "53:53/tcp"
- "53:53/udp"
dns:
- 127.0.0.1
- 1.1.1.1
environment:
TZ: 'America/Chicago'
WEBPASSWORD: 'password'
PIHOLE_DNS_: 1.1.1.1;9.9.9.9
DNSSEC: 'false'
WEBTHEME: default-dark
volumes:
- '~/homelabservices/pihole/pihole:/etc/pihole/'
- '~/homelabservices/pihole/dnsmasq.d:/etc/dnsmasq.d/'
networks:
- pihole
networks:
pihole:
driver: bridge
name: pihole
No Comments