A docker container with a DNS server configured to block advertisement hosts.
Just start the container and you are good to go. Absolutely no configuration is required.
If you have docker-compose
:
docker-compose up --detach
If you only have docker
:
docker run \
--name afdns \
--publish 53:53/tcp \
--publish 53:53/udp \
--mount type=volume,source=afdns_data,target=/etc/bind \
--restart always \
--tty \
--detach \
kolyunya/afdns
You can select the source to get automatic blacklist from. After running any of the following commands the automatic blacklist will be updated and the corresponding source will be set as default. The following updates via cron job will use that source.
docker exec afdns afdns-update-ahf
- update automatic blacklist from amalgamated hosts file.docker exec afdns afdns-update-hph
- update automatic blacklist from hpHosts.
The server also has a manual blacklist. The following commands let you manage it.
docker exec afdns afdns-host-add ad.example.com
- addad.example.com
to the manual blacklist.docker exec afdns afdns-host-remove ad.example.com
- removead.example.com
from the manual blacklist.
- DNS server utilized in this container is
BIND 9
. - Automatic blacklist is retrieved from amalgamated hosts file once a day.
- All non-advertisement request are forwarded to
8.8.8.8
and8.8.4.4
. - Response rate limit is set to
8
per second (to mitigate DNS amplification attack).
This DNS server is incorporated in the ad free VPN server.