mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-12-23 21:30:17 +00:00
Added DNS.WATCH to default dns servers
This commit is contained in:
parent
5333895a9f
commit
9e5795bf55
1 changed files with 6 additions and 0 deletions
|
@ -444,6 +444,7 @@ setDNS() {
|
|||
Level3 ""
|
||||
Norton ""
|
||||
Comodo ""
|
||||
DNS.WATCH ""
|
||||
Custom "")
|
||||
DNSchoices=$(whiptail --separate-output --menu "Select Upstream DNS Provider. To use your own, select Custom." ${r} ${c} 6 \
|
||||
"${DNSChooseOptions[@]}" 2>&1 >/dev/tty) || \
|
||||
|
@ -474,6 +475,11 @@ setDNS() {
|
|||
PIHOLE_DNS_1="8.26.56.26"
|
||||
PIHOLE_DNS_2="8.20.247.20"
|
||||
;;
|
||||
DNS.WATCH)
|
||||
echo "::: Using DNS.WATCH servers."
|
||||
PIHOLE_DNS_1="84.200.69.80"
|
||||
PIHOLE_DNS_2="84.200.70.40"
|
||||
;;
|
||||
Custom)
|
||||
until [[ ${DNSSettingsCorrect} = True ]]; do
|
||||
strInvalid="Invalid"
|
||||
|
|
Loading…
Reference in a new issue