Rehber

AdGuard Home ve Unbound ile özel DNS

Orta seviye20 dk okumaGüncellendi 12 Mayıs 2026
Kısa cevap

AdGuard Home DNS-over-HTTPS'i filtreler ve sunar; arkasındaki Unbound tam özyineleme gerçekleştirdiğinden, hiçbir üst düzey çözücü sorgularınızı görmez. 4 dolarlık bir örnekte bu ikili 200 MB'ın altında RAM kullanır ve sizinle ilgili en zengin davranışsal veri kaynağının (İSS'nizin çözücüsünün) yerini alır.

01 Özyinelemeli bir çözücü olarak Unbound'u kurun

Bind it to localhost on a non-standard port so AdGuard Home can take 53.

apt install -y unbound
cat >/etc/unbound/unbound.conf.d/local.conf <<'EOF'
server:
  interface: 127.0.0.1@5335
  do-ip6: yes
  prefetch: yes
  hide-identity: yes
  hide-version: yes
  qname-minimisation: yes
EOF
systemctl restart unbound

02 AdGuard Home'u kurun

The installer sets up a systemd unit and a web interface on port 3000 for initial configuration.

curl -sSL https://raw.githubusercontent.com/AdguardTeam/AdGuardHome/master/scripts/install.sh | sh -s -- -v

03 AdGuard'ı Unbound'a yönlendirin

In Settings → DNS, set the upstream to 127.0.0.1:5335 and disable all other upstreams. Full recursion means no third party sees your queries at all.

04 DNS-over-HTTPS'i etkinleştirin

Get a certificate with Certbot, then enable DoH on 443 and DoT on 853 in the encryption settings. Clients then reach the resolver privately in transit as well as at rest.

certbot certonly --standalone -d dns.example.com

05 Kilit altına alın

Restrict access by client IP, or require DoH with a secret path. An open resolver is recruited into DNS amplification attacks within days and will be null-routed.

Sık sorulan sorular

Bu genel bir çözücüden daha mı iyi?

Özel olarak, evet — tam özyineleme ile hiçbir üçüncü taraf sorgularınızı hiç görmez. Genel çözücüler önbellek boyutları nedeniyle daha hızlıdır; takas hız için görünürlüktür.

Çalıştırmanın maliyeti ne kadar?

Ayda 4 dolar. Mevcut en ucuz anlamlı gizlilik iyileştirmesidir.