1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
{
"title": "DNS4EU",
"template": "https://{option}.joindns4.eu/dns-query",
"bootstrap_dns": "86.54.11.100,86.54.11.200,2a13:1001::86:54:11:100,2a13:1001::86:54:11:200",
"help_link": "https://www.joindns4.eu/for-public/",
"params": {
"option": {
"description": "Variant",
"type": "select",
"regex": "(unfiltered|protective|noads|child|child-noads)",
"options": [
{
"value": "unfiltered",
"description": "Unfiltered"
},
{
"value": "protective",
"description": "Protective (blocks malicous and fraudulent websites)"
},
{
"value": "noads",
"description": "Protective with ad-blocking"
},
{
"value": "child",
"description": "Protective with child protection"
},
{
"value": "child-noads",
"description": "Protective with child protection & ad-blocking"
}
],
"default": "unfiltered"
}
}
}
|