Howto adguard: Difference between revisions

From Vidalinux Wiki
Jump to navigation Jump to search
No edit summary
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
= docker =
first we need to install docker and docker-compose:
https://wiki.vidalinux.org/index.php/Howto_docker
= install adguard =
download adguard docker-compose from our github repo:
mkdir adguard && cd adguard
wget https://raw.githubusercontent.com/vidalinux/docker/master/docker-adguard/docker-compose.yaml
deploy the adguard docker container:
docker-compose up -d
monitor container logs:
docker-compose logs -f
enter adguard interface to configure the system:
http://172.19.0.2
= settings =
= settings =
alternative Bootstrap DNS server
upstreams dns servers:
https://dns.nextdns.io
https://dns.adguard-dns.com/dns-query
alternative bootstrap dns server:
  1.1.1.1
  1.1.1.1
  8.8.8.8
  8.8.8.8
Line 8: Line 24:
dnssec resolver check:
dnssec resolver check:
  https://wander.science/projects/dns/dnssec-resolver-test
  https://wander.science/projects/dns/dnssec-resolver-test
= references =
= references =
* https://github.com/AdguardTeam/AdGuardHome
* https://github.com/AdguardTeam/AdGuardHome

Latest revision as of 21:33, 6 February 2024

docker

first we need to install docker and docker-compose:

https://wiki.vidalinux.org/index.php/Howto_docker

install adguard

download adguard docker-compose from our github repo:

mkdir adguard && cd adguard
wget https://raw.githubusercontent.com/vidalinux/docker/master/docker-adguard/docker-compose.yaml

deploy the adguard docker container:

docker-compose up -d

monitor container logs:

docker-compose logs -f

enter adguard interface to configure the system:

http://172.19.0.2

settings

upstreams dns servers:

https://dns.nextdns.io
https://dns.adguard-dns.com/dns-query

alternative bootstrap dns server:

1.1.1.1
8.8.8.8
1.0.0.1
1.1.1.2
1.0.0.2

dnssec resolver check:

https://wander.science/projects/dns/dnssec-resolver-test

references