AdGuardHome

Posted on Mar 3, 2025
FreeBSD 14.2 Deploy AdGuardHome

INSTALL

pkg install adguardhome

CONFIG

http://127.0.0.1:3000/

CONFIG FILE

mkdir /var/log/adguardhome

/usr/local/etc/AdGuardHome.yaml

http:
  pprof:
    port: 6060
    enabled: false
  address: 0.0.0.0:3000
  session_ttl: 720h
users:
  - name: nick
    password: $2a$10$H1nYkm/CG8SztBgCs3WlP.iaW4iHd.HNBp.nmmKalToOCcd9Mg00a
auth_attempts: 5
block_auth_min: 15
http_proxy: ""
language: ""
theme: auto
dns:
  bind_hosts:
    - 0.0.0.0
  port: 53
  anonymize_client_ip: false
  ratelimit: 20
  ratelimit_subnet_len_ipv4: 24
  ratelimit_subnet_len_ipv6: 56
  ratelimit_whitelist: []
  refuse_any: true
  upstream_dns:
    - 10.20.0.1:5301
  upstream_dns_file: ""
  bootstrap_dns:
    - 9.9.9.10
    - 149.112.112.10
    - 2620:fe::10
    - 2620:fe::fe:10
  fallback_dns:
    - 10.20.0.3
  upstream_mode: load_balance
  fastest_timeout: 1s
  allowed_clients: []
  disallowed_clients: []
  blocked_hosts:
    - version.bind
    - id.server
    - hostname.bind
  trusted_proxies:
    - 127.0.0.0/8
    - ::1/128
  cache_size: 4194304
  cache_ttl_min: 0
  cache_ttl_max: 0
  cache_optimistic: true
  bogus_nxdomain: []
  aaaa_disabled: false
  enable_dnssec: false
  edns_client_subnet:
    custom_ip: ""
    enabled: false
    use_custom: false
  max_goroutines: 300
  handle_ddr: true
  ipset: []
  ipset_file: ""
  bootstrap_prefer_ipv6: false
  upstream_timeout: 10s
  private_networks: []
  use_private_ptr_resolvers: true
  local_ptr_upstreams:
    - 10.20.0.1:5301
  use_dns64: false
  dns64_prefixes: []
  serve_http3: false
  use_http3_upstreams: false
  serve_plain_dns: true
  hostsfile_enabled: true
tls:
  enabled: false
  server_name: ""
  force_https: false
  port_https: 443
  port_dns_over_tls: 853
  port_dns_over_quic: 853
  port_dnscrypt: 0
  dnscrypt_config_file: ""
  allow_unencrypted_doh: false
  certificate_chain: ""
  private_key: ""
  certificate_path: ""
  private_key_path: ""
  strict_sni_check: false
querylog:
  dir_path: ""
  ignored: []
  interval: 2160h
  size_memory: 1000
  enabled: true
  file_enabled: true
statistics:
  dir_path: ""
  ignored: []
  interval: 24h
  enabled: true
filters:
  - enabled: true
    url: https://adguardteam.github.io/HostlistsRegistry/assets/filter_1.txt
    name: AdGuard DNS filter
    id: 1
  - enabled: true
    url: https://adguardteam.github.io/HostlistsRegistry/assets/filter_2.txt
    name: AdAway Default Blocklist
    id: 2
whitelist_filters: []
user_rules: []
dhcp:
  enabled: false
  interface_name: ""
  local_domain_name: lan
  dhcpv4:
    gateway_ip: ""
    subnet_mask: ""
    range_start: ""
    range_end: ""
    lease_duration: 86400
    icmp_timeout_msec: 1000
    options: []
  dhcpv6:
    range_start: ""
    lease_duration: 86400
    ra_slaac_only: false
    ra_allow_slaac: false
