Note
This lookup plugin is part of the community.dns collection (version 3.3.0).
You might already have this collection installed if you are using the ansible package. It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.
To install it, use: ansible-galaxy collection install community.dns. You need further requirements to be able to use this lookup plugin, see Requirements for details.
To use it in a playbook, specify: community.dns.reverse_lookup.
New in community.dns 3.1.0
The below requirements are needed on the local controller node that executes this lookup.
Parameter | Comments |
|---|---|
Terms list / elements=string / required | IP address(es) to look up. |
This describes keyword parameters of the lookup. These are the values key1=value1, key2=value2 and so on in the following examples: lookup('community.dns.reverse_lookup', key1=value1, key2=value2, ...) and query('community.dns.reverse_lookup', key1=value1, key2=value2, ...)
Parameter | Comments |
|---|---|
query_retry integer | Number of retries for DNS query timeouts. Default: |
query_timeout float | Timeout per DNS query in seconds. Default: |
server list / elements=string | The DNS server(s) to use to look up the result. Must be a list of one or more IP addresses. By default, the system’s standard resolver is used. |
servfail_retries integer | How often to retry on SERVFAIL errors. Default: |
Note
lookup('community.dns.reverse_lookup', term1, term2, key1=value1, key2=value2) and query('community.dns.reverse_lookup', term1, term2, key1=value1, key2=value2)
lookup(), and the result is a one-element list, Ansible simply returns the one element not as a list. Since this behavior is surprising and can cause problems, it is better to use query() instead of lookup(). See the examples and also Forcing lookups to return lists in the Ansible documentation.- name: Look up hostname of IPv4 address
ansible.builtin.debug:
msg: "{{ query('community.dns.reverse_lookup', '192.168.1.1') }}"
- name: Look up hostname of IPv6 address
ansible.builtin.debug:
msg: "{{ query('community.dns.reverse_lookup', '1:2:3::4') }}"
Key | Description |
|---|---|
Return value list / elements=string | The hostname(s) returned for the queried IP addresses. If multiple IP addresses are queried in Returned: success Sample: |
© 2012–2018 Michael DeHaan
© 2018–2025 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/latest/collections/community/dns/reverse_lookup_lookup.html