Diagnose connectivity traceroute mtr tcpdump analysis
Scanned 9/10/2026
Install to Claude Code
npx -y skills add LoopyLuci/Skills --skill network-diagnostics --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Network Diagnostics?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/loopyluci-network-diagnostics)More formats (shields.io, HTML) on the badges page.
---
name: network-diagnostics
description: "Diagnose connectivity traceroute mtr tcpdump analysis"
---
# Network Diagnostics
## Quick Checks
```bash
# Connectivity
ping -c 4 google.com
# Path tracing
traceroute google.com
mtr google.com
# Port check
nc -zv host 80
```
## DNS
```bash
nslookup example.com
dig example.com
dig -x 8.8.8.8 # Reverse lookup
```
## HTTP Debugging
```bash
curl -v https://example.com
curl -o /dev/null -w "Connect: %{time_connect}s, Total: %{time_total}s" https://example.com
```
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!