turbot/net

GitHub
steampipe plugin install netsteampipe plugin install net

Table: net_dns_reverse

Reverse DNS lookup from an IP address.

Note: An ip_address must be provided in all queries to this table.

Examples

Find host names for an IP address

select
*
from
net_dns_reverse
where
ip_address = '1.1.1.1';

.inspect net_dns_reverse

Reverse DNS lookup from an IP address.

NameTypeDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
domainsjsonbDomain names associated with the IP address.
ip_addressinetIP address to lookup.