mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-05 02:00:30 -07:00
NMAP Inventory Plugin: Added option for specifying DNS servers for name resolution (#9849)
* Added option for specifying DNS servers for name resolution in NMAP inventory plugin. * Added option for specifying DNS servers for name resolution in NMAP inventory plugin. * NMAP Inventory Plugin: Added option for specifying DNS servers for name resolution. * Update plugins/inventory/nmap.py Co-authored-by: Felix Fontein <felix@fontein.de> * NMAP Inventory Plugin: Added option for specifying DNS servers for name resolution. --------- Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
dd0a2cbff9
commit
add892aa45
2 changed files with 12 additions and 0 deletions
3
changelogs/fragments/9849-nmap_dns_servers.yml
Normal file
3
changelogs/fragments/9849-nmap_dns_servers.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
minor_changes:
|
||||
- nmap inventory plugin - adds ``dns_servers`` option for specifying DNS servers for name resolution. Accepts hostnames or IP addresses in the same format as the ``exclude`` option (https://github.com/ansible-collections/community.general/pull/9849).
|
|
@ -86,6 +86,11 @@ DOCUMENTATION = '''
|
|||
type: boolean
|
||||
default: false
|
||||
version_added: 6.1.0
|
||||
dns_servers:
|
||||
description: Specify which DNS servers to use for name resolution.
|
||||
type: list
|
||||
elements: string
|
||||
version_added: 10.5.0
|
||||
use_arp_ping:
|
||||
description: Whether to always (V(true)) use the quick ARP ping or (V(false)) a slower but more reliable method.
|
||||
type: boolean
|
||||
|
@ -231,6 +236,10 @@ class InventoryModule(BaseInventoryPlugin, Constructable, Cacheable):
|
|||
if self.get_option('dns_resolve'):
|
||||
cmd.append('-n')
|
||||
|
||||
if self.get_option('dns_servers'):
|
||||
cmd.append('--dns-servers')
|
||||
cmd.append(','.join(self.get_option('dns_servers')))
|
||||
|
||||
if self.get_option('udp_scan'):
|
||||
cmd.append('-sU')
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue