Skip to content
This repository has been archived by the owner on Feb 16, 2020. It is now read-only.

Add AdGuard DNS #27

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions wireguard-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ if [ ! -f "$WG_CONFIG" ]; then
echo " 1) Cloudflare"
echo " 2) Google"
echo " 3) OpenDNS"
echo " 4) AdGuard DNS"
read -p "DNS [1-3]: " -e -i 1 DNS_CHOICE

case $DNS_CHOICE in
Expand All @@ -81,6 +82,9 @@ if [ ! -f "$WG_CONFIG" ]; then
3)
CLIENT_DNS="208.67.222.222,208.67.220.220"
;;
4)
CLIENT_DNS="176.103.130.130,176.103.130.131"
;;
esac
fi

Expand Down