Git Product home page Git Product logo

unbound-redis's Introduction

unbound - block ads and trackers

unbound   release   downloads   visitors   license

Summary

Unbound as validating, recursive, caching DNS resolver 🔹 Redis backend 🔹 Block Ads and Trackers

🔸 Compile latest Unbound on RaspPiOS with Cache DB and TCP Fast Open modules.
🔸 Recursive resolving from the root. No forwarding to other resolvers.
🔸 Redis backend database for persistent cache. Works as second level cache.
🔸 Network wide Ads and Trackers block. No pi-hole/adguard. No extra hop to resolve DNS.
🔸 Unbound dashboard is available at unbound-dashboard. (Optional)
🔸 Refer to release.md for changes and update.

Prerequisite:

  • Unbound compilation and installation is validated on RaspberryPi OS/Debian. Post Install startup service and scripts may require modification for other linux distributions.

  • If unbound package is installed. Take a backup of current unbound.conf. Remove unbound package completely:

    sudo apt --purge autoremove unbound

Specs:

Unbound OS HW
1.19.0 raspios-bookworm-arm64-lite Raspberry Pi 4 Model B

Steps

  🔸 Redis ➜ Unbound ➜ Post Install ➜ Config ➜ Timers & Services ➜ Blocklist ➜ Start

❯ Redis

  🔸 Install ➜ Config

  • Install:

    sudo apt install redis-server

  • Config:
    An optimized redis.conf for unbound is available in the release under config dir. Default redis.conf from redis 7.0.* is used as base config for the provided config. Some of the options may not be available or may be different if you are on an earlier version of redis. You can use redis.conf either from the release or your preferred one.

    To use the provided redis.conf, below steps can be helpful:

    Edit redis config:
    sudo nano /etc/redis/redis.conf
    Delete everything in default redis config:
    Ctrl+6 Alt+t Ctrl+6
    Copy and paste the provided redis.conf. Save and exit nano

    ℹ️ Note:
    Provided redis.conf is tweaked after some thorough testing in small network. Like 4mb maxmemory has pretty optimal performance with enough cache and evict least recently used keys. Similarly snapshotting is used to save keys to database, current option will save after 2hrs if atleast 100 new keys were added or after 12hrs if at least 1 new key is added. Reboot will save database as long as snapshotting is enabled. Feel free to change them as preferred.

divider

❯ Unbound

  🔸 Packages ➜ Extract ➜ CFLAGS ➜ Configure ➜ Compile ➜ Install

  • Packages:
    Install packages required for compiling unbound. Assuming gcc is already installed, below command will install 12 packages. Your environment may require additional packages. Check compilation error to find missing package (if any):

    sudo apt install bison flex libevent-dev libexpat1-dev libhiredis-dev libnghttp2-dev libprotobuf-c-dev libssl-dev libsystemd-dev protobuf-c-compiler python3-dev swig
    
  • Extract:
    Download and extract unbound.

    Extract:
    tar -xvzf unbound-release-1.19.0.tar.gz

  • CFLAGS:
    Remove debugging information, otherwise unbound binary size will be much larger.

    Set CFLAG:
    export CFLAGS="-O2"

    ℹ️ Note:
    Unbound binary size comparison:
    bookworm  ➟ Debian Bookworm Prebuilt Without Cachdb Module
    debug-off  ➟ Compiled Without Debug Info With Cachdb Module
    debug-on  ➟ Compiled With Debug Info With Cachdb Module

  • Configure:
    Make sure you copy the full cmd and execute it inside the extracted unbound src dir.

    ./configure --build=aarch64-linux-gnu --prefix=/usr --includedir=\${prefix}/include --infodir=\${prefix}/share/info --libdir=\${prefix}/lib/aarch64-linux-gnu --mandir=\${prefix}/share/man --localstatedir=/var --runstatedir=/run --sysconfdir=/etc --with-chroot-dir= --with-dnstap-socket-path=/run/dnstap.sock --with-libevent --with-libhiredis --with-libnghttp2 --with-pidfile=/run/unbound.pid --with-pythonmodule --with-pyunbound --with-rootkey-file=/var/lib/unbound/root.key --disable-dependency-tracking --disable-flto --disable-maintainer-mode --disable-option-checking --disable-rpath --disable-silent-rules --enable-cachedb --enable-dnstap --enable-subnet --enable-systemd --enable-tfo-client --enable-tfo-server
    
  • Compile:

    make

  • Install:

    sudo make install

divider

❯ Post Install

  🔸 Add User ➜ Create Dirs ➜ Copy Files ➜ Create Crypto Keys

  • Run script post-install.sh available in the release under post-install dir. It automates post install tasks.

    Run: sudo ./post-install.sh

    ℹ️ Note:
    Startup service and scripts are reused from unbound package in RaspberryPi OS Bookworm. root.hints is downloaded from internic, it will be automated through systemd timer.

  • Alternatively, create user manually and use your preferred startup service and scripts.

divider

❯ Config

  🔸 Update unbound and sysctl configuration files

  • A tweaked unbound.conf is available in the release under config dir. You can use unbound.conf either from the release or your preferred one. If you use the provided unbound.conf, modify below attributes as per your environment:

    Change interface to Raspberry Pi IP:
    interface: <IP>

    Change access-control to allowed local subnet:
    access-control: <subnet> allow

    Change private-address to your allowed local subnet:
    private-address: <subnet>

    cache-min-ttl is set to 0. Zero keeps minimum ttl of cached record as the domain owner intended. After some thorough testing in small network with different values, zero gives optimal performance with prefetch-key and serve-expired enabled.

    serve-expired-reply-ttl is set to 0. Default is 30. Unbound changed the default value from 0 to 30 a while back following the RFC 8767 recommendation. Default nonzero value throws unbound startup ⚠️ warning when cachedb module is enabled in unbound.conf under module-config.

    ℹ️ Note:
    Unbound documentation and RFC suggested to use 30 for serve-expired-reply-ttl if serve-expired-client-timeout (default is 0) is used. Unbound uses default 30 for serve-expired-reply-ttl irrespective of serve-expired-client-timeout.
    Unbound behavior with default serve-expired-reply-ttl:
     • Record served from cacheserve-expired-reply-ttl=30
     • Record served from cachedbserve-expired-reply-ttl=0
    Provided unbound.conf sets the serve-expired-reply-ttl to 0. TTL of 0 indicates that the expired record is only meant for this DNS resolution and not to be cached by the client. It removes unbound startup warning, keeps cache and cachedb behavior consistent and serve-expired-client-timeout is not used.

    num-threads and various cache-slabs are optimized for Raspberry Pi 4 CPU.

  • Modify /etc/sysctl.conf. Enable tcp fast open for unbound and change virtual memory commit mode for redis warning.

    Edit: sudo nano /etc/sysctl.conf

    Add below lines at the end:

    ###################################################################
    # Unbound & Redis
    #
    # Unbound: Enable TCP Fast Open - Reduces Network Latency
    net.ipv4.tcp_fastopen=3
    #
    # Redis: Recommended To Use 1 - Removes Redis Log Warning
    # Kernel Virtual Memory Overcommit Mode
    # 0 Heuristic overcommit (Default)
    # 1 Always overcommit, never check
    # 2 Always check, never overcommit
    vm.overcommit_memory=1
    
divider

❯ Timers & Services

  🔸 Automate blocklist and roothints update with systemd timers

  • Run script install-timers.sh available in the release under install-timers dir. Installs systemd timers, services and scripts for root servers and blocklist update.

    Run: sudo ./install-timers.sh

    ℹ️ Note:
    Timers update:
     • root servers ➟ Monthly on the last Sunday at 3:55am
     • blocklist ➟ Monthly on the last Sunday at 4:00am
    You can change the time and frequency in /etc/systemd/system/unbound-roothints.timer and /etc/systemd/system/unbound-blocklist.timer

  • Alternatively, use your preferred method for blocklist and roothints update.

divider

❯ Blocklist

  • Create dir and empty blocklist:

    sudo mkdir -p /opt/unbound/blocklists
    sudo touch /opt/unbound/blocklists/unbound.block.conf

    ℹ️ Note:
    /opt/unbound/scripts/update-blocklists.sh script uses StevenBlack's unified hosts (adware + malware) + porn as default list. It converts default list to unbound format, removes comments and sorts it.
    You can add more lists to the update-blocklists.sh script. With some basic expertise in sed you can aggregate multiple lists into unbound blocklist unbound.block.conf

divider

❯ Start

  🔸 Initial run

  • Let's do the initial run. Start unbound, manually update root servers and blocklist.

    Enable unbound:
    sudo systemctl enable unbound

    Start unbound:
    sudo systemctl start unbound

    Update root servers:
    sudo /opt/unbound/scripts/update-roothints.sh

    Update blocklist:
    sudo /opt/unbound/scripts/update-blocklists.sh

❯ Validate

  🔸 Verfiy unbound and redis

  • Unbound resolving the DNS:

    Run: dig whoami.akamai.net
    Returns your WAN IP.

    Run: dig +ttlunits github.com
    Returns github IP in the ANSWER SECTION and raspberry pi IP where unbound is running in the SERVER.

  • Redis saving the cache:

    Run: redis-cli dbsize
    Count starts increasing with each unbound DNS lookup request.

❯ Cmds

  🔸 Few handy cmds

  • Unbound:

    Stats:
    sudo unbound-control stats_noreset | grep total

    Tail log:
    sudo journalctl -u unbound -n 200 -f

    Tail filtered log:
    sudo journalctl -u unbound -n 200 -f | grep "10.1.5.30\|10.1.5.32"

    Check config for errors:
    unbound-checkconf /etc/unbound/unbound.conf

  • Redis CLI:

    Db size:
    redis-cli dbsize

    Memory stats:
    redis-cli info memory | grep human

    Monitor live queries:
    redis-cli monitor

