mirror of
https://github.com/fergalmoran/DnsServer.git
synced 2026-01-06 08:45:32 +00:00
webapp: added OpenDNS DoH end points to DNS Client and Forwarder.
This commit is contained in:
@@ -599,8 +599,10 @@
|
||||
<li><a href="#">OpenDNS {208.67.220.220}</a></li>
|
||||
<li><a href="#">OpenDNS {[2620:0:ccc::2]}</a></li>
|
||||
<li><a href="#">OpenDNS {[2620:0:ccd::2]}</a></li>
|
||||
<li><a href="#">OpenDNS HTTPS {https://doh.opendns.com/dns-query}</a></li>
|
||||
<li><a href="#">OpenDNS FamilyShield {208.67.222.123}</a></li>
|
||||
<li><a href="#">OpenDNS FamilyShield {208.67.220.123}</a></li>
|
||||
<li><a href="#">OpenDNS FamilyShield HTTPS {https://doh.familyshield.opendns.com/dns-query}</a></li>
|
||||
<li><a href="#">Level3 {4.2.2.1}</a></li>
|
||||
<li><a href="#">Level3 {4.2.2.2}</a></li>
|
||||
<li><a href="#">Ultra {156.154.70.1}</a></li>
|
||||
@@ -1482,8 +1484,10 @@
|
||||
<option value="opendns-udp-ipv6">OpenDNS (DNS-over-UDP IPv6)</option>
|
||||
<option value="opendns-tcp">OpenDNS (DNS-over-TCP)</option>
|
||||
<option value="opendns-tcp-ipv6">OpenDNS (DNS-over-TCP IPv6)</option>
|
||||
<option value="opendns-https">OpenDNS (DNS-over-HTTPS)</option>
|
||||
|
||||
<option value="opendns-fs-udp">OpenDNS FamilyShield (DNS-over-UDP)</option>
|
||||
<option value="opendns-fs-https">OpenDNS FamilyShield (DNS-over-HTTPS)</option>
|
||||
</select>
|
||||
|
||||
<div style="margin-top: 10px;">Enter forwarder DNS Server IP addresses or URLs one below another in above text field or use the Quick Select list to select desired forwarder.</div>
|
||||
|
||||
@@ -446,12 +446,22 @@ $(function () {
|
||||
$("#rdForwarderProtocolTcp").prop("checked", true);
|
||||
break;
|
||||
|
||||
case "opendns-https":
|
||||
$("#txtForwarders").val("https://doh.opendns.com/dns-query");
|
||||
$("#rdForwarderProtocolHttps").prop("checked", true);
|
||||
break;
|
||||
|
||||
|
||||
case "opendns-fs-udp":
|
||||
$("#txtForwarders").val("208.67.222.123\r\n208.67.220.123");
|
||||
$("#rdForwarderProtocolUdp").prop("checked", true);
|
||||
break;
|
||||
|
||||
case "opendns-fs-https":
|
||||
$("#txtForwarders").val("https://doh.familyshield.opendns.com/dns-query");
|
||||
$("#rdForwarderProtocolHttps").prop("checked", true);
|
||||
break;
|
||||
|
||||
|
||||
case "none":
|
||||
$("#txtForwarders").val("");
|
||||
|
||||
Reference in New Issue
Block a user