Skip to content

pixelkeep/pihole-unbound

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

60 Commits
 
 
 
 

Repository files navigation

Pi-hole + Unbound Recursive DNS

NL EN

Pi-hole Unbound Proxmox LXC Debian Raspberry Pi

Lightweight setup for running Pi-hole with Unbound as a local recursive DNS resolver.

This guide supports:

  • Proxmox VE with an unprivileged Debian LXC container
  • Debian 12 Bookworm
  • Debian 13 Trixie
  • Raspberry Pi OS / Debian-based systems

Part of the pixelkeep homelab setup.


What this setup does

Pi-hole provides DNS filtering, blocklists, and the web interface.

Unbound provides local recursive DNS resolution and DNSSEC validation.

The target architecture is:

LAN clients
   |
   | DNS :53
   v
Pi-hole
   |
   | upstream DNS: 127.0.0.1#5335
   v
Unbound
   |
   | recursive DNS queries
   v
Root / TLD / authoritative DNS servers

Why Pi-hole + Unbound instead of Pi-hole alone

Pi-hole alone requires an upstream DNS provider — typically a public resolver like Cloudflare (1.1.1.1) or Google (8.8.8.8). This means every DNS query that is not blocked by Pi-hole is forwarded to a third-party server. That third party can log, analyse, and profile all domains your network resolves.

Unbound eliminates that dependency. Instead of forwarding queries to a public resolver, Unbound resolves DNS recursively — it queries the root nameservers directly and follows the chain to the authoritative nameserver for each domain. No query leaves your network to a third party.

Combined benefits:

  • Privacy — no third-party DNS provider sees your query history
  • DNSSEC — Unbound validates DNSSEC signatures end-to-end, preventing DNS spoofing
  • Ad blocking — Pi-hole handles filtering before Unbound resolves anything
  • No dependency — works without internet access to a public resolver, as long as root servers are reachable
  • Low latency — Unbound caches resolved records locally; repeat queries resolve instantly

The only trade-off: Unbound's first resolution for an uncached domain takes slightly longer than forwarding to a cached public resolver. For a homelab this is imperceptible.


Key references


Contents


Prerequisites

This guide supports the following deployment models:

Proxmox VE    Debian 13 or Debian 12 unprivileged LXC
Raspberry Pi  Raspberry Pi OS based on Debian
Debian        Debian 13 Trixie or Debian 12 Bookworm

For Proxmox VE, the recommended container profile is:

Type:        Unprivileged LXC
OS:          Debian 13 standard template
CPU:         1 vCPU
RAM:         512 MB minimum, 1 GB recommended
Disk:        4 GB minimum, 8 GB recommended
Network:     Bridged network with static IP or DHCP reservation
VLAN tag:    20  (Servers VLAN — adjust to match your network design)

For Raspberry Pi or standalone Debian systems:

OS:          Raspberry Pi OS or Debian 12/13
RAM:         512 MB minimum, 1 GB recommended
Disk:        4 GB minimum, 8 GB recommended
Network:     Static IP or DHCP reservation

Before installing, make sure:

  • The host or container has a static IP address or DHCP reservation.
  • No other service is already listening on port 53.
  • Outbound DNS traffic to the internet on TCP/UDP port 53 is allowed.
  • The system can reach the DNS root servers directly.
  • You have root access or sudo permissions.
  • Pi-hole DHCP is disabled unless you explicitly want Pi-hole to act as DHCP server.
  • The Pi-hole admin interface is not exposed directly to the internet.

Deployment guidance:

  • Use a native Debian LXC on Proxmox VE.
  • Do not use Docker inside LXC unless you have a specific operational reason.
  • Keep the system dedicated to Pi-hole and Unbound.
  • Let Pi-hole handle filtering.
  • Let Unbound handle recursive DNS and DNSSEC validation.

Proxmox LXC preparation

If you are installing on Proxmox VE, use a lightweight Debian 13 unprivileged LXC container.

Update the Proxmox template list:

pveam update

List available Debian templates:

pveam available --section system | grep debian

Download the Debian 13 standard template:

pveam download local debian-13-standard_13.1-2_amd64.tar.zst

Select the target storage

By default, this guide uses local-lvm for the container root disk:

--rootfs local-lvm:8

List your available Proxmox storage backends first:

pvesm status

