diff options
author | Stan <stangri@melmac.net> | 2020-07-29 02:45:08 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-29 02:45:08 -0700 |
commit | 815d255276c0b5b9ba13aca15a3994c206adbc77 (patch) | |
tree | ccaf7d3986e6ce17bfe6df9d01e95e091cd66fef /applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers | |
parent | 1c92d9f706de9a411c549bac60a9a3ba67533f4e (diff) | |
parent | 9c2bc71d2e8389e4d05f20bdcbb4dc3d8b7eb779 (diff) |
Merge pull request #4310 from stangri/master-luci-app-https-dns-proxy
luci-app-https-dns-proxy: add OpenDNS servers
Diffstat (limited to 'applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers')
2 files changed, 16 insertions, 0 deletions
diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua new file mode 100644 index 0000000000..b3eff188a1 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua @@ -0,0 +1,8 @@ +return { + name = "OpenDNS", + label = _("OpenDNS"), + resolver_url = "https://doh.opendns.com/dns-query", + bootstrap_dns = "208.67.222.222,208.67.220.220", + help_link = "https://support.opendns.com/hc/en-us/articles/360038086532-Using-DNS-over-HTTPS-DoH-with-OpenDNS", + help_link_text = "OpenDNS" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.familyshield.doh.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.familyshield.doh.lua new file mode 100644 index 0000000000..12cc89a965 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.familyshield.doh.lua @@ -0,0 +1,8 @@ +return { + name = "OpenDNS-FamilyShield", + label = _("OpenDNS (Family Shield)"), + resolver_url = "https://doh.familyshield.opendns.com/dns-query", + bootstrap_dns = "208.67.222.123,208.67.220.123", + help_link = "https://support.opendns.com/hc/en-us/articles/360038086532-Using-DNS-over-HTTPS-DoH-with-OpenDNS", + help_link_text = "OpenDNS" +} |