dnsproxy is a simple DNS proxy server that supports all existing DNS protocols including
DNS-over-TLS,DNS-over-HTTPS,DNSCrypt, andDNS-over-QUIC. Moreover, it can work as aDNS-over-HTTPS,DNS-over-TLSorDNS-over-QUICserver.
The LuCI interface also supports reusable DNS profiles. Each profile stores its own bootstrap, upstream, and fallback server lists and can apply all three lists at once. Editable example profiles for Cloudflare, Quad9, Google, and a mixed parallel setup are included to demonstrate the feature.
- OpenWrt >= 24.10
- Go to here
- Download the latest version of ipk
- Login router and goto System --> Software
- Upload and install ipk
- Reboot if the app is not automatically added in page
- Goto Services --> DNS Proxy
Compile from OpenWrt/LEDE SDK
# Take the x86_64 platform as an example
tar xjf openwrt-sdk-22.03.5-x86-64_gcc-8.4.0_musl.Linux-x86_64.tar.xz
# Go to the SDK root dir
cd OpenWrt-sdk-*-x86_64_*
# First run to generate a .config file
make menuconfig
./scripts/feeds update -a
./scripts/feeds install -a
# Get Makefile
git clone --depth 1 --branch master --single-branch --no-checkout https://github.com/muink/luci-app-dnsproxy.git package/luci-app-dnsproxy
pushd package/luci-app-dnsproxy
umask 022
git checkout
popd
# Select the package LuCI -> Applications -> luci-app-dnsproxy
make menuconfig
# Start compiling
make package/luci-app-dnsproxy/compile V=99
This project is licensed under the Apache-2.0