Use the storage ID that fits your setup. The number 8 means an 8 GB root disk, which is sufficient for Pi-hole and Unbound.

Create a new unprivileged LXC container:

pct create 110 local:vztmpl/debian-13-standard_13.1-2_amd64.tar.zst \
  --hostname lxc-pihole01 \
  --cores 1 \
  --memory 512 \
  --swap 512 \
  --rootfs local-lvm:8 \
  --net0 name=eth0,bridge=vmbr0,tag=20,ip=dhcp,type=veth \
  --unprivileged 1 \
  --features nesting=1 \
  --onboot 1 \
  --start 1

tag=20 assigns the container to the Servers VLAN (192.168.20.0/24). Adjust to match your VLAN design. If you use a different VLAN or no VLAN tagging, omit the tag= parameter.

Enter the container:

pct enter 110

Update the container and install base packages:

apt update
apt upgrade -y
apt install -y curl wget dnsutils sudo ca-certificates unbound openssh-server locales

Configure system locale

Some minimal Debian LXC templates show locale warnings. Fix this before continuing:

sed -i 's/^# *en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen
locale-gen
update-locale LANG=en_US.UTF-8
source /etc/default/locale
locale

Expected result:

LANG=en_US.UTF-8

Create an administrative user

Do not use root SSH login for the installation.

adduser piholeadmin
usermod -aG sudo piholeadmin

Validate:

groups piholeadmin

Expected result should include sudo.

Enable SSH access

systemctl enable --now ssh
systemctl status ssh --no-pager

Configure a static IP address

For DNS infrastructure, use a stable IP address. Prefer a DHCP reservation on your router — see the homelab network README for UniFi DHCP reservation instructions.

To configure a static IP directly in Proxmox:

exit

From the Proxmox host:

pct stop 110
pct set 110 --net0 name=eth0,bridge=vmbr0,tag=20,ip=192.168.20.11/24,gw=192.168.20.1,type=veth
pct start 110

Adjust the IP address, gateway, and VLAN tag to match your network.

Validate basic connectivity

pct enter 110
ip a
ip route
ping -c 3 1.1.1.1
ping -c 3 debian.org

Continue installation over SSH

exit
ssh piholeadmin@192.168.20.11
sudo whoami

Expected result: root


Debian or Raspberry Pi preparation

Update the system and install required base packages:

sudo apt update
sudo apt upgrade -y
sudo apt install -y curl wget dnsutils sudo ca-certificates unbound locales

Configure the default locale if needed:

sudo sed -i 's/^# *en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen
sudo locale-gen
sudo update-locale LANG=en_US.UTF-8

Validate basic connectivity:

ip a
ip route
ping -c 3 1.1.1.1
ping -c 3 debian.org

Pre-flight checks

Check if anything is already using DNS port 53:

sudo ss -tulpn | grep ':53 ' || true

Check whether the system can reach the DNS root servers directly:

dig @198.41.0.4 . NS +norec +time=3
dig @198.41.0.4 . NS +norec +tcp +time=3

If these tests fail, your ISP, router, or firewall may be blocking direct DNS traffic. Fix that before continuing.


Install Pi-hole

Log in over SSH using the administrative user:

ssh piholeadmin@192.168.20.11

Download the official Pi-hole installer:

curl -fsSL https://install.pi-hole.net -o /tmp/pihole-install.sh
ls -lh /tmp/pihole-install.sh
head -n 5 /tmp/pihole-install.sh

Fix terminal line drawing issues (optional)

If the installer shows broken characters (q, x, l, k), set the terminal environment first:

export TERM=xterm-256color
export LANG=en_US.UTF-8
export LC_ALL=en_US.UTF-8
export NCURSES_NO_UTF8_ACS=1

Start the installer:

sudo bash /tmp/pihole-install.sh

During installation:

  • Choose the network interface used by the container.
  • Confirm the static IP address.
  • Select any temporary upstream DNS provider (e.g. 1.1.1.1). This will be replaced by Unbound.
  • Enable the web interface.
  • Enable query logging according to your privacy requirements.

After installation, set the Pi-hole web admin password:

sudo pihole setpassword

Check status:

pihole status

Install and configure Unbound

Install Unbound if not already installed:

sudo apt update
sudo apt install -y unbound dnsutils

Create the Pi-hole specific Unbound configuration:

