Network-wide ad blocking via your own Linux hardware
The Pi-hole® is a DNS sinkhole that protects your devices from unwanted content, without installing any client-side software.
- Easy-to-install: our versatile installer walks you through the process, and takes less than ten minutes
- 簡單安裝 查看安裝過程 來自 Youtube
- Resolute: content is blocked in non-browser locations, such as ad-laden mobile apps and smart TVs
- ** 適用範圍** 包括 手機應用與 電視
- Responsive: seamlessly speeds up the feel of everyday browsing by caching DNS queries
- Lightweight: runs smoothly with minimal hardware and software requirements
- 高亮顯示 查看這個文檔 瞭解如何操作
- Robust: a command line interface that is quality assured for interoperability
- Insightful: a beautiful responsive Web Interface dashboard to view and control your Pi-hole
- Versatile: can optionally function as a DHCP server, ensuring all your devices are protected automatically
- ** 允許對 DNS 服務器執行高階操作
- Scalable: capable of handling hundreds of millions of queries when installed on server-grade hardware
- Modern: blocks ads over both IPv4 and IPv6
- 總是可以屏蔽廣告,不管是在 IPv4 還是 IPv6
- Free: open source software which helps ensure you are the sole person in control of your privacy
- 免費且自由
Those who want to get started quickly and conveniently may install Pi-hole using the following command:
Piping to bash is controversial, as it prevents you from reading code that is about to run on your system. Therefore, we provide these alternative installation methods which allow code review before installation:
git clone --depth 1 https://github.com/pi-hole/pi-hole.git Pi-hole
cd "Pi-hole/automated install/"
sudo bash basic-install.shwget -O basic-install.sh https://install.pi-hole.net
sudo bash basic-install.sh調整你的系統配置,用以搭配 pi-hole ,可以查看這個文檔
Once the installer has been run, you will need to configure your router to have DHCP clients use Pi-hole as their DNS server which ensures that all devices connecting to your network will have content blocked without any further intervention. 配置的你的路由器 爲 pi-hole 的 DNS 位址,查看這個文檔
If your router does not support setting the DNS server, you can use Pi-hole's built-in DHCP server; just be sure to disable DHCP on your router first (if it has that feature available). 如果你的路由器不兼容這個 配置方案 ,你可以 爲pi-hole 打開 DHCP 服務,查看這個文檔 確認你需要關閉路由器上面的 DHCP 服務,否則會與 pi-hole 衝突。
As a last resort, you can always manually set each device to use Pi-hole as their DNS server. 你總是可以在你的設備上配置 DNS 服務。
There are many reoccurring costs involved with maintaining free, open source, and privacy-respecting software; expenses which our volunteer developers pitch in to cover out-of-pocket. This is just one example of how strongly we feel about our software, as well as the importance of keeping it maintained.
Make no mistake: your support is absolutely vital to help keep us innovating!
Sending a donation using our Sponsor Button is extremely helpful in offsetting a portion of our monthly expenses:
If you'd rather not donate (which is okay!), there are other ways you can help support us:
- Patreon Become a patron for rewards
- Digital Ocean affiliate link
- Stickermule earn a $10 credit after your first purchase
- Amazon affiliate link
- Spreading the word about our software, and how you have benefited from it
We welcome everyone to contribute to issue reports, suggest new features, and create pull requests.
If you have something to add - anything from a typo through to a whole new feature, we're happy to check it out! Just make sure to fill out our template when submitting your request; the questions that it asks will help the volunteers quickly understand what you're aiming to achieve.
You'll find that the install script and the debug script have an abundance of comments, which will help you better understand how Pi-hole works. They're also a valuable resource to those who want to learn how to write scripts or code a program! We encourage anyone who likes to tinker to read through it and submit a pull request for us to review.
While we are primarily reachable on our Discourse User Forum, we can also be found on a variety of social media outlets. Please be sure to check the FAQ's before starting a new discussion, as we do not have the spare time to reply to every request for assistance.
The pihole command has all the functionality necessary to be able to fully administer the Pi-hole, without the need of the Web Interface. It's fast, user-friendly, and auditable by anyone with an understanding of bash.
Some notable features include:
- Whitelisting, Blacklisting and Regex
- Debugging utility
- Viewing the live log file
- Updating Ad Lists
- Querying Ad Lists for blocked domains
- Enabling and Disabling Pi-hole
- ... and many more!
You can read our Core Feature Breakdown for more information.
This optional dashboard allows you to view stats, change settings, and configure your Pi-hole. It's the power of the Command Line Interface, with none of the learning curve!
Some notable features include:
- Mobile friendly interface
- Password protection
- Detailed graphs and doughnut charts
- Top lists of domains and clients
- A filterable and sortable query log
- Long Term Statistics to view data over user-defined time ranges
- The ability to easily manage and configure Pi-hole features
- ... and all the main features of the Command Line Interface!
There are several ways to access the dashboard:
http://pi.hole/admin/(when using Pi-hole as your DNS server)http://<IP_ADDPRESS_OF_YOUR_PI_HOLE>/admin/http://pi.hole/(when using Pi-hole as your DNS server)
FTLDNS is a lightweight, purpose-built daemon used to provide statistics needed for the Web Interface, and its API can be easily integrated into your own projects. As the name implies, FTLDNS does this all very quickly!
Some of the statistics you can integrate include:
- Total number of domains being blocked
- Total number of DNS queries today
- Total number of ads blocked today
- Percentage of ads blocked
- Unique domains
- Queries forwarded (to your chosen upstream DNS server)
- Queries cached
- Unique clients
The API can be accessed via telnet, the Web (admin/api.php) and Command Line (pihole -c -j). You can out find more details over here.