CompactDNS (CDNS) is a minimalistic yet powerful DNS server designed for simplicity and speed.
Project description
CompactDNS (CDNS)
CompactDNS (CDNS) is a minimalistic yet powerful DNS server designed for simplicity and speed, offering local caching and both authoritative and forwarding capabilities.
In 2025, Google Chrome will remove adblockers with the impending Manifest V3 update. This change threaten the existance of software like UBlock Origin. Rather than abandoning Chrome, I explored alternative ways to block ads. This DNS server, CompactDns, was the result: it's lightweight, blazing fast, and can block ads. It also caches all requests on device, leading to a latency as low as 0 ms.
- ninjamar
Installation
Install CDNS
pip install cdns
CDNS can also be installed from source
git clone https://github.com/ninjamar/compactdns
cd compactdns
pip install .
For development,
pip install -e .
Usage
After installation, CDNS can be used by running:
cdns [command] [options]
The server can be run as a daemon, or as a standalone program.
Running the Server
To start the server:
cdns run [options]
Configuration is stored in a toml or json file. See config.toml for an example configuration.
cdns run --config config.toml
The DNS protocol is typically run over port 53 for TCP and 853 for TLS.
When TLS is used, a key and certificate file are required.
Generate a pair:
openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -days 365 -nodes
Configuration
An example configuration file is available in config.toml.
Running as a Service
MacOS / OSX
CDNS can be set up to run in the background as a service:
sudo cdns install -c /path/to/config
This command writes a plist file to /Library/LaunchDaemons/com.ninjamar.compactdns.plist.
Start the server:
sudo launchctl bootstrap system /Library/LaunchDaemons/com.ninjamar.compactdns.plist
Stop the server:
sudo launchctl bootout system /Library/LaunchDaemons/com.ninjamar.compactdns.plist
Startup logs are written to /tmp/cdns-startup.log and cdns-startup-err.log .
Ensure that all paths in the configuration file are relative to the path of the configuration file.
Changing the System DNS Server
CDNS can be configured as the system DNS server. Replace A.B.C.D with the address of the server.
On MacOS:
networksetup -setdnsservers Wi-Fi A.B.C.D
DNS Zones
Zones can be stored in 3 formats:
- Single zone Json file (e.g.,
*.json) - Multiple zones JSOn file (e.g.,
*.all.json) - Traditional zone file (e.g.,
*.zone)
See the example-zones/ directory for examples.
From a Host File
To convert a host file to a JSON list:
cdns tools h2j /path/to/host.txt /path/to/output.all.json
example-zones/lowe.all.json was generated from Peter Lowe's adservers list using this script
Preload Files and Cache Dump
A preload file is a plain text list of hosts to be loaded into the cache before server startup.
# These sites will all be preloaded
google.com
github.com
example.com
The cache (and also the zones) can be written to a file upon server shutdown and reloaded on startup.
Architecture
When in recursive mode, the server can achieve latency as low as 0 ms. Initially, cache misses will result in higher latency, but once requests are resolved, responses are cached for the future.
graph TD;
send["Send the request"]
done["Response sent back"]
send --> recv["Server receives the request"]
recv --> is_cache["Is the request in the cache?"]
is_cache --> |"Yes"| cache["The request is in the cache"] --> done
is_cache --> |"No"| recursive["Recursively fulfill the request"]
recursive --> |"Add response to cache"| done
Other Commands
shell
CDNS includes an interactive debugging shell.
[!WARNING] This feature exists for debbuging. Use at your own risk
[!NOTE] Incoming requests are blocked when in use
Run the shell:
cdns shell [options]
Options:
--host,-h: The host address for the shell server ina.b.c.d:portformat
The shell opens a Python REPL connected to the main server process.
List the available commands:
>>> help(self.command)
Testing
Some outdated tests exist in tests/ directory
Instead, send test queries using dig.
dig @A.B.C.D -p PORT example.com
License
This project is licensed under the MIT License. See the LICENSE file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file compactdns-0.1.0a1.post1.tar.gz.
File metadata
- Download URL: compactdns-0.1.0a1.post1.tar.gz
- Upload date:
- Size: 37.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
370e38a106a4f9ffe2fb2a03c935bee177843dabd286c7953609e4fd88c6e1c3
|
|
| MD5 |
6444512ab0a8c34370a7356906d7b4c5
|
|
| BLAKE2b-256 |
b06d2e5ce9b81a6a2af43e9848dc0a89a682d5f46731e1a36db153ac013359dd
|
File details
Details for the file compactdns-0.1.0a1.post1-py3-none-any.whl.
File metadata
- Download URL: compactdns-0.1.0a1.post1-py3-none-any.whl
- Upload date:
- Size: 52.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c7083985973842b64081425b2176184e4c2245e238e8b4e8150db25a93ea3ee9
|
|
| MD5 |
5d11a58c362b2a477a89cd64a31ced5e
|
|
| BLAKE2b-256 |
d6ec6accd950d16754c6d26ec48f4cf41116be8274adb7ba6a8bfb37e97c2a2f
|