sudo tee /etc/unbound/unbound.conf.d/pi-hole.conf > /dev/null <<'EOF'
server:
    verbosity: 0

    interface: 127.0.0.1
    port: 5335

    do-ip4: yes
    do-ip6: no
    do-udp: yes
    do-tcp: yes

    # Recommended EDNS buffer size to avoid fragmentation issues
    edns-buffer-size: 1232

    # Security hardening
    harden-glue: yes
    harden-dnssec-stripped: yes
    harden-below-nxdomain: yes
    harden-referral-path: yes
    use-caps-for-id: no

    # Privacy and efficiency
    qname-minimisation: yes
    prefetch: yes
    aggressive-nsec: yes

    # Hide local resolver identity
    hide-identity: yes
    hide-version: yes

    # Keep small for lightweight LXC usage
    num-threads: 1
    so-rcvbuf: 1m

    # Block private address ranges from appearing in public DNS responses
    private-address: 192.168.0.0/16
    private-address: 169.254.0.0/16
    private-address: 172.16.0.0/12
    private-address: 10.0.0.0/8
    private-address: fd00::/8
    private-address: fe80::/10
    private-address: 192.0.2.0/24
    private-address: 198.51.100.0/24
    private-address: 203.0.113.0/24
    private-address: 255.255.255.255/32
    private-address: 2001:db8::/32
EOF

Debian Bullseye / Bookworm / Trixie resolvconf fix

On modern Debian releases, unbound-resolvconf.service may create unwanted resolver configuration. Disable it:

sudo systemctl disable --now unbound-resolvconf.service 2>/dev/null || true

if [ -f /etc/resolvconf.conf ]; then
  sudo sed -Ei 's/^unbound_conf=/#unbound_conf=/' /etc/resolvconf.conf
fi

sudo rm -f /etc/unbound/unbound.conf.d/resolvconf_resolvers.conf

Validate and restart Unbound

sudo unbound-checkconf
sudo systemctl restart unbound
sudo systemctl enable unbound

Check that Unbound listens only on localhost port 5335:

sudo ss -tulpn | grep 5335

Expected: 127.0.0.1:5335not 0.0.0.0:5335. If Unbound listens on the LAN IP, fix the configuration before continuing.

Test recursive resolution:

dig pi-hole.net @127.0.0.1 -p 5335

Test DNSSEC validation:

dig fail01.dnssec.works @127.0.0.1 -p 5335
dig +ad dnssec.works @127.0.0.1 -p 5335

Expected result:

fail01.dnssec.works → SERVFAIL   (invalid DNSSEC, correctly rejected)
dnssec.works        → NOERROR with ad flag  (valid DNSSEC, correctly accepted)

Point Pi-hole to Unbound

Open the Pi-hole admin UI:

http://192.168.20.11/admin

Go to:

Settings > DNS

Configure:

Custom DNS server: 127.0.0.1#5335

Disable all other upstream DNS providers. Save the settings.

Flush Pi-hole DNS cache:

sudo pihole reloaddns

Verify Pi-hole is using Unbound

From a client machine, query Pi-hole:

dig pi-hole.net @192.168.20.11

On the Pi-hole host, check the live query log:

sudo pihole tail

You should see client queries arriving at Pi-hole, which forwards allowed domains to Unbound on 127.0.0.1#5335.


Quick validation

# Test Unbound directly
dig pi-hole.net @127.0.0.1 -p 5335

# Test DNSSEC
dig fail01.dnssec.works @127.0.0.1 -p 5335
dig +ad dnssec.works @127.0.0.1 -p 5335

# Test Pi-hole
dig pi-hole.net @127.0.0.1
dig pi-hole.net @192.168.20.11

# Live query log
sudo pihole tail

Expected DNSSEC results:

fail01.dnssec.works → SERVFAIL
dnssec.works        → NOERROR with ad flag

Security hardening

Security baseline:

Internet exposure:      none
SSH:                    admin network only
Pi-hole web UI:         admin network only
DNS port 53:            trusted LAN/VLAN clients only
Unbound port 5335:      localhost only
Root SSH login:         disabled
Updates:                Debian security updates automatic
Pi-hole updates:        manual after backup/snapshot

Network exposure baseline

Recommended exposure:

Service        Port        Source
DNS            53/tcp      Trusted LAN/VLAN clients only
DNS            53/udp      Trusted LAN/VLAN clients only
Pi-hole UI     80/tcp      Admin network only
Pi-hole UI     443/tcp     Admin network only, if enabled
SSH            22/tcp      Admin network only
Unbound        5335/tcp    Localhost only — never exposed externally
Unbound        5335/udp    Localhost only — never exposed externally
NTP            123/udp     Only if Pi-hole NTP server is intentionally enabled
DHCP           67/udp      Only if Pi-hole DHCP server is intentionally enabled

Validate Unbound is localhost-only:

sudo ss -tulpn | grep 5335

Expected: 127.0.0.1:5335

Administrative user

sudo adduser piholeadmin
sudo usermod -aG sudo piholeadmin
groups piholeadmin

SSH hardening

Disable root SSH login:

sudo tee /etc/ssh/sshd_config.d/99-disable-root-login.conf > /dev/null <<'EOF'
PermitRootLogin no
EOF

sudo sshd -t
sudo systemctl reload ssh

Validate:

sshd -T | grep permitrootlogin

Expected: permitrootlogin no

Copy your SSH key to the admin user and only then disable password authentication:

ssh-copy-id piholeadmin@192.168.20.11

Validate key login from a new terminal first, then:

sudo tee /etc/ssh/sshd_config.d/99-disable-password-login.conf > /dev/null <<'EOF'
PasswordAuthentication no
KbdInteractiveAuthentication no
EOF

sudo sshd -t
sudo systemctl reload ssh

Keep an active SSH session open while testing SSH changes. If SSH access breaks on Proxmox LXC, use pct enter <CTID> from the Proxmox host to recover.

Firewall guidance

Preferred control points:

  • Router/firewall: allow trusted client VLANs to reach Pi-hole on port 53.
  • Router/firewall: block internet access to SSH and Pi-hole web interface.
  • Proxmox firewall: restrict LXC access to trusted admin and LAN/VLAN networks.
  • Local UFW: optional, useful for Raspberry Pi or standalone Debian.

Do not expose these ports from the internet:

22/tcp  53/tcp  53/udp  80/tcp  443/tcp  5335/tcp  5335/udp

Optional local firewall with UFW

sudo apt update
sudo apt install -y ufw

sudo ufw default deny incoming
sudo ufw default allow outgoing

# SSH from admin network
sudo ufw allow from 192.168.10.0/24 to any port 22 proto tcp
sudo ufw allow from 192.168.20.0/24 to any port 22 proto tcp

# Pi-hole web UI from admin/trusted network
sudo ufw allow from 192.168.10.0/24 to any port 80 proto tcp
sudo ufw allow from 192.168.30.0/24 to any port 80 proto tcp

# DNS from all trusted VLANs
sudo ufw allow from 192.168.10.0/24 to any port 53
sudo ufw allow from 192.168.20.0/24 to any port 53
sudo ufw allow from 192.168.30.0/24 to any port 53
sudo ufw allow from 192.168.40.0/24 to any port 53

sudo ufw enable
sudo ufw status verbose

Adjust subnet ranges to match your VLAN design. See the homelab network README for the full VLAN overview.

Do not allow inbound access to Unbound port 5335.

Proxmox LXC-specific hardening

Validate unprivileged container:

pct config 110 | grep unprivileged

Expected: unprivileged: 1

pct config 110 | grep features

Expected includes: features: nesting=1

Proxmox firewall recommendation

Inbound default:  DROP
Outbound default: ACCEPT

ALLOW  tcp  192.168.10.0/24  → PIHOLE_IP  port 22    (SSH from Management)
ALLOW  tcp  192.168.10.0/24  → PIHOLE_IP  port 80    (Pi-hole UI from Management)
ALLOW  tcp  192.168.30.0/24  → PIHOLE_IP  port 80    (Pi-hole UI from Trusted LAN)
ALLOW  udp  192.168.10.0/24  → PIHOLE_IP  port 53    (DNS from Management)
ALLOW  udp  192.168.20.0/24  → PIHOLE_IP  port 53    (DNS from Servers)
ALLOW  udp  192.168.30.0/24  → PIHOLE_IP  port 53    (DNS from Trusted LAN)
ALLOW  udp  192.168.40.0/24  → PIHOLE_IP  port 53    (DNS from IoT)
ALLOW  tcp  192.168.10.0/24  → PIHOLE_IP  port 53
ALLOW  tcp  192.168.20.0/24  → PIHOLE_IP  port 53
ALLOW  tcp  192.168.30.0/24  → PIHOLE_IP  port 53
ALLOW  tcp  192.168.40.0/24  → PIHOLE_IP  port 53
DROP   all  any              → PIHOLE_IP

