blob: 1abc978030e8e62359fea6305e3503f83cbfe8a3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# any
## Name
*any* - give a minimal response to ANY queries.
## Description
*any* basically blocks ANY queries by responding to them with a short HINFO reply. See [RFC
8482](https://tools.ietf.org/html/rfc8482) for details.
## Syntax
~~~ txt
any
~~~
## Examples
~~~ corefile
example.org {
whoami
any
}
~~~
A `dig +nocmd ANY example.org +noall +answer` now returns:
~~~ txt
example.org. 8482 IN HINFO "ANY obsoleted" "See RFC 8482"
~~~
## Also See
[RFC 8482](https://tools.ietf.org/html/rfc8482).
|