Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision Next revisionBoth sides next revision | ||
| docs:guide-user:services:ad-blocking [2020/05/10 04:42] – Update for OpenWrt 19.07.2 vgaetera | docs:guide-user:services:ad-blocking [2023/10/10 01:05] – update vgaetera | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ====== Ad blocking ====== | ====== Ad blocking ====== | ||
| + | Network-wide ad blocking may be desired for content filtering to reduce ads, reduce bandwidth usage, reduce tracking and increase privacy. | ||
| + | This can be accomplished with OpenWrt by installing one of the options below. | ||
| - | Ad blocking can be done in several ways: | + | ===== Solutions ===== |
| + | ==== Adblock ==== | ||
| + | * Packages [[packages:pkgdata: | ||
| + | * Configuration: | ||
| + | * Support: [[https:// | ||
| - | | + | ==== Adblock-Fast ==== |
| - | * Packages [[packages:pkgdata: | + | |
| - | * Package [[packages: | + | * Configuration: **LuCI |
| - | * [[https:// | + | * Documentation/ |
| - | [[https:// | + | ==== AdGuard Home ==== |
| + | * Packages: [[packages: | ||
| + | * Documentation/ | ||
| - | Instructions for Adblock quick setup via terminal. Most steps can also be done using the GUI with LuCI. | ||
| - | |||
| - | <code bash> | ||
| - | # Install packages | ||
| - | opkg update | ||
| - | opkg install adblock | ||
| - | |||
| - | # Install dependencies for uclient-fetch - this is crucial for downloading from SSL blocklist sources, which are used in the default configuration of Adblock | ||
| - | opkg install libustream-mbedtls | ||
| - | |||
| - | # Provide web interface | ||
| - | opkg install luci-app-adblock | ||
| - | |||
| - | # Enable Adblock | ||
| - | uci set adblock.global.adb_enabled=" | ||
| - | |||
| - | # Backup the blocklists | ||
| - | uci set adblock.global.adb_backupdir="/ | ||
| - | |||
| - | # Save and apply the changes | ||
| - | uci commit adblock | ||
| - | / | ||
| - | </ | ||