Merge pull request #2075 from everettsouthwick/development

Add support for public Cloudflare DNS servers.
pull/2181/head^2
Mark Drobnak 6 years ago committed by GitHub
commit 1200a77b22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -772,6 +772,7 @@ setDNS() {
DNSWatch ""
Quad9 ""
FamilyShield ""
Cloudflare ""
Custom "")
# In a whiptail dialog, show the options
DNSchoices=$(whiptail --separate-output --menu "Select Upstream DNS Provider. To use your own, select Custom." ${r} ${c} 7 \
@ -823,6 +824,11 @@ setDNS() {
PIHOLE_DNS_1="208.67.222.123"
PIHOLE_DNS_2="208.67.220.123"
;;
Cloudflare)
echo "Cloudflare servers"
PIHOLE_DNS_1="1.1.1.1"
PIHOLE_DNS_2="1.0.0.1"
;;
Custom)
# Until the DNS settings are selected,
until [[ "${DNSSettingsCorrect}" = True ]]; do

Loading…
Cancel
Save