mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
Expand blackhole description
Clarify the behavior of negated addresses within the `blackhole`
statement to prevent common configuration misunderstandings.
(cherry picked from commit 2b23c7011e)
This commit is contained in:
parent
2439e306a5
commit
22aa753e8c
1 changed files with 12 additions and 0 deletions
|
|
@ -3066,6 +3066,18 @@ for details on how to specify IP address lists.
|
|||
from or or cannot use to resolve a query. Queries from these addresses are not
|
||||
responded to. The default is ``none``.
|
||||
|
||||
When configuring this list, note that BIND evaluates Access Control Lists
|
||||
sequentially (first match wins). A common misconception is that the directive
|
||||
``!address;`` blocks everything except that address. In reality, it only
|
||||
explicitly exempts ``address`` from the blackhole; all other IP addresses
|
||||
reach the end of the list without matching, meaning they are also not
|
||||
blackholed.
|
||||
|
||||
To successfully blackhole all traffic *except* specific addresses, you must
|
||||
explicitly catch the remaining traffic with ``any;`` at the end of the list.
|
||||
For example: ``!address; any;``
|
||||
|
||||
|
||||
.. namedconf:statement:: no-case-compress
|
||||
:tags: server
|
||||
:short: Specifies a list of addresses that require case-insensitive compression in responses.
|
||||
|
|
|
|||
Loading…
Reference in a new issue