filtering:
  blocking_ipv4: ""
  blocking_ipv6: ""
  blocked_services:
    schedule:
      time_zone: Local
    ids: []
  protection_disabled_until: null
  safe_search:
    enabled: false
    bing: true
    duckduckgo: true
    ecosia: true
    google: true
    pixabay: true
    yandex: true
    youtube: true
  blocking_mode: default
  parental_block_host: family-block.dns.adguard.com
  safebrowsing_block_host: standard-block.dns.adguard.com
  rewrites: []
  safe_fs_patterns:
    - /var/db/adguardhome/userfilters/*
  safebrowsing_cache_size: 1048576
  safesearch_cache_size: 1048576
  parental_cache_size: 1048576
  cache_time: 30
  filters_update_interval: 24
  blocked_response_ttl: 10
  filtering_enabled: true
  parental_enabled: false
  safebrowsing_enabled: false
  protection_enabled: true
clients:
  runtime_sources:
    whois: true
    arp: true
    rdns: true
    dhcp: true
    hosts: true
  persistent: []
log:
  enabled: true
  file: ""
  max_backups: 0
  max_size: 100
  max_age: 3
  compress: false
  local_time: false
  verbose: false
os:
  group: ""
  user: ""
  rlimit_nofile: 0
schema_version: 29

SERVICE START

/usr/local/etc/rc.d/adguardhome

#!/bin/sh

# PROVIDE: adguardhome
# REQUIRE: DAEMON NETWORKING
# KEYWORD: shutdown

# Add the following lines to /etc/rc.conf to enable adguardhome:
# adguardhome_enable : set to "YES" to enable the daemon, default is "NO"

. /etc/rc.subr

name="adguardhome"
rcvar="${name}_enable"

load_rc_config "$name"

: "${adguardhome_enable:=NO}"
: "${adguardhome_config:=/usr/local/etc/AdGuardHome.yaml}"
: "${adguardhome_user:=root}"
: "${adguardhome_group:=wheel}"
: "${adguardhome_work_dir:=/var/db/adguardhome}"
: "${adguardhome_svcj_options:=net_basic}"
: "${adguardhome_extra:=}"

# old values
: "${adguardhome_config_old:=/usr/local/bin/AdGuardHome.yaml}"
: "${adguardhome_work_dir_old:=/usr/local/bin}"

logfile="/var/log/adguardhome/${name}.log"
pidfile="/var/run/${name}.pid"

command="/usr/sbin/daemon"
command_args="-H -o $logfile -t $name -P $pidfile /usr/local/bin/adguardhome -c $adguardhome_config -w $adguardhome_work_dir $adguardhome_extra"

start_precmd="${name}_prestart"
extra_commands="reload"

adguardhome_prestart()
{
    # check if the old config exists
    if [ -f "$adguardhome_config_old" ] || [ -d "${adguardhome_work_dir_old}/data" ]; then
        if ! [ -f "$adguardhome_config" ] && ! [ -d "${adguardhome_work_dir}/data" ]; then
            # old config exists, new config doesn't exist
            # move old config to new locations
            if [ -f "$adguardhome_config_old" ]; then
                echo "moving old config $adguardhome_config_old to the new location $adguardhome_config"
                mv "$adguardhome_config_old" "$adguardhome_config"
            fi
            if [ -d "${adguardhome_work_dir_old}/data" ]; then
                install -d -m 0750 -o "$adguardhome_user" \
                        -g "$adguardhome_group" "$adguardhome_work_dir"
                echo "moving old config ${adguardhome_work_dir_old}/data to the new location ${adguardhome_work_dir}/data"
                mv "${adguardhome_work_dir_old}/data" "${adguardhome_work_dir}/data"
            fi
        else # both old and new config exist
            echo "(!!!) WARNING =================================================================="
            echo "(!!!) WARNING Both old and new configs exist"
            echo "(!!!) WARNING Please choose which configs do you need and remove the old configs"
            echo "(!!!) WARNING OLD config locations: $adguardhome_config_old ${adguardhome_work_dir_old}/data"
            echo "(!!!) WARNING NEW config locations: $adguardhome_config ${adguardhome_work_dir}/data"
            echo "(!!!) WARNING =================================================================="
        fi
    fi

    # install dir
    if [ ! -d "$adguardhome_work_dir" ]; then
        install -d -m 0750 -o "$adguardhome_user" -g "$adguardhome_group" \
                "$adguardhome_work_dir"
    fi
}

run_rc_command "$1"

COMMON COMMANDS

sudo service adguardhome enable
sudo service adguardhome start