mirror of
https://github.com/kkebo/DNSecure.git
synced 2026-03-11 08:54:36 +00:00
Add AdGuard DNS preset
This commit is contained in:
parent
7cd2336998
commit
336162dda4
1 changed files with 56 additions and 0 deletions
|
|
@ -154,5 +154,61 @@ enum Presets {
|
|||
)
|
||||
)
|
||||
),
|
||||
.init(
|
||||
name: "AdGuard DNS",
|
||||
configuration: .dnsOverTLS(
|
||||
DoTConfiguration(
|
||||
servers: [
|
||||
"94.140.14.140",
|
||||
"94.140.14.141",
|
||||
"2a10:50c0::1:ff",
|
||||
"2a10:50c0::2:ff",
|
||||
],
|
||||
serverName: "dns-unfiltered.adguard.com"
|
||||
)
|
||||
)
|
||||
),
|
||||
.init(
|
||||
name: "AdGuard DNS",
|
||||
configuration: .dnsOverHTTPS(
|
||||
DoHConfiguration(
|
||||
servers: [
|
||||
"94.140.14.140",
|
||||
"94.140.14.141",
|
||||
"2a10:50c0::1:ff",
|
||||
"2a10:50c0::2:ff",
|
||||
],
|
||||
serverURL: URL(string: "https://dns-unfiltered.adguard.com/dns-query")
|
||||
)
|
||||
)
|
||||
),
|
||||
.init(
|
||||
name: "AdGuard DNS (Block Ads / Trackers)",
|
||||
configuration: .dnsOverTLS(
|
||||
DoTConfiguration(
|
||||
servers: [
|
||||
"94.140.14.14",
|
||||
"94.140.15.15",
|
||||
"2a10:50c0::ad1:ff",
|
||||
"2a10:50c0::ad2:ff",
|
||||
],
|
||||
serverName: "dns.adguard.com"
|
||||
)
|
||||
)
|
||||
),
|
||||
.init(
|
||||
name: "AdGuard DNS (Block Ads / Trackers)",
|
||||
configuration: .dnsOverHTTPS(
|
||||
DoHConfiguration(
|
||||
servers: [
|
||||
"94.140.14.14",
|
||||
"94.140.15.15",
|
||||
"2a10:50c0::ad1:ff",
|
||||
"2a10:50c0::ad2:ff",
|
||||
],
|
||||
serverURL: URL(string: "https://dns.adguard.com/dns-query")
|
||||
)
|
||||
)
|
||||
),
|
||||
]
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue