本项目的GITHUB地址:https://github.com/notracking/hosts-blocklists

以下安装步骤来自官方。

No more ads, tracking and other virtual garbage

This repository provides a host and domainname based blocklist specifically designed for use with dnsmasq. Most entries are gathered from multiple, actively maintained sources and automatically updated, cleaned, optimized and moderated on a daily basis. The blocklists support both ipv4 and ipv6.

The optimizer makes full use of dnsmasqs capability to block entire domains such as *.doubleclick.net (domains.txt). This reduces the chance of missing any new subdomains and significantly reduces the size of the blocklists. Hostnames that cannot be blocked on a domain level will still be listed in a regular hostname based blocklist (hostnames.txt).

It’s important to use both domains.txt and hostnames.txt simultaniously in dnsmasq to get full coverage!

General policies

  • Should not break useful websites or apps
  • Blocks tracking servers
  • Blocks advertising servers
  • Blocks analytics servers
  • Blocks fake websites
  • Blocks malware servers
  • Blocks webminers

How to install

Default dnsmasq setup

  • Download the following two files (or use a daily cronjob to do it automatically)
https://raw.githubusercontent.com/notracking/hosts-blocklists/master/hostnames.txt
https://raw.githubusercontent.com/notracking/hosts-blocklists/master/domains.txt
Code language: JavaScript (javascript)
  • Add the following lines to your dnsmasq.conf
conf-file=/path/to/domains.txt
addn-hosts=/path/to/hostnames.txt
Code language: JavaScript (javascript)
  • Restart dnsmasq sudo service dnsmasq restart

For a Pi-hole setup

Because Pi-hole does not fully support loading of dnsmasq domain filters (details here), you should add your own .conf file in /etc/dnsmasq.d/. This way you can still use our blocklists with Pi-hole, but updating has to be done by an external daily cronjob. It’s also recommended to remove all default Pi-hole lists, since these are already included in our list in a more efficient manner.

  • Add the following lines to /etc/dnsmasq.d/99-pihole-custom-lists.conf (example filename)
conf-file=/path/to/domains.txt
addn-hosts=/path/to/hostnames.txt
Code language: JavaScript (javascript)
  • (Optional, but recommended) Remove the default Pi-hole lists in /etc/pihole/adlists.list
  • Update Pi-hole pihole -g

Sources

Domain and hostname lists

Adblock Plus lists (only full hostname, non-3rd party filters)

分类: Linux

0 条评论

发表回复

Avatar placeholder

您的电子邮箱地址不会被公开。 必填项已用 * 标注

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据