Raspberry Pi-specific hardening

  • Keep Raspberry Pi OS updated.
  • Disable unused services.
  • Do not expose SSH or the Pi-hole web interface to the internet.
  • Use SSH keys where possible.
  • Use a reliable wired connection where possible.
  • Use a reliable power supply.
  • Use a DHCP reservation or static IP.
  • Make regular backups of the SD card or boot disk.

Check enabled services:

systemctl list-unit-files --state=enabled
sudo ss -tulpn

Pi-hole NTP behavior

Pi-hole v6 includes NTP functionality. For Proxmox LXC, let the Proxmox host manage system time and disable Pi-hole's NTP sync inside the container:

sudo pihole-FTL --config ntp.sync.active false
sudo systemctl restart pihole-FTL

Validate:

sudo pihole-FTL --config ntp.sync.active

Expected: false

Optionally disable the Pi-hole NTP server:

sudo pihole-FTL --config ntp.ipv4.active false
sudo pihole-FTL --config ntp.ipv6.active false
sudo systemctl restart pihole-FTL

Fail2ban

Fail2ban is not required for the default deployment model. Preferred controls in order:

  1. Do not expose SSH to the internet
  2. Restrict SSH to trusted admin networks
  3. Disable root SSH login
  4. Prefer SSH keys over passwords
  5. Use Proxmox, router, or firewall rules for access control
  6. Fail2ban as optional additional control

Do not make a Proxmox LXC container privileged only to support Fail2ban.


Automatic Debian security updates

Pi-hole is not updated by Debian package updates, but system packages (unbound, openssh-server, ca-certificates, libraries) should receive security updates automatically.

sudo apt update
sudo apt install -y unattended-upgrades apt-listchanges

Create the APT periodic update configuration:

sudo tee /etc/apt/apt.conf.d/20auto-upgrades > /dev/null <<'EOF'
APT::Periodic::Update-Package-Lists "1";
APT::Periodic::Unattended-Upgrade "1";
APT::Periodic::AutocleanInterval "7";
EOF

Create a local policy:

sudo tee /etc/apt/apt.conf.d/52unattended-upgrades-local > /dev/null <<'EOF'
Unattended-Upgrade::Automatic-Reboot "false";
Unattended-Upgrade::Remove-Unused-Dependencies "true";
Unattended-Upgrade::SyslogEnable "true";
EOF

Validate:

sudo unattended-upgrade --dry-run --debug
systemctl status apt-daily.timer apt-daily-upgrade.timer --no-pager
sudo tail -n 100 /var/log/unattended-upgrades/unattended-upgrades.log

Pi-hole maintenance and updates

Pi-hole is not updated by unattended-upgrades. Manage it manually.

# Check installed versions
pihole version

# Check status
pihole status

# Update blocklists
sudo pihole updateGravity
# short form:
sudo pihole -g

Pi-hole update procedure

Before updating, create a backup or snapshot.

For Proxmox LXC:

pct snapshot 110 pre-pihole-update-$(date +%Y%m%d)

For Raspberry Pi: export Pi-hole configuration via the web interface using Teleporter, or back up /etc/pihole and /etc/unbound.

Then update:

sudo pihole -up

After the update, validate:

pihole status
sudo systemctl status pihole-FTL --no-pager
sudo systemctl status unbound --no-pager
dig pi-hole.net @127.0.0.1
dig pi-hole.net @192.168.20.11
dig pi-hole.net @127.0.0.1 -p 5335
dig fail01.dnssec.works @127.0.0.1 -p 5335
dig +ad dnssec.works @127.0.0.1 -p 5335

Backup recommendation

For Proxmox LXC:

Backup frequency:   daily or weekly
Mode:               snapshot
Retention:          at least 3 recent backups
Scope:              LXC container including root disk

Before major changes:

pct snapshot 110 before-major-change-$(date +%Y%m%d)