ℹ️ Tips & Notes

  • Enable Redis Unix Socket:
    Unbound (1.18.0) added the option to connect to redis server over unix socket. It has better throughput. Follow below steps to enable unix socket connection between unbound and redis:

    • Redis config:

      Edit: sudo nano /etc/redis/redis.conf

      Add options:
      unixsocket /var/run/redis/redis.sock
      unixsocketperm 707

      Restart redis:
      sudo systemctl restart redis-server

    • Unbound config:

      Edit: sudo nano /etc/unbound/unbound.conf

      Modify under cachedb: tag:

      Add:
      redis-server-path: "/var/run/redis/redis.sock"
      Comment out:
      #redis-server-host: 127.0.0.1
      #redis-server-port: 6379

      Restart unbound:
      sudo systemctl restart unbound

    ℹ️ Note:
    In order to use more restrictive option unixsocketperm 770 in redis.conf, add unbound user to redis group.
    Redis connectivity on TCP can be turned off with option port 0 in redis.conf. When redis is not listening on TCP, specify socket path in cli cmds redis-cli -s /var/run/redis/redis.sock

  • Resolver Configuration:
    Make sure /etc/resolv.conf has only RaspberryPi IP name servers. NetworkManager in RaspberryPi OS Bookworm will make this change automatically if your router's LAN DNS is pointing to Raspberry Pi IP.

    nameserver <RaspberryPi-IP>

  • Add LAN DNS:
    According to your router, change LAN DNS to Raspberry Pi IP. DNS setting under internet setup is WAN DNS, it is not same as LAN DNS. If router permits to change LAN DNS, it is usually under LAN setup.

  • Troubleshoot Blocked Domain:
    Below option logs blocked domains, using that you can find domain causing the issue.

    Edit: sudo nano unbound.conf
    Set: log-local-actions: yes

  • Block Selective:
    Specific domains can be blocked for specific IPs with tag options. It works on top of existing ads and trackers block. Provided unbound.conf has selective block configuration commented out under |Block|. If interested uncomment it and replace the IPs and domains.

    ℹ️ Note:
    Provided specific block configuration handles simple use case pretty well. For complex scenarios utilize unbound RPZ.

  • DNS Lookup:
    To inspect if the record is served from redis cachedb.

    Increase log verbosity briefly:
    Run: sudo unbound-control verbosity 4

    Tail log in separate terminal:
    Run: sudo journalctl -u unbound -n 200 -f

    Run: dig github.com

    ANSWER SECTION in the log shows that DNS lookup is responded from redis cache:
    info: redis ;; ->>HEADER<<- ...

    Revert log verbosity:
    Run: sudo service unbound reload

  • Uninstall Unbound:
    Unbound can be uninstalled by running below cmd in the build directory.

    sudo make uninstall

    After uninstall all the Post Install and Timers & Services steps can be easily reverted by running post-remove.sh provided in the release.

    sudo ./post-remove.sh

unbound-redis's People

Contributors

aljaxus avatar ar51an avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

unbound-redis's Issues

script post install and config

hi!

can you share all config file .conf
post-install.sh
install-timers.sh
update-roothints.sh
update-blocklists.sh
post-remove.sh

Unbound startup problems - missing /var/lib/unbound/root.key

Hi,

I followed your guide to setup unbound + Redis.

After trying to start unbound is missing the /var/lib/unbound/root.key
Apr 24 11:46:06 dns unbound[14365]: [14365:0] error: unable to open /var/lib/unbound/root.key for reading: No such file or directory Apr 24 11:46:06 dns unbound[14365]: [14365:0] error: error reading auto-trust-anchor-file: /var/lib/unbound/root.key Apr 24 11:46:06 dns unbound[14365]: [14365:0] error: validator: error in trustanchors config Apr 24 11:46:06 dns unbound[14365]: [14365:0] error: validator: could not apply configuration settings. Apr 24 11:46:06 dns unbound[14365]: [14365:0] error: module init for module validator failed Apr 24 11:46:06 dns unbound[14365]: [14365:0] fatal error: failed to setup modules

I tried to use unbound-anchor but it also fails.
unbound-anchor: error while loading shared libraries: libunbound.so.8: cannot open shared object file: No such file or directory

The only difference to your guide is that I'm on an x86 machine and removed the --build=aarch64-linux-gnu flag on configure.

Any suggestions?

Docker

Hi @ar51an

First of all, I wanted to drop a line and say I loved your setup. Is so impressive. I was only looking for someone who had set up Redis with Unbound, but this looks so much better than anything I came across so far. And the dashboard. And it would remove hops and components from my setup.

I'm running everything on Docker (my NAS works as a server for pretty much everything). I guess you're not considering supporting Docker as you're running everything on a RaspberryPi. Considering on copying what you did, any pointers on how to start setting this up on Docker? :)

Cheers

Integration with PiHole

Hey,

First of all, wanted to say, really love the idea of the project, the code looks great and the instructions are incredibly detailed, which I appreciate.

Just one question, I already run Pi-Hole with Unbound. Would I get any benefit in replacing the Unbound part with this one?

Thanks!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.