Agent skill

dns-lookup

Resolve hostnames to IP addresses using `dig` from bind-utils.

Stars 163
Forks 31

Install this agent skill to your Project

npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/dns-lookup

Metadata

Additional technical details for this skill

openclaw
{
    "emoji": "\ud83c\udf10",
    "install": [
        {
            "id": "dnf",
            "bins": [
                "dig"
            ],
            "kind": "dnf",
            "label": "Install bind-utils (dnf)",
            "package": "bind-utils"
        }
    ],
    "requires": {
        "bins": [
            "dig"
        ]
    }
}

SKILL.md

DNS Lookup Skill

Resolve hostnames to IP addresses using dig. Provided by the bind-utils package.

Basic Lookup

Resolve A records for a hostname:

bash
dig example.com A +short

IPv6 Lookup

Resolve AAAA records:

bash
dig example.com AAAA +short

Full DNS Record

Get the full DNS response with authority and additional sections:

bash
dig example.com ANY

Reverse Lookup

Find the hostname for an IP address:

bash
dig -x 93.184.216.34 +short

Install

bash
sudo dnf install bind-utils

Expand your agent's capabilities with these related and highly-rated skills.

Didn't find tool you were looking for?

Be as detailed as possible for better results