Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

pihole-dns-troubleshootpihole dns 故障排除

Agent Skill

pihole-dns-troubleshoot 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

275

周安装

11

GitHub Stars

1

下载量

89
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:pihole-dns-troubleshoot(pihole dns 故障排除)
来源仓库:https://github.com/dawiddutoit/custom-claude
仓库路径:skills/pihole-dns-troubleshoot
安装命令:
npx skills add https://github.com/dawiddutoit/custom-claude --skill pihole-dns-troubleshoot
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/dawiddutoit/custom-claude --skill pihole-dns-troubleshoot

简介

用于查找、检索和筛选相关信息,适合快速定位候选结果。

  • 适用于在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景进行信息检索。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • pihole-dns-troubleshoot 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Troubleshoot DNS Resolution Skill

Systematic diagnosis and resolution of DNS resolution issues in the Pi-hole DNS infrastructure.

Quick Start

Run quick diagnostic to identify DNS issues:

# Check DNS resolution
dig @192.168.68.136 pihole.temet.ai

# Check Pi-hole is running
docker ps | grep pihole

# Check DNS records configured
docker exec pihole nslookup pihole.temet.ai 127.0.0.1

Table of Contents

  1. When to Use This Skill
  2. What This Skill Does
  3. Instructions

- 3.1 Verify Pi-hole is Running - 3.2 Check Pi-hole DNS Configuration - 3.3 Test DNS Resolution from Pi-hole - 3.4 Verify Router DNS Settings - 3.5 Test DNS Resolution from Client - 3.6 Check FTLCONF DNS Records - 3.7 Apply Fix

  1. Supporting Files
  2. Expected Outcomes
  3. Requirements
  4. Red Flags to Avoid

When to Use This Skill

Explicit Triggers:

  • "DNS not working"
  • "Can't access pihole.temet.ai"
  • "Domain not resolving"
  • "Fix DNS resolution"
  • "Pi-hole DNS not working"

Implicit Triggers:

  • Services work via IP but not domain name
  • Browser shows "DNS_PROBE_FINISHED_NXDOMAIN"
  • Can access services remotely but not locally
  • Ping fails for local domains

Debugging Triggers:

  • "Why isn't my domain resolving?"
  • "Why can't I access local services?"
  • "Is Pi-hole working?"

What This Skill Does

  1. Verifies Pi-hole - Checks Pi-hole container is running
  2. Checks DNS Config - Verifies FTLCONF DNS records in docker-compose.yml
  3. Tests Pi-hole DNS - Queries Pi-hole directly for DNS records
  4. Checks Router - Verifies router is configured to use Pi-hole
  5. Tests Client DNS - Verifies client devices can resolve domains
  6. Identifies Issue - Determines root cause of DNS failure
  7. Provides Fix - Gives specific commands to resolve the issue

Instructions

3.1 Verify Pi-hole is Running

docker ps | grep pihole

Expected: Container status "Up" (not "Restarting" or "Exited")

If not running:

cd /home/dawiddutoit/projects/network && \
docker compose up -d pihole && \
docker logs pihole --tail 50

3.2 Check Pi-hole DNS Configuration

Verify FTLCONF_dns_hosts environment variable is set:

docker exec pihole env | grep FTLCONF_dns_hosts

Expected output should include:

FTLCONF_dns_hosts=192.168.68.136 pihole.temet.ai
192.168.68.136 ha.temet.ai
192.168.68.136 jaeger.temet.ai
...

If missing or incorrect: Edit docker-compose.yml to add/update FTLCONF_dns_hosts environment variable.

3.3 Test DNS Resolution from Pi-hole

Test that Pi-hole itself can resolve the domain:

# Test single domain
docker exec pihole nslookup pihole.temet.ai 127.0.0.1

# Test all configured domains
for domain in pihole ha jaeger langfuse sprinkler code webhook; do
  echo "=== Testing $domain.temet.ai ==="
  docker exec pihole nslookup $domain.temet.ai 127.0.0.1
  echo
done

Expected: Shows "Address: 192.168.68.136" for each domain

If "NXDOMAIN" or "can't find":

  • DNS records not configured in FTLCONF_dns_hosts
  • Pi-hole FTL hasn't loaded the configuration

Fix:

# Reload Pi-hole DNS
docker exec pihole pihole reloaddns

# Or restart Pi-hole
docker compose -f /home/dawiddutoit/projects/network/docker-compose.yml restart pihole

3.4 Verify Router DNS Settings

Check router is configured to use Pi-hole as DNS server:

Router should point to: 192.168.68.136 (Pi-hole IP)

How to verify:

  1. Log into router admin interface
  2. Check DHCP settings
  3. Verify DNS server is set to 192.168.68.136

