用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/pluginagentmarketplace/custom-plugin-devops --skill networking-skill命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
DevOps scripting with Bash, Python, and Go for automation, tooling, and infrastructure management
CI/CD pipelines with Git, GitHub Actions, GitLab CI, Jenkins, and deployment strategies.
Cloud infrastructure with AWS, Azure, GCP - architecture, services, security, and cost optimization.
基于 SOC 职业分类
| name | networking-skill |
| description | Network protocols and troubleshooting - TCP/IP, DNS, HTTP/HTTPS, SSH, firewalls. |
| sasmp_version | 1.3.0 |
| bonded_agent | 02-networking-protocols |
| bond_type | PRIMARY_BOND |
| parameters | [{"name":"protocol","type":"string","required":false,"enum":["tcp","udp","http","https","dns","ssh","all"],"default":"all"},{"name":"operation","type":"string","required":true,"enum":["diagnose","configure","secure","monitor"]}] |
| retry_config | {"strategy":"exponential_backoff","initial_delay_ms":1000,"max_retries":3} |
| observability | {"logging":"structured","metrics":"enabled"} |
Master networking fundamentals for DevOps infrastructure management.
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
| protocol | string | No | all | Protocol focus |
| operation | string | Yes | - | Operation type |
# DNS
dig +trace example.com
dig @8.8.8.8 example.com
host -t MX example.com
# TCP/IP Diagnostics
ping -c 4 host
traceroute host
ss -tuln
ip addr show
# HTTP Testing
curl -I https://example.com
curl -v https://example.com
# SSL/TLS
openssl s_client -connect host:443
openssl x509 -in cert.pem -text -noout
# SSH
ssh-keygen -t ed25519
ssh-copy-id user@host
ssh -L 8080:localhost:80 user@host
ssh -D 1080 user@host
# Firewall (UFW)
ufw status verbose
ufw allow 22/tcp
ufw deny from 192.168.1.100
# Firewall (iptables)
iptables -L -n -v
iptables -A INPUT -p tcp --dport 22 -j ACCEPT
| Symptom | Root Cause | Solution |
|---|---|---|
| Connection refused | Service not running | Check ss -tuln |
| Connection timeout | Firewall/routing | Check firewall, traceroute |
| Name resolution failed | DNS issue | Check /etc/resolv.conf |
| Certificate error |
| Expired/invalid cert |
| Check dates, verify chain |
ip link showss -tulndig hostnameiptables -Lsshd -tiptables -L -n