reverse_dns_lookup
Find hostnames associated with IP addresses using reverse DNS lookup. Supports batch processing of multiple IPs in a single query and returns all known hostnames for each address.
Instructions
Perform reverse DNS lookups to find hostnames associated with IP addresses. Supports batch lookups of multiple IP addresses in a single query. Returns all known hostnames for each IP address, with clear indication when no hostnames are found.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ips | Yes | List of IP addresses to perform reverse DNS lookup on. |
Input Schema (JSON Schema)
{
"properties": {
"ips": {
"description": "List of IP addresses to perform reverse DNS lookup on.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"ips"
],
"type": "object"
}