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

pihole-dns-setuppihole dns 设置

Agent Skill

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

总安装

220

周安装

9

GitHub Stars

1

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

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

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

SKILL.md

Pi-hole DNS Setup Skill

Configure Pi-hole local DNS records for local network resolution of temet.ai domains.

Quick Start

Run automated DNS setup from domains.toml:

cd /home/dawiddutoit/projects/network && ./scripts/manage-domains.sh apply

Or manually add a single DNS record:

# Get Pi IP
PI_IP=$(hostname -I | awk '{print $1}')

# Test DNS resolution
dig @localhost pihole.temet.ai +short

Table of Contents

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

- 3.1 Detect Pi IP Address - 3.2 Get Domains from Configuration - 3.3 Apply DNS Changes - 3.4 Verify DNS Resolution - 3.5 Router DNS Reminder

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

When to Use This Skill

Explicit Triggers:

  • "Set up Pi-hole DNS"
  • "Configure local DNS"
  • "Add DNS record for [domain]"
  • "Set up DNS entries"
  • "Make [service].temet.ai resolve locally"

Implicit Triggers:

  • After adding a new service to domains.toml
  • When local resolution fails for temet.ai domains
  • Setting up a fresh Pi-hole installation
  • Migrating services to new IP addresses

Debugging Triggers:

  • "DNS not resolving"
  • "Can't access [service].temet.ai on local network"
  • "dig returns wrong IP"
  • "Works remotely but not locally"

What This Skill Does

  1. Detects Pi IP - Auto-discovers the Raspberry Pi's local IP address
  2. Reads Configuration - Gets domain list from domains.toml
  3. Updates DNS - Configures Pi-hole with local DNS entries via docker-compose.yml
  4. Verifies Resolution - Tests DNS resolution works correctly
  5. Provides Guidance - Reminds about router DNS configuration

Instructions

3.1 Detect Pi IP Address

Get the Pi's local IP automatically:

hostname -I | awk '{print $1}'

Expected output: 192.168.68.135 (or similar)

Alternative methods if needed:

# From network interface
ip -4 addr show eth0 | grep -oP '(?<=inet\s)\d+(\.\d+){3}'

# From Pi-hole container environment
docker exec pihole printenv | grep PIHOLE_INTERFACE

3.2 Get Domains from Configuration

Read domains from domains.toml:

# List all configured services with DNS entries
./scripts/manage-domains.sh list

Or parse directly:

grep -E "^subdomain = |^dns_ip = " /home/dawiddutoit/projects/network/domains.toml

Current domains defined in domains.toml:

ServiceDomainDNS IP
Pi-holepihole.temet.ai192.168.68.135
Jaegerjaeger.temet.ai192.168.68.135
Langfuselangfuse.temet.ai192.168.68.135
Home Assistantha.temet.ai192.168.68.135
Code Servercode.temet.ai192.168.68.135
Sprinklersprinkler.temet.ai192.168.68.105
Webhookwebhook.temet.ai192.168.68.135
Roottemet.ai192.168.68.135

3.3 Apply DNS Changes

Automated Method (Recommended):

cd /home/dawiddutoit/projects/network && ./scripts/manage-domains.sh apply

This runs generate-pihole-dns.py which:

  1. Reads domains.toml
  2. Updates FTLCONF_dns_hosts in docker-compose.yml
  3. Restarts Pi-hole to apply changes

Manual DNS Entry (Single Domain):

If you need to add a single entry without full apply:

# Edit docker-compose.yml FTLCONF_dns_hosts section
# Then restart Pi-hole
docker compose -f /home/dawiddutoit/projects/network/docker-compose.yml restart pihole

How DNS Configuration Works:

Pi-hole v6 uses FTLCONF_dns_hosts environment variable for custom DNS:

environment:
  FTLCONF_dns_hosts: |
    192.168.68.135 pihole.temet.ai
    192.168.68.135 jaeger.temet.ai
    192.168.68.105 sprinkler.temet.ai

3.4 Verify DNS Resolution

After applying changes, verify DNS works:

Test individual domain:

dig @localhost pihole.temet.ai +short
# Expected: 192.168.68.135

Test all configured domains:

for domain in pihole jaeger langfuse ha code webhook; do
  echo -n "$domain.temet.ai -> "
  dig @localhost $domain.temet.ai +short
done

Test from another device on the network:

# Replace 192.168.68.135 with Pi's IP
dig @192.168.68.135 pihole.temet.ai +short

Check Pi-hole DNS logs:

docker exec pihole pihole -t
# Watch live DNS queries

3.5 Router DNS Reminder

Important: For DNS to work network-wide, configure your router:

  1. Set router's DHCP to use Pi-hole as primary DNS:

- Primary DNS: 192.168.68.135 (Pi's IP) - Secondary DNS: 1.1.1.1 (fallback)

  1. Or configure each device individually to use Pi-hole DNS

Verify device is using Pi-hole:

# On the device, check what DNS server it's using
cat /etc/resolv.conf
# Should show: nameserver 192.168.68.135

Supporting Files

FilePurpose
references/reference.mdDNS configuration deep-dive, Pi-hole internals, troubleshooting
examples/examples.mdCommon scenarios and configurations
scripts/verify-dns.shDNS verification script

Expected Outcomes

Success:

  • All domains resolve to correct IPs locally
  • dig @localhost domain.temet.ai returns expected IP
  • Services accessible at https://domain.temet.ai on local network

Partial Success:

  • DNS works from Pi but not from other devices
  • Cause: Router not configured to use Pi-hole as DNS

Failure Indicators:

  • dig returns NXDOMAIN -> DNS entry not configured
  • dig returns wrong IP -> Stale configuration
  • Pi-hole not responding -> Container not running

Requirements

Environment:

  • Pi-hole container running: docker ps | grep pihole
  • Docker Compose available
  • domains.toml configured

Tools needed:

  • Read (configuration files)
  • Bash (dig, docker commands)
  • Grep (parsing domains)

Red Flags to Avoid

  • Do not add DNS entries directly to Pi-hole web UI (use domains.toml)
  • Do not forget to restart Pi-hole after config changes
  • Do not skip the router DNS configuration reminder
  • Do not use 127.0.0.1 as DNS IP (use actual Pi IP)
  • Do not assume DNS propagates instantly (may take 1-2 minutes)
  • Do not forget IoT devices may need different IPs (sprinkler -> 192.168.68.105)

Notes

  • DNS entries are stored in docker-compose.yml FTLCONF_dns_hosts
  • The generate-pihole-dns.py script reads domains.toml and updates docker-compose.yml
  • Local DNS resolution allows fast LAN access without internet roundtrip
  • Remote access uses Cloudflare DNS (separate from Pi-hole)
  • Always verify DNS after changes with dig @localhost domain +short

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.3%
按下载量换算26

Claude

30.34%
按下载量换算22

Cursor

17.65%
按下载量换算13

Gemini CLI

9.67%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills