Skip to content

Commit 35f3639

Browse files
authored
Remove decomissioned SecureDNS (#49)
1 parent a10727a commit 35f3639

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
- [Cloudflare](https://developers.cloudflare.com/1.1.1.1/dns-over-tls/)
2626
- [Google](https://developers.google.com/speed/public-dns/docs/dns-over-tls)
2727
- [Quad9](https://www.quad9.net/faq/#Does_Quad9_support_DNS_over_TLS)
28-
- [SecureDNS](https://securedns.eu)
2928
- [LibreDNS](https://libredns.gr)
3029
- [Quadrant](https://quadrantsec.com/about/blog/quadrants_public_dns_resolver_with_tls_https_support/)
3130
- [CleanBrowsing](https://cleanbrowsing.org/guides/dnsovertls)
@@ -79,7 +78,7 @@ Diagrams are shown for router and client-by-client configurations in the [**Conn
7978

8079
| Environment variable | Default | Description |
8180
| --- | --- | --- |
82-
| `PROVIDERS` | `cloudflare` | Comma separated list of DNS-over-TLS providers from `cloudflare`, `google`, `quad9`, `quadrant`, `cleanbrowsing`, `securedns`, `libredns` and `cira` |
81+
| `PROVIDERS` | `cloudflare` | Comma separated list of DNS-over-TLS providers from `cloudflare`, `google`, `quad9`, `quadrant`, `cleanbrowsing`, `libredns` and `cira` |
8382
| `VERBOSITY` | `1` | From 0 (no log) to 5 (full debug log) |
8483
| `VERBOSITY_DETAILS` | `0` | From 0 to 4 (higher means more details) |
8584
| `BLOCK_MALICIOUS` | `on` | `on` or `off`, to block malicious IP addresses and malicious hostnames from being resolved |

internal/constants/dns.go

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ const (
1717
Quadrant models.Provider = "quadrant"
1818
// CleanBrowsing is a DNS over TLS provider.
1919
CleanBrowsing models.Provider = "cleanbrowsing"
20-
// SecureDNS is a DNS over TLS provider.
21-
SecureDNS models.Provider = "securedns"
2220
// LibreDNS is a DNS over TLS provider.
2321
LibreDNS models.Provider = "libredns"
2422
// CIRA is a DNS over TLS provider.
@@ -55,11 +53,6 @@ func ProviderMapping() map[models.Provider]models.ProviderData {
5553
SupportsIPv6: true,
5654
Host: models.Host("security-filter-dns.cleanbrowsing.org"),
5755
},
58-
SecureDNS: {
59-
IPs: []net.IP{{146, 185, 167, 43}, {0x2a, 0x3, 0xb0, 0xc0, 0x0, 0x0, 0x10, 0x10, 0x0, 0x0, 0x0, 0x0, 0xe, 0x9a, 0x30, 0x1}},
60-
SupportsIPv6: true,
61-
Host: models.Host("dot.securedns.eu"),
62-
},
6356
LibreDNS: {
6457
IPs: []net.IP{{116, 202, 176, 26}},
6558
Host: models.Host("dot.libredns.gr"),

0 commit comments

Comments
 (0)