Install
openclaw skills install dns-lookupResolve hostnames to IP addresses using `dig` from bind-utils.
openclaw skills install dns-lookupResolve hostnames to IP addresses using dig. Provided by the bind-utils package.
Resolve A records for a hostname:
dig example.com A +short
Resolve AAAA records:
dig example.com AAAA +short
Get the full DNS response with authority and additional sections:
dig example.com ANY
Find the hostname for an IP address:
dig -x 93.184.216.34 +short
sudo dnf install bind-utils