blob: 25e4ecf4aa56c44698a3ce47b2256dcf0eb16e92 (
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* - gives 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"
~~~
## See Also
[RFC 8482](https://tools.ietf.org/html/rfc8482).
|