For Raspberry Pi — use one or more of:

  • SD card image backup
  • Filesystem backup
  • Pi-hole Teleporter export (web UI)
  • Backup of /etc/pihole and /etc/unbound

Major changes that warrant a backup first:

  • Pi-hole version update
  • Debian release upgrade
  • Unbound configuration change
  • Network or VLAN change
  • Firewall policy change

Security validation checklist

Run after installation and after major changes.

# Check listening ports
sudo ss -tulpn

# Validate Unbound is localhost-only
sudo ss -tulpn | grep 5335

# Pi-hole and Unbound status
pihole status
sudo systemctl status unbound --no-pager

# SSH root login policy
sshd -T | grep permitrootlogin

# DNS through Pi-hole
dig pi-hole.net @192.168.20.11

# Unbound directly
dig pi-hole.net @127.0.0.1 -p 5335

# DNSSEC validation
dig fail01.dnssec.works @127.0.0.1 -p 5335
dig +ad dnssec.works @127.0.0.1 -p 5335

# Live Pi-hole log
sudo pihole tail

# Recent Unbound log
journalctl -u unbound -n 100 --no-pager

# Recent SSH log
journalctl -u ssh -n 100 --no-pager

# Automatic updates status
systemctl status apt-daily.timer apt-daily-upgrade.timer --no-pager
sudo tail -n 50 /var/log/unattended-upgrades/unattended-upgrades.log

Local DNS — wildcard voor interne services

Pi-hole kan alle subdomains van een intern domein naar een reverse proxy sturen zodat je nas.pixelkeep.nl intern gebruikt in plaats van een IP adres.

Configuratie (Pi-hole v6)

In Pi-hole v6 werkt /etc/dnsmasq.d/ niet standaard meer. Gebruik de webinterface:

http://<pihole-ip>/admin
→ Settings → rechtsboven: Advanced
→ All Settings → Miscellaneous
→ misc.dnsmasq_lines
→ voer in: address=/.pixelkeep.nl/192.168.20.15
→ Save & Apply

Of via de command line:

sudo pihole-FTL --config misc.dnsmasq_lines '["address=/.pixelkeep.nl/192.168.20.15"]'
sudo systemctl restart pihole-FTL

Vervang pixelkeep.nl door jouw eigen domein en 192.168.20.15 door het IP van jouw reverse proxy (Caddy, Nginx Proxy Manager, etc.).

Valideren

dig nas.pixelkeep.nl @192.168.20.11
# Verwacht: 192.168.20.15

dig vault.pixelkeep.nl @192.168.20.11
# Verwacht: 192.168.20.15

Instellingen op meerdere Pi-hole instanties

Herhaal de configuratie op elke Pi-hole instantie. Voor pixelkeep.nl:

Primary:    http://192.168.20.11/admin
Secondary:  http://192.168.20.12/admin

Alternatief: misc.etc_dnsmasq_d inschakelen

Als je meer controle wil via losse configuratiebestanden:

Settings → Advanced → All Settings → Miscellaneous
→ misc.etc_dnsmasq_d: Enabled
→ Save & Apply

Maak daarna:

sudo nano /etc/dnsmasq.d/99-local-wildcard.conf

Inhoud:

address=/.pixelkeep.nl/192.168.20.15
sudo systemctl restart pihole-FTL

Let op: misc.dnsmasq_lines is eenvoudiger voor een paar regels. misc.etc_dnsmasq_d is beter als je meerdere complexe configuratiebestanden hebt.


Netwerk configuratie — pixelkeep.nl

Primary Pi-hole:    RPDO01    192.168.20.11    Raspberry Pi + Unbound
Secondary Pi-hole:  DEBPIH01  192.168.20.12    Proxmox LXC + Unbound

DHCP DNS servers per VLAN (ingesteld op de UDM Pro):

DNS Server 1:   192.168.20.11   (RPDO01 — primary)
DNS Server 2:   192.168.20.12   (DEBPIH01 — secondary)

Uitzondering:

Guest (VLAN 60):    1.1.1.1 / 1.0.0.1   (gasten krijgen geen interne DNS)
Cameras (VLAN 50):  geen DHCP DNS        (statische config)

Sources

About

Pi-hole with Unbound recursive DNS resolver for Debian, Proxmox LXC and Raspberry Pi homelabs.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors