]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
dnsdist docs: mention the default pool in a few places 10281/head
authorPeter van Dijk <peter.van.dijk@powerdns.com>
Fri, 9 Apr 2021 10:45:30 +0000 (12:45 +0200)
committerPeter van Dijk <peter.van.dijk@powerdns.com>
Fri, 9 Apr 2021 10:45:30 +0000 (12:45 +0200)
pdns/dnsdistdist/docs/guides/serverpools.rst
pdns/dnsdistdist/docs/reference/config.rst

index dd2c2962f3020f93a5751fec2a4f4a87e94b0e59..18790ed4f30a83d6b0af0647c3122f3a0d8705b2 100644 (file)
@@ -2,6 +2,7 @@ Server pools
 ------------
 
 dnsdist has the concept to "server pools", any number of servers can belong to a group.
+A default pool, identified by the empty string ``''`` is always present, and `newServer` without a pool argument will assign the new server to that pool.
 
 Let's say we know we're getting a whole bunch of traffic for a domain used in DoS attacks, for example 'example.com'.
 We can do two things with this kind of traffic.
index 2428de9306180da6f9cd382590b918e440837555..cbd8a06370e67e63572d838fbd1a827fb29ef0e3 100644 (file)
@@ -670,6 +670,7 @@ Pools
 
 :class:`Server`\ s can be part of any number of pools.
 Pools are automatically created when a server is added to a pool (with :func:`newServer`), or can be manually created with :func:`getPool`.
+Servers that are not assigned to a specific pool get assigned to the default pool that is always present, identified by the empty string ``''``.
 
 .. function:: getPool(name) -> ServerPool