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 [2019/09/29 10:25] – Added some more information for installation clel | 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 ==== |
| + | | ||
| + | * Configuration: | ||
| + | * Documentation/ | ||
| - | | + | ==== AdGuard Home ==== |
| + | | ||
| + | * Documentation/ | ||
| - | * Package [[packages: | ||
| - | |||
| - | [[https:// | ||
| - | |||
| - | 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.extra.adb_backup=" | ||
| - | uci set adblock.extra.adb_backupdir="/ | ||
| - | |||
| - | # Use blocklists backup on startup | ||
| - | uci set adblock.extra.adb_backup_mode=" | ||
| - | |||
| - | # Save and apply the changes | ||
| - | uci commit adblock | ||
| - | / | ||
| - | </ | ||