Common router interfaces:

  • Eero: App → Settings → Network Settings → DNS
  • Unifi: Network → Settings → Networks → LAN → DHCP Name Server
  • Generic: Usually under LAN/DHCP settings

3.5 Test DNS Resolution from Client

From your computer or device:

# Check what DNS server you're using
scutil --dns | grep "nameserver\[0\]"

# Test resolution using system DNS
dig pihole.temet.ai

# Test resolution using Pi-hole directly
dig @192.168.68.136 pihole.temet.ai

Expected:

  • System DNS should show 192.168.68.136
  • Both dig commands should return 192.168.68.136 as answer

If using wrong DNS server:

  • Client may have cached old DNS settings
  • Router may not have updated DHCP lease
  • Client may have manual DNS override

Fix:

# Flush DNS cache (macOS)
sudo dscacheutil -flushcache && sudo killall -HUP mDNSResponder

# Renew DHCP lease (macOS)
sudo ipconfig set en0 DHCP

# Linux
sudo systemd-resolve --flush-caches

3.6 Check FTLCONF DNS Records

Verify DNS records are configured in docker-compose.yml:

grep -A20 "FTLCONF_dns_hosts" /home/dawiddutoit/projects/network/docker-compose.yml

Expected format:

FTLCONF_dns_hosts: |
  192.168.68.136 pihole.temet.ai
  192.168.68.136 ha.temet.ai
  192.168.68.136 jaeger.temet.ai
  192.168.68.136 langfuse.temet.ai
  192.168.68.136 sprinkler.temet.ai
  192.168.68.136 code.temet.ai
  192.168.68.136 webhook.temet.ai

If missing domains: Add them to FTLCONF_dns_hosts and restart Pi-hole.

3.7 Apply Fix

Fix A: Pi-hole Not Running

cd /home/dawiddutoit/projects/network && \
docker compose up -d pihole && \
docker logs pihole --tail 50

Fix B: DNS Records Not Configured

  1. Edit docker-compose.yml:
nano /home/dawiddutoit/projects/network/docker-compose.yml
  1. Add missing domains to FTLCONF_dns_hosts:
FTLCONF_dns_hosts: |
  192.168.68.136 newservice.temet.ai
  1. Restart Pi-hole:
docker compose -f /home/dawiddutoit/projects/network/docker-compose.yml up -d pihole

Fix C: Client Using Wrong DNS

  1. Check router DHCP settings point to 192.168.68.136
  2. Renew client DHCP lease
  3. Flush client DNS cache

Fix D: Pi-hole DNS Not Reloaded

# Reload DNS without restart
docker exec pihole pihole reloaddns

# Or full restart
docker compose -f /home/dawiddutoit/projects/network/docker-compose.yml restart pihole

Supporting Files

FilePurpose
references/reference.mdComplete DNS configuration reference, Pi-hole v6 FTL details
examples/examples.mdExample DNS configurations, common scenarios

Expected Outcomes

Success:

  • Pi-hole container running and healthy
  • DNS queries to Pi-hole return correct IP addresses
  • Client devices resolve domains correctly
  • All configured domains accessible via domain name

Partial Success:

  • Pi-hole resolves correctly but clients still using old DNS
  • Records configured but not yet propagated to clients

Failure Indicators:

  • Pi-hole container not running
  • FTLCONF_dns_hosts missing or incorrect
  • Router not configured to use Pi-hole
  • DNS resolution returns NXDOMAIN

Requirements

  • Docker running with Pi-hole container
  • Pi-hole v6+ using FTL DNS server
  • Network access to Pi-hole (192.168.68.136)
  • Router admin access to configure DHCP/DNS

Red Flags to Avoid

  • Do not use dnsmasq configuration files (Pi-hole v6 uses FTL with FTLCONF variables)
  • Do not add DNS records via Pi-hole web UI (use FTLCONF_dns_hosts instead)
  • Do not forget to restart Pi-hole after changing FTLCONF_dns_hosts
  • Do not configure DNS manually on clients (use router DHCP instead)
  • Do not skip flushing DNS cache on clients after DNS changes
  • Do not use -uall flag with Pi-hole DNS queries (causes memory issues)

Notes

  • Pi-hole v6 uses FTL DNS server, not dnsmasq directly
  • FTLCONF environment variables configure FTL's pihole.toml
  • DNS records added via web UI are not persistent (use FTLCONF_dns_hosts)
  • Router must push Pi-hole DNS to clients via DHCP
  • Client DNS cache can persist for hours (flush after changes)
  • Use domains.toml + manage-domains.sh for automated DNS record management

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.53%
按下载量换算31

Claude

30.53%
按下载量换算27

Cursor

17.78%
按下载量换算16

Gemini CLI

9.52%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills