]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
dnsdist: Document that the ACL also filters DoT and DoH queries 7748/head
authorRemi Gacogne <remi.gacogne@powerdns.com>
Wed, 24 Apr 2019 13:38:26 +0000 (15:38 +0200)
committerRemi Gacogne <remi.gacogne@powerdns.com>
Wed, 24 Apr 2019 13:38:51 +0000 (15:38 +0200)
pdns/dnsdistdist/docs/advanced/acl.rst
pdns/dnsdistdist/docs/reference/config.rst

index bce4197a0ddd8b6c9764a2ecebab1b7b74cc8411..4fd92a755a26c384c46c5e95c6b8baaf779d0b99 100644 (file)
@@ -16,6 +16,8 @@ To be a good internet citizen, dnsdist by default listens on the loopback addres
 - ``fc00::/7``
 - ``fe80::/10``
 
+The ACL applies to queries received over UDP, TCP, DNS over TLS and DNS over HTTPS.
+
 Further more, dnsdist only listens for queries on the local-loopback interface by default.
 
 Listening on different addresses
index b4f6cc919c2c140a9c87ec75a5bcc4d35d1f10a3..1bbf2431f145ea1acd4c4651f6353b7fd761b5ee 100644 (file)
@@ -292,19 +292,19 @@ Access Control Lists
 
 .. function:: addACL(netmask)
 
-  Add a netmask to the existing ACL controlling which clients can send UDP and TCP queries. See :ref:`ACL` for more information.
+  Add a netmask to the existing ACL controlling which clients can send UDP, TCP, DNS over TLS and DNS over HTTPS queries. See :ref:`ACL` for more information.
 
   :param str netmask: A CIDR netmask, e.g. ``"192.0.2.0/24"``. Without a subnetmask, only the specific address is allowed.
 
 .. function:: setACL(netmasks)
 
-  Remove the existing ACL and add the netmasks from the table of those allowed to send UDP and TCP queries. See :ref:`ACL` for more information.
+  Remove the existing ACL and add the netmasks from the table of those allowed to send UDP, TCP, DNS over TLS and DNS over HTTPS queries. See :ref:`ACL` for more information.
 
   :param {str} netmasks: A table of CIDR netmask, e.g. ``{"192.0.2.0/24", "2001:DB8:14::/56"}``. Without a subnetmask, only the specific address is allowed.
 
 .. function:: showACL()
 
-  Print a list of all netmasks allowed to send queries over UDP and TCP. See :ref:`ACL` for more information.
+  Print a list of all netmasks allowed to send queries over UDP, TCP, DNS over TLS and DNS over HTTPS. See :ref:`ACL` for more information.
 
 EDNS Client Subnet
 ~~~~~~~~~~~~~~~~~~