Adblock DNS Server powered by Bancuh DNS
and dnsdist-acme
running in Docker.
A DNS server helps to resolve domain names on the internet into their appropriate ip addresses. When your web browser or apps need to fetch some info from a web service over the internet, it first makes a DNS query to find the ip address of that web service. Next it will use that ip address to connect to the server that is hosting the service. It is the foundation of how the internet works.
Some well known public DNS serves are as follows:
- Google:
- 8.8.8.8
- 8.8.4.4
- CloudFlare
- 1.1.1.1
- 1.0.0.1
By default, all internet connected devices and networks are configured to point at some DNS servers or other. This is usually based on the default config of the device, or network's ISP.
An Adblock DNS server works just like a regular DNS server, but with some additional custom rules to block Ads. On top of its regular functionality, an Adblock DNS server will resolve domains for known Ads services, into an unrouteable IP address. Without a valid ip address, your web browser and apps cannot connect to the servers hosting the Ads service. Ads would effectively be blocked. The same custom rules can also be used to block known user tracking servers, malware sites and sites for adult contents.
There are plenty of free publicly available Adblock DNS on the internet such as AdGuard, NextDNS, etc. I also host my own Bancuh Adblock DNS service for free for public use.
However, there are situations where a person might want to host their own private dns server, and have more control over its behavior. For example, you may want to host your own Adblock DNS Server as closely to your location as possible, for best performance.
This project helps you to quickly spin up your own Adblock DNS Server using a few simple commands. This project is also used to run my Bancuh Adblock DNS service.
The default DNS server comes preloaded with a blocklist that has been compiled from multiple sources of adblock dns host files. The sources list has been revised several times based on user feedback.
However, I also provide the tools and scripts necessary if you would like to customize your own block list.
This project is used to run the Bancuh Adblock DNS service. If you want to have a taste of what you can run using this project, visit the Quick Start page and try setting it for use on your device.
To run this project, I recommend that you get a Linux VPS server with a publicly reachable static IP address. There are plenty of providers out there, so just pick your favourite. Using a VPS makes it easy spin up a new server with Linux installed, and to start over in case you misconfigured something. Having a static and public IP address also allows you to share this DNS server among friends and families when you wish.
It is also possible to run this project on a local network, either using a computer running Linux, or a virtual machine. If you are not willing to spend the money on a VPS just yet, or you are still experimenting, a virtual machine works fine.
The default dns server in this project has a blocklist of about 3 million sites. It can take close to 2 GiB of RAM to run without a hiccup. I recommend that you provide your server with at least that amount for a smooth operation.
The server that you are preparing should run a Linux server OS. I recommend going for the latest LTS edition of your favourite Linux distro. I usually go for the latest Ubuntu Server LTS edition available.
You also need to be able to ssh into the server securely. Some basic server hardening steps won't hurt as well.
Your server also needs to have Docker and Docker Compose installed.
A DNS server typically listens and handles DNS queries on TCP/UDP ports 53. Before proceeding any further, we need to ensure that the ports that we need are available for use, and not being occupied by a different process running on the server.
Run the following commands on your server as root.
sudo lsof -i:53
# no result
If you see an empty prompt, it means that the port is open. Feel free to skip the next section.
On some modern Linux distros running systemd
, there is a locally running dns service called systemd-resolved
that listens on port 53
.
By default, this service handles any outgoing DNS results and caches them locally for performance.
sudo lsof -i:53
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
systemd-r 967 systemd-resolve 16u IPv4 34553 0t0 UDP localhost:domain
systemd-r 967 systemd-resolve 17u IPv4 34554 0t0 TCP localhost:domain (LISTEN)
If you see something similar to the above prompt it means that systemd-resolved
is running and needs to be disabled.
There are plenty of guides on the internet on how to do this for specific Linux distros.
The following should work for Ubuntu Server 20.04
.
-
Disable and stop the systemd-resolved service:
sudo systemctl disable systemd-resolved sudo systemctl stop systemd-resolved
-
Edit the file:
/etc/resolv.conf
, maybe replacing with google dnsnameserver 8.8.8.8 nameserver 8.8.4.4
-
Test that the port is open
sudo lsof -i:53 # no result
Clone this project. Then, cd into the cloned project folder.
git clone https://github.com/ragibkl/adblock-dns-server.git
cd adblock-dns-server
-
cd into the
default
folder. Run the start script The server may take a few minutes to spin up.cd EXAMPLES/default ./start.sh
-
It should also setup a
.env
file with some default values.# file: EXAMPLES/default/.env CONFIG_URL=https://raw.githubusercontent.com/ragibkl/adblock-dns-server/master/data/configuration.yaml #FORWARDERS=8.8.8.8,8.8.4.4 TLS_ENABLED=false TLS_DOMAIN=dns1.example.com [email protected]
CONFIG_URL - this value specifies the config file location where the server should load its configuration. The server uses the sources in that config file to dynamically compile the ads blocklist during server startup. The ads blocklist is also refreshed and recompiled every hour automatically. The default value here points to the configuration file maintained in this repo. See section below on how to use a customized blocklist configuration.
FORWARDERS - this value specifies custom backend dns servers to use as forwarders. By default, this value is empty and the server will use a built-in bind server to recursively resolve dns queries. This is best for privacy but might use more memory. If you would like to forward dns queries to other dns servers, uncomment and set this to your preferred values. This will also turn off the internal bind server.
TLS_ENABLED - if set to
true
, the server will also enable DoH and DoT dns protocols. This requires thatTLS_DOMAIN
andTLS_EMAIL
to be set correctlyTLS_DOMAIN - only required when
TLS_ENABLED=true
. This value should point to a public domain name record that points to the public ip of your server. We use this value to request the TLS certificates from LetsEncryptTLS_EMAIL - only required when
TLS_ENABLED=true
. This value should point to your email. LetsEncrypt uses this value to send you reports on expiring TLS certificates.If you changed any of the values above, please re-run the start script.
-
Stopping the service
./stop.sh
The above instructions will run the adblock-dns-server
using the default blocklist configuration.
In order to add additional ads-domains to the blacklist, or filter some in a whitelist, you also have the option to use a custom config.
-
Modify the contents under
data/
folder as you see fit. Feel free to add/remove additional domains and http sources as needed. -
Change the
CONFIG_URL
value to point to the local config file. This works because I have conveniently mounted thedata/
folder into/local-data/
in the container. You can check thedocker-compose.yml
file for the corresponding line.# file: EXAMPLES/default/.env CONFIG_URL=/local-data/configuration.yaml ...
-
Rerun the start script.
By default, the server only listens for dns requests via regular dns protocol. The server also supports listening dns requests via DoH and DoT protocols. You can make this work by the following:
-
Your server needs to have a public IP address. A web request from the public Internet should be able to reach you by port 80.
-
You also need to have a domain name record that points to the public IP address of your server. Something in the form of
dns1.example.com
. -
Change the config in the
.env
file as follows:# file: EXAMPLES/default/.env ... TLS_ENABLED=true # set this to true to enable DoH and DoT TLS_DOMAIN=dns1.example.com # this should be the domain name that points to the public IP address of your server [email protected] # your email, must be a valid email address
-
Rerun the start script.
Now that we have spin up our Adblock DNS Server, it is time for us to run a few tests to make sure that it is behaving as expected.
# tests dns lookup against Google's dns server
# should return regular/valid response
$ nslookup zedo.com 8.8.8.8
Server: 8.8.8.8
Address: 8.8.8.8#53
Non-authoritative answer:
Name: zedo.com
Address: 64.41.197.44
# tests dns lookup against our adblock dns server
# should return our server's IP or the null route instead
$ nslookup zedo.com X.X.X.X
Server: X.X.X.X
Address: X.X.X.X#53
Non-authoritative answer:
Name: zedo.com
Address: X.X.X.X
You can also see the logs of all dns requests that you make to the server.
For privacy reasons, the logs viewer will only show you queries based on your current IP address. If you make any dns queries from an IP address, you can only view those queries on a web browser from the same IP address. Additionally, the logs file is emptied every 10 minutes.
On your web browser, simply visit the logs endpoints as follows:
- http://server-ip-address:8080/logs
- http://dns1.example.com:8080/logs
- https://dns1.example.com:8443/logs # only with tls enabled
This works on all devices connected to the wifi router. This is the best approach if you want this change to apply to all devices in your network, and only have a single place to make the change.
-
Go to your router admin page, under WAN settings.
-
Edit DNS settings.
-
Use your adblock-dns server's IP address instead of automatic or Google's (8.8.8.8, 8.8.4.4).
-
Go to your router LAN -> DHCP settings.
-
Ensure that the DHCP DNS server is set to your router's IP address.
This works on a single computer.
-
Go to your computer's network setting.
-
Change DNS settings.
-
Use your adblock-dns server's IP address instead of automatic or Google's (8.8.8.8, 8.8.4.4)
Modern Android devices have a feature called Private DNS. Using this feature, your device can connect to a dns server over DoT protocol. You can use this feature if you have enabled TLS on your server.
-
On your Android device, go to Settings -> Connection & Sharing -> Private DNS.
-
Set private dns to Custom Domain, and set the domain to point to the domain of your DNS server.
Visit https://bancuh.com/start/ for a quickstart on how to use Bancuh DNS on your device. However, instead of the provided servers, use the details for your own DNS servers.
This project could use some improvements and help in many areas, which includes, documentation, testing, code improvement, and deployment implementations.
If you have any suggestions, or would like to report a problem, create a GitHub issue to grab my attention.