From: Tomas Krizek Date: Thu, 16 Jan 2020 13:45:04 +0000 (+0100) Subject: etc/config: add freebind=true to IPv6 in default config X-Git-Tag: v5.0.0~3^2~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1c56e1abb18a4af2b771c2b084cf5f15c589ce92;p=thirdparty%2Fknot-resolver.git etc/config: add freebind=true to IPv6 in default config In some environments, e.g. VMs, even the IPv6 loopback may not be available. Using freebind allows the service to start up with default configuration without requiring the user to change interfaces. --- diff --git a/etc/config/config.personal b/etc/config/config.personal index ba4ddc101..791caec48 100644 --- a/etc/config/config.personal +++ b/etc/config/config.personal @@ -3,9 +3,9 @@ -- Network interface configuration net.listen('127.0.0.1', 53, { kind = 'dns' }) -net.listen('::1', 53, { kind = 'dns'}) net.listen('127.0.0.1', 853, { kind = 'tls' }) -net.listen('::1', 853, { kind = 'tls' }) +net.listen('::1', 53, { kind = 'dns', freebind = true }) +net.listen('::1', 853, { kind = 'tls', freebind = true }) -- Load useful modules modules = {