Help us improve
Share bugs, ideas, or general feedback.
From netshoot
Network troubleshooting using the nicolaka/netshoot container. Use when diagnosing Docker network connectivity, DNS resolution, HTTP endpoint reachability, TCP/UDP port checks, or any network issue within the container stack. Run via the bundled script at scripts/netshoot.
npx claudepluginhub cameri/claude-skills --plugin netshootHow this skill is triggered — by the user, by Claude, or both
Slash command
/netshoot:netshootThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
<objective>
Creates p5.js generative art with seeded randomness, noise fields, and interactive parameter exploration. Use for algorithmic art, flow fields, or particle systems.
Share bugs, ideas, or general feedback.
<quick_start>
# From /workspace/containers/
./scripts/netshoot curl http://forgejo:3000
./scripts/netshoot ping gatus
./scripts/netshoot nc -zv 10.0.6.2 5432
The script must be run from /workspace/containers/ so it can load .env via --env-file .env.
Target a specific network with NETSHOOT_NETWORK:
NETSHOOT_NETWORK=containers_gatus ./scripts/netshoot ping gatus
NETSHOOT_NETWORK=container:gatus ./scripts/netshoot ss -tuln
NETSHOOT_NETWORK=host ./scripts/netshoot ip route show
Default network: host
</quick_start>
<network_modes>
| Value | Meaning |
|---|---|
host (default) | Use host networking — can reach host services |
containers_gatus | Join the gatus Docker network — can reach containers on it |
containers_tsdproxy | Join the tsdproxy network |
containers_cloudflare | Join the cloudflare network |
container:<name> | Share network namespace with a running container |
| </network_modes> |
<tools_by_category>
| Category | Tools |
|---|---|
| Network | ping, fping, arping, traceroute, tracepath, mtr |
| DNS | dig, nslookup, drill, host |
| HTTP | curl, wget, httpie, ab (apache bench) |
| TCP/UDP | nc, socat, telnet, tcpdump, termshark, tshark, ss, netstat |
| Performance | iperf, iperf3, tcptraceroute, speedtest-cli, iftop, iptraf-ng |
| Security | nmap, nping, openssl, ngrep |
| Network Info | ip, ifconfig, route, arp, ethtool |
| Firewall | iptables, nftables, ipset |
| Protocol | grpcurl, websocat, swaks (SMTP) |
| Monitoring | ctop, bird, net-snmp-tools |
| System | nsenter, strace, ltrace |
| Packet Analysis | scapy, conntrack-tools |
| Utilities | jq, whois, dhcping, file, vim, git |
| </tools_by_category> |
<common_patterns> Check if HTTP service is reachable:
NETSHOOT_NETWORK=containers_gatus ./scripts/netshoot curl -f http://<container>:<port>
Test TCP port connectivity:
./scripts/netshoot nc -zv 10.0.6.2 5432 # PostgreSQL
./scripts/netshoot nc -zv 10.0.6.2 6379 # Redis
./scripts/netshoot nc -zv 10.0.6.2 27017 # MongoDB
DNS resolution:
NETSHOOT_NETWORK=containers_gatus ./scripts/netshoot nslookup immich-server
NETSHOOT_NETWORK=containers_gatus ./scripts/netshoot dig forgejo
Inspect container's open ports:
NETSHOOT_NETWORK=container:gatus ./scripts/netshoot ss -tuln
Packet capture:
NETSHOOT_NETWORK=containers_gatus ./scripts/netshoot tcpdump -i any -n port 80
Run a shell for interactive debugging:
NETSHOOT_NETWORK=containers_gatus ./scripts/netshoot sh
</common_patterns>
<success_criteria>