mirror of
https://github.com/coredns/coredns.git
synced 2025-10-28 08:44:17 -04:00
37 lines
519 B
Markdown
37 lines
519 B
Markdown
|
|
|
||
|
|
# 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).
|