バインドされていないエラー - unbound.service: 開始要求が繰り返して繰り返される時間が短すぎます

バインドされていないエラー - unbound.service: 開始要求が繰り返して繰り返される時間が短すぎます

私はUnboundを初めて使用します。

192.168.50.1 から 192.168.50.240 までのネットワークがあります。キャッシュ以外のデータには DoH を使用したいと思います。

私のconfファイル:

# Unbound configuration file for Debian.
#
# See the unbound.conf(5) man page.
#
# See /usr/share/doc/unbound/examples/unbound.conf for a commented
# reference config file.
#
# The following line includes additional configuration files from the
# /etc/unbound/unbound.conf.d directory.
include: "/etc/unbound/unbound.conf.d/*.conf"

server:

    forward-zone:
        name: "."
        forward-addr: https://cloudflare-dns.com/dns-query

    directory: "/etc/unbound"

    username: unbound

    verbosity: 2

    interface: 0.0.0.0

    prefetch: yes

    access-control: 192.168.50.0/24 allow
    access-control: 127.0.0.1/24 allow

    hide-identity: yes
    hide-version: yes

    remote-control:
        control-enable: no

    control-interface: 127.0.0.1
    control-port: 8953

私の conf ファイルの何が問題なのでしょうか?

どうもありがとう!

答え1

directoryserverは の下ではなく の下に置く必要がありますforward-zone(行がインデントされているかどうかは関係ありません)。また、 はforward-addrURL ではなく IP アドレスである必要があります (Unbound が DoH クライアントとして機能できるかどうかはわかりません)。

関連情報