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-TLS
orDNS-over-QUIC
server.
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