Resolve hostnames to IP addresses using `dig` from bind-utils.
Scanned 9/7/2026
Install to Claude Code
npx -y skills add modbender/skill-library-mcp --skill dns-lookup --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Dns Lookup?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/modbender-dns-lookup)More formats (shields.io, HTML) on the badges page.
---
name: dns-lookup
description: "Resolve hostnames to IP addresses using `dig` from bind-utils."
metadata:
{
"openclaw":
{
"emoji": "🌐",
"requires": { "bins": ["dig"] },
"install":
[
{
"id": "dnf",
"kind": "dnf",
"package": "bind-utils",
"bins": ["dig"],
"label": "Install bind-utils (dnf)",
},
],
},
}
---
# 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
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Playbook for creating and editing uCoz landing pages via MCP tools (`templates_tool`, `ftp_tool`, `modules_tool`). Use for tasks such as: "build a landing page", "update the homepage as a landing page", "create a promo page on the homepage", "add a lead form / menu / SEO to the homepage". Homepage: `page_list`, `page_get`; first publish — `page_update` with full `page_tmpl`; HTML edits after generation — `patch_template` (module_id=2, template_id=1), not `update_template`. Activate the mail f...