Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计通过

networknetwork 搜索

Agent Skill

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

总安装

70,211

周安装

2,955

GitHub Stars

8

下载量

24,586
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:network(network 搜索)
来源仓库:https://github.com/ivangdavila/network
安装命令:
openclaw skills install network
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install network

简介

network 用于查找、检索和筛选计算机网络相关知识,适合在 OpenClaw 中诊断 TCP/IP 和 DNS 问题。

  • 它提供路由配置和工具使用指导。
  • 使用方式包括输入网络拓扑或错误现象,由 Agent 返回排查步骤。
  • 安装命令为 openclaw skills install network,需确认命令行执行权限。
  • 建议核对操作系统兼容性,避免工具不可用。

SKILL.md

name
Network
description
Understand and troubleshoot computer networks with TCP/IP, DNS, routing, and diagnostic tools.
metadata
{"clawdbot":{"emoji":"🌐","os":["linux","darwin","win32"]}}

Network Fundamentals

TCP/IP Basics

  • TCP guarantees delivery with retransmission — use for reliability (HTTP, SSH, databases)
  • UDP is fire-and-forget — use for speed when loss is acceptable (video, gaming, DNS queries)
  • Port numbers: 0-1023 privileged (need root), 1024-65535 available — common services have well-known ports
  • Ephemeral ports for client connections — OS assigns randomly from high range

DNS

  • DNS resolution is cached at multiple levels — browser, OS, router, ISP — flush all when debugging
  • TTL determines cache duration — lower before migrations, raise after for performance
  • A record for IPv4, AAAA for IPv6, CNAME for aliases, MX for mail
  • CNAME cannot exist at zone apex (root domain) — use A record or provider-specific alias
  • dig and nslookup query DNS directly — bypass local cache for accurate results

IP Addressing

  • Private ranges: 10.x.x.x, 172.16-31.x.x, 192.168.x.x — not routable on internet
  • CIDR notation: /24 = 256 IPs, /16 = 65536 IPs — each bit halves or doubles the range
  • 127.0.0.1 is localhost — 0.0.0.0 means all interfaces, not a valid destination
  • NAT translates private to public IPs — most home/office networks use this
  • IPv6 eliminates NAT need — but dual-stack with IPv4 still common

Common Ports

  • 22: SSH — 80: HTTP — 443: HTTPS — 53: DNS
  • 25/465/587: SMTP (mail sending) — 143/993: IMAP — 110/995: POP3
  • 3306: MySQL — 5432: PostgreSQL — 6379: Redis — 27017: MongoDB
  • 3000/8080/8000: Common development servers

Troubleshooting Tools

  • ping tests reachability — but ICMP may be blocked, no response doesn't mean down
  • traceroute/tracert shows path — identifies where packets stop or slow down
  • netstat -tulpn or ss -tulpn shows listening ports — find what's using a port
  • curl -v shows full HTTP transaction — headers, timing, TLS negotiation
  • tcpdump and Wireshark capture packets — last resort for deep debugging

Firewalls and NAT

  • Stateful firewalls track connections — allow response to outbound requests automatically
  • Port forwarding maps external port to internal IP:port — required to expose services behind NAT
  • Hairpin NAT for internal access to external IP — not all routers support it
  • UPnP auto-configures port forwarding — convenient but security risk, disable on servers

Load Balancing

  • Round-robin distributes sequentially — simple but ignores server capacity
  • Least connections sends to least busy — better for varying request durations
  • Health checks remove dead servers — configure appropriate intervals and thresholds
  • Sticky sessions (affinity) keep user on same server — needed for stateful apps, breaks scaling

VPNs and Tunnels

  • VPN encrypts traffic to exit point — all traffic appears from VPN server IP
  • Split tunneling sends only some traffic through VPN — reduces latency for local resources
  • WireGuard is modern and fast — simpler than OpenVPN, better performance
  • SSH tunnels for ad-hoc port forwarding — ssh -L local:remote:port creates secure tunnel

SSL/TLS

  • TLS 1.2 minimum, prefer 1.3 — older versions have known vulnerabilities
  • Certificate chain: leaf → intermediate → root — missing intermediate causes validation failures
  • SNI allows multiple certs on one IP — older clients without SNI get default cert
  • Let's Encrypt certs expire in 90 days — automate renewal or face outages

Common Mistakes

  • Assuming DNS changes are instant — TTL means old records persist in caches
  • Blocking ICMP entirely — breaks path MTU discovery, causes mysterious failures
  • Forgetting IPv6 — services may be accessible on IPv6 even with IPv4 firewall
  • Hardcoding IPs instead of hostnames — breaks when IPs change
  • Not checking both TCP and UDP — some services need UDP (DNS, VPN, game servers)
  • Confusing latency and bandwidth — high bandwidth doesn't mean low latency

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

93.98%
按下载量换算23,106

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills