20 December 2018
Laurens Gregoir
2953 Views
Intro
Since ads are bothering me more and more, and if you feel the same like me you can look into installing PiHole on a Debian server (or RaspberryPi, whatever...).
This setup includes Easylist functionality!
The following is my PiHole setup:

In my domain there are two domain servers. The upstream DNS (forwarders) are configured towards my PiHole servers.
These are on their turn the downstream and upstream DNS servers of my domain.
This provides me with a certain fail over safeguard.
Article
Pre-reqs:
- Install a new Debian server (or use your existing one) with 1024MB RAM (or 512MB), 2 CPU (or 1) with 1 NW interface
- Install the following programs before installing PiHole
- apt-get update
- apt-get upgrade
- apt-get install curl ntp mailx iptables-persistent
- Set a static NW address. In my case I have also an IPv6 network next to my IPv4
- If you have a Windows domain server(s) create a new A-record for the IPv4 (and IPv6) address(es)
- Set the firewall ports on your Debian server
- Note firewallD will not work on Debian 9, I've installed iptables-persistant
- Add the rules mentioned in the URL.
- Then save the added rules:
- iptables-save > /etc/iptables/rules.v4
- ip6tables-save > /etc/iptables/rules.v6
- Set the firewall ports (DNS 53) on your firewall (I use PFsense) inbound (upstream) and outbound (downstream).


- Then install PiHole on your new Linux server
- curl -sSL https://install.pi-hole.net | bash
- Follow the automated setup
- Configure PiHole via it's webconsole
- Set the desired DNS servers to your flavor
- Do not forget to set your administrator address
- For Windows domains extra config!
- Enable "Never forward non-FQDNs"
- Enable "Never forward reverse lookups for private IP ranges"
- Enable "Use conditional forwarding"
- Set it to the IP address of your AD server
- Set the local domain name to your domain name
- Visit my GitHub page for the scripts (EasyList downloader, DB backup script, DB rotation script, ...) and extra information about the configuration of PiHole
- Now go to your domain controller it's DNS server and change your forwarders to your PiHole server(s)
This wil place your PiHole between your Windows domain and the outside world.

You may also disable the root hints, currently it's enabled on my set up for testing purposes.
The end result will be similar to mine.

Loading Comments...