En combinacion con Wireguard y unbound DNS #7285
abdiasriver
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Los he instalado y configurado en conjunto, y asi puedo tener VPN con wg y el bloqueador por medio de DNS con AdGuardHome y Unbound, recomendado, en un vps Debian 12.
La idea es colocar un link en el dashboard de AdGuardHome que lanze el script de instalacion de wg y unbound y lo deje funcionando sin complicaciones.
Si se desean mas clientes, relanzar el script , los datos de los clientes se encuentran en /root/
apt install -y unbound
nano /etc/unbound/unbound.conf.d/config.conf
--------------------- add
curl -s -S -L https://raw.githubusercontent.com/AdguardTeam/AdGuardHome/master/scripts/install.sh | sh -s -- -v
go to http://IP:3000
cat /etc/resolv.conf
---------------checa / agrega
nameserver 127.0.0.1
sudo apt-get install resolvconf -y && sudo systemctl restart unbound-resolvconf.service
wget -O root.hints https://www.internic.net/domain/named.root && sudo mv root.hints /var/lib/unbound/
Beta Was this translation helpful? Give feedback.
All reactions