部署AdGuard,去除局域网广告,以及一些官方比较有用的规则

docker部署命令

1
2
3
4
5
6
docker run -d \
-v ~/adguardhome:/opt/adguardhome \
  --name adguardhome \
  --restart unless-stopped \
  --network host \
  adguard/adguardhome

openwrt部署

openwrt定制可提前将AdGuard添加到openwrt中,可到openwrt在线编译,定制属于你自己的openwrt查看 登录openwrt,点系统-软件包-更新列表 搜索adguardhome 安装以下包

1
2
3
luci-i18n-adguardhome-zh-cn
luci-app-adguardhome
adguardhome

如果遇到网络问题,可下载安装包进行安装 下载包上传即可

image-k6sm.png

更新核心(docker无需更新)

安装完成之后,可以在openwrt的服务中看到AdGuard Home

image-71bq.png

将启用开关启用,并更新核心,如果更新失败,可以到https://github.com/AdguardTeam/AdGuardHome下载对应的版本核心文件,然后存放到openwrt的/usr/bin/AdGuardHome/

image-laau.png

如果是docker则存放在docker容器的/opt/adguardhome内

image-kfri.png

设置dns的53重定向(docker指定dns为docker设备ip即可)

让AdGuard接管openwrt默认的dns服务Dnsmasq 建议选使用53端口替换dnsmasq

image-4z6g.png

选项区别: 1、作为dnsmasq的上游服务器: openwrt的dnsmasq将全部的请求经过AdGuard进行查询 2、重定向53端口到广告保护主页: openwrt的dnsmasq将全部的请求转发到AdGuard进行查询 3、使用53端口替换dnsmasq: 将默认的53端口替换为AdGuard,DNS流量不经过openwrt的dns服务,直接将DNS请求指向AdGuard 更多详细说明请自行查阅

设置AdGuard密码(docker登录时设置)

在AdGuard设置面板拉到最底部,添加更改网页登录密码 image-xm1o.png 在更网页登录密码的地方输入密码,计算加密后的密码,复制

image-pcqf.png

image-bkty.png

到手动设置的配置文件内,替换password文本

image-axxv.png

设置过滤规则

打开AdGuard,如果是dockers,需要进行初始化,根据提示初始化,之后登录到页面中 登录之后,选择DNS黑名单

image-kbot.png

订阅连接可以选择从列表中添加或者自定义添加

image-b6rk.png

推荐规则

列表中添加

自用以下规则

AdGuard DNS filter AdGuard DNS Popup Hosts filter CHN: AdRules DNS List CHN: anti-AD

自定义添加

当列表添加的规则因网络不佳的时候,我们可以使用加速的项目连接进行添加,或一些大神维护的过滤规则,在此推荐AdGuard的官方规则加速github项目: 217heidai/adblockfilters: 去广告合并规则,每8个小时更新一次。

基础过滤:

1
https://gcore.jsdelivr.net/gh/217heidai/adblockfilters@main/rules/AdGuard_Base_filter.txt

中国地区:

1
https://gcore.jsdelivr.net/gh/217heidai/adblockfilters@main/rules/AdGuard_Chinese_filter.txt

移动端:

1
https://gcore.jsdelivr.net/gh/217heidai/adblockfilters@main/rules/AdGuard_Mobile_Ads_filter.txt

官方标准:

1
https://gcore.jsdelivr.net/gh/217heidai/adblockfilters@main/rules/AdGuard_DNS_filter.txt

第三方中国区域:

1
https://gcore.jsdelivr.net/gh/217heidai/adblockfilters@main/rules/EasyList_China.txt

AdGuard浏览器插件——基础规则:

1
https://raw.githubusercontent.com/AdguardTeam/FiltersRegistry/master/filters/filter_2_Base/filter.txt

AdGuard浏览器插件——移动规则:

1
https://raw.githubusercontent.com/AdguardTeam/FiltersRegistry/master/filters/filter_11_Mobile/filter.txt

AdGuard浏览器插件——中国地区规则:

1
https://raw.githubusercontent.com/AdguardTeam/FiltersRegistry/master/filters/filter_224_Chinese/filter.txt

其它:

1
自行搜索

上游DNS

上游DNS设置,使用运营商dns与114之类的 性能足够时使用并行请求 记得应用即可

1
2
3
4
5
6
7
8
119.29.29.29
114.114.114.114
120.196.165.24
211.136.192.6
223.5.5.5
8.8.8.8
2409:8057:2000:2::8
2409:8057:2000:6::8

image-vulp.png

image-juog.png

快速设置

使用配置文件 openwrt路径:

1
/etc/AdGuardHome.yaml

docker容器内路径

1
/opt/adguardhome/conf/AdGuardHome.yaml

配置文件内容

  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
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
http:
  pprof:
    port: 6060
    enabled: false
  address: 0.0.0.0:3000
  session_ttl: 720h
users:
  - name: admin
    password: 123
auth_attempts: 5
block_auth_min: 15
http_proxy: ""
language: ""
theme: auto
dns:
  bind_hosts:
    - 0.0.0.0
  port: 53
  anonymize_client_ip: false
  ratelimit: 0
  ratelimit_subnet_len_ipv4: 24
  ratelimit_subnet_len_ipv6: 56
  ratelimit_whitelist: []
  refuse_any: true
  upstream_dns:
    - 119.29.29.29
    - 114.114.114.114
    - 120.196.165.24
    - 211.136.192.6
    - 223.5.5.5
    - 8.8.8.8
    - 2409:8057:2000:2::8
    - 2409:8057:2000:6::8
  upstream_dns_file: ""
  bootstrap_dns:
    - 223.5.5.5
    - 119.29.29.29
  fallback_dns:
    - 223.5.5.5
    - 119.29.29.29
    - 114.114.114.114
    - 2400:3200::1
  upstream_mode: parallel
  fastest_timeout: 1s
  allowed_clients: []
  disallowed_clients: []
  blocked_hosts:
    - version.bind
    - id.server
    - hostname.bind
  trusted_proxies:
    - 127.0.0.0/8
    - ::1/128
  cache_size: 4194304
  cache_ttl_min: 0
  cache_ttl_max: 0
  cache_optimistic: true
  bogus_nxdomain: []
  aaaa_disabled: false
  enable_dnssec: false
  edns_client_subnet:
    custom_ip: ""
    enabled: false
    use_custom: false
  max_goroutines: 300
  handle_ddr: true
  ipset: []
  ipset_file: ""
  bootstrap_prefer_ipv6: false
  upstream_timeout: 10s
  private_networks: []
  use_private_ptr_resolvers: false
  local_ptr_upstreams: []
  use_dns64: false
  dns64_prefixes: []
  serve_http3: false
  use_http3_upstreams: false
  serve_plain_dns: true
  hostsfile_enabled: true
tls:
  enabled: false
  server_name: ""
  force_https: false
  port_https: 443
  port_dns_over_tls: 853
  port_dns_over_quic: 853
  port_dnscrypt: 0
  dnscrypt_config_file: ""
  allow_unencrypted_doh: false
  certificate_chain: ""
  private_key: ""
  certificate_path: ""
  private_key_path: ""
  strict_sni_check: false
querylog:
  dir_path: ""
  ignored: []
  interval: 24h
  size_memory: 1000
  enabled: true
  file_enabled: true
statistics:
  dir_path: ""
  ignored: []
  interval: 24h
  enabled: true
filters:
  - enabled: false
    url: https://adguardteam.github.io/HostlistsRegistry/assets/filter_29.txt
    name: 'CHN: AdRules DNS List'
    id: 1740113886
  - enabled: false
    url: https://adguardteam.github.io/HostlistsRegistry/assets/filter_21.txt
    name: 'CHN: anti-AD'
    id: 1740113887
  - enabled: false
    url: https://adguardteam.github.io/HostlistsRegistry/assets/filter_59.txt
    name: AdGuard DNS Popup Hosts filter
    id: 1740113888
  - enabled: false
    url: https://adguardteam.github.io/HostlistsRegistry/assets/filter_1.txt
    name: AdGuard DNS filter
    id: 1740113889
  - enabled: false
    url: https://adguardteam.github.io/HostlistsRegistry/assets/filter_2.txt
    name: AdAway Default Blocklist
    id: 1740113890
  - enabled: false
    url: https://gcore.jsdelivr.net/gh/217heidai/adblockfilters@main/rules/AdGuard_Base_filter.txt
    name: github.com/217heidai/adblockfilters/AdGuard_Base_filter
    id: 1740968557
  - enabled: false
    url: https://gcore.jsdelivr.net/gh/217heidai/adblockfilters@main/rules/AdGuard_Chinese_filter.txt
    name: github.com/217heidai/adblockfilters/AdGuard_Chinese_filter.txt
    id: 1740973312
  - enabled: false
    url: https://gcore.jsdelivr.net/gh/217heidai/adblockfilters@main/rules/AdGuard_Mobile_Ads_filter.txt
    name: github.com/217heidai/adblockfilters/AdGuard_Mobile_Ads_filter.txt
    id: 1740973313
  - enabled: false
    url: https://gcore.jsdelivr.net/gh/217heidai/adblockfilters@main/rules/AdGuard_DNS_filter.txt
    name: github.com/217heidai/adblockfilters/AdGuard_DNS_filter.txt
    id: 1740973314
  - enabled: false
    url: https://gcore.jsdelivr.net/gh/217heidai/adblockfilters@main/rules/EasyList_China.txt
    name: github.com/217heidai/adblockfilters/rules/EasyList_China.txt
    id: 1740973880
  - enabled: true
    url: https://raw.githubusercontent.com/AdguardTeam/FiltersRegistry/master/filters/filter_2_Base/filter.txt
    name: jichu
    id: 1740974110
  - enabled: true
    url: https://raw.githubusercontent.com/AdguardTeam/FiltersRegistry/master/filters/filter_11_Mobile/filter.txt
    name: mobile
    id: 1740974111
  - enabled: true
    url: https://raw.githubusercontent.com/AdguardTeam/FiltersRegistry/master/filters/filter_224_Chinese/filter.txt
    name: chinese
    id: 1740974112
whitelist_filters: []
user_rules: []
dhcp:
  enabled: false
  interface_name: ""
  local_domain_name: lan
  dhcpv4:
    gateway_ip: ""
    subnet_mask: ""
    range_start: ""
    range_end: ""
    lease_duration: 86400
    icmp_timeout_msec: 1000
    options: []
  dhcpv6:
    range_start: ""
    lease_duration: 86400
    ra_slaac_only: false
    ra_allow_slaac: false
filtering:
  blocking_ipv4: ""
  blocking_ipv6: ""
  blocked_services:
    schedule:
      time_zone: UTC
    ids: []
  protection_disabled_until: null
  safe_search:
    enabled: false
    bing: true
    duckduckgo: true
    ecosia: true
    google: true
    pixabay: true
    yandex: true
    youtube: true
  blocking_mode: default
  parental_block_host: family-block.dns.adguard.com
  safebrowsing_block_host: standard-block.dns.adguard.com
  rewrites: []
  safe_fs_patterns:
    - /tmp/AdGuardHome/data/userfilters/*
  safebrowsing_cache_size: 1048576
  safesearch_cache_size: 1048576
  parental_cache_size: 1048576
  cache_time: 30
  filters_update_interval: 24
  blocked_response_ttl: 10
  filtering_enabled: true
  parental_enabled: false
  safebrowsing_enabled: false
  protection_enabled: true
clients:
  runtime_sources:
    whois: true
    arp: true
    rdns: true
    dhcp: true
    hosts: true
  persistent: []
log:
  enabled: true
  file: ""
  max_backups: 0
  max_size: 100
  max_age: 3
  compress: false
  local_time: false
  verbose: false
os:
  group: ""
  user: ""
  rlimit_nofile: 0
schema_version: 29
使用 Hugo 构建
主题 StackJimmy 设计