diff options
Diffstat (limited to 'applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy')
5 files changed, 40 insertions, 0 deletions
diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua new file mode 100644 index 0000000000..7275cbcc91 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua @@ -0,0 +1,8 @@ +return { + name = "ControlD-Family", + label = _("ControlD (Family)"), + resolver_url = "https://freedns.controld.com/family", + bootstrap_dns = "76.76.2.4,2606:1a40::4", + help_link = "https://kb.controld.com/tutorials", + help_link_text = "ControlD" +}
\ No newline at end of file diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua new file mode 100644 index 0000000000..bea84b4c15 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua @@ -0,0 +1,8 @@ +return { + name = "ControlD-Malware-Ads-Social", + label = _("ControlD (Block Malware + Ads + Social)"), + resolver_url = "https://freedns.controld.com/p3", + bootstrap_dns = "76.76.2.3,2606:1a40::3", + help_link = "https://kb.controld.com/tutorials", + help_link_text = "ControlD" +}
\ No newline at end of file diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua new file mode 100644 index 0000000000..5849cbd21c --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua @@ -0,0 +1,8 @@ +return { + name = "ControlD-Malware-Ads", + label = _("ControlD (Block Malware + Ads)"), + resolver_url = "https://freedns.controld.com/p2", + bootstrap_dns = "76.76.2.2,2606:1a40::2", + help_link = "https://kb.controld.com/tutorials", + help_link_text = "ControlD" +}
\ No newline at end of file diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua new file mode 100644 index 0000000000..c82a042ec9 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua @@ -0,0 +1,8 @@ +return { + name = "ControlD-Malware", + label = _("ControlD (Block Malware)"), + resolver_url = "https://freedns.controld.com/p1", + bootstrap_dns = "76.76.2.1,2606:1a40::1", + help_link = "https://kb.controld.com/tutorials", + help_link_text = "ControlD" +}
\ No newline at end of file diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua new file mode 100644 index 0000000000..eb5bbbd87a --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua @@ -0,0 +1,8 @@ +return { + name = "ControlD-Unfiltered", + label = _("ControlD (Unfiltered)"), + resolver_url = "https://freedns.controld.com/p0", + bootstrap_dns = "76.76.2.0,2606:1a40::0", + help_link = "https://kb.controld.com/tutorials", + help_link_text = "ControlD" +}
\ No newline at end of file |