]> git.ipfire.org Git - thirdparty/knot-resolver.git/commitdiff
policy/README: fix "DNS-over-UDP" mentions
authorVladimír Čunát <vladimir.cunat@nic.cz>
Tue, 23 Mar 2021 10:29:42 +0000 (11:29 +0100)
committerVladimír Čunát <vladimir.cunat@nic.cz>
Fri, 26 Mar 2021 14:44:25 +0000 (15:44 +0100)
Regressed in acd019db2.  The intention was clearly to say that
encryption (i.e. DNS-over-TLS) is not supported.

modules/policy/README.rst

index d209f846c01dbb12133ed394b78025ae05ad3d6d..83ca7729d5065bab390650ee70c28c37ffd93e62 100644 (file)
@@ -302,7 +302,7 @@ Actions :func:`policy.FORWARD`, :func:`policy.TLS_FORWARD` and :func:`policy.STU
 .. function:: FORWARD(ip_address)
               FORWARD({ ip_address, [ip_address, ...] })
 
-   Forward cache-miss queries to specified IP addresses via DNS-over-UDP, DNSSEC validate received answers and cache them. Target IP addresses are expected to be DNS resolvers.
+   Forward cache-miss queries to specified IP addresses (without encryption), DNSSEC validate received answers and cache them. Target IP addresses are expected to be DNS resolvers.
 
    .. code-block:: lua
 
@@ -320,7 +320,7 @@ Actions :func:`policy.FORWARD`, :func:`policy.TLS_FORWARD` and :func:`policy.STU
    Similar to :func:`policy.FORWARD` but *without* attempting DNSSEC validation.
    Each request may be either answered from cache or simply sent to one of the IPs with proxying back the answer.
 
-   This mode supports only DNS-over-UDP and should be used only for `Replacing part of the DNS tree`_.
+   This mode does not support encryption and should be used only for `Replacing part of the DNS tree`_.
    Use :func:`policy.FORWARD` mode if possible.
 
    .. code-block:: lua