From proxmox-manager
Check VM network configuration, connectivity to gateway and internet, DNS resolution, and listening ports.
npx claudepluginhub danielrosehill/proxmox-manager-pluginnetworking/Check network configuration and connectivity:
1. Network interfaces: `ip addr show`
2. Default gateway: `ip route show`
3. DNS configuration: `cat /etc/resolv.conf`
4. DNS resolution test: `nslookup google.com`
5. Internet connectivity: `ping -c 3 8.8.8.8 && ping -c 3 google.com`
6. Gateway reachability: `ping -c 3 $(ip route | grep default | awk '{print $3}')`
7. Listening ports: `ss -tulpn`
8. Network error counters: `ip -s link`
9. Cloudflare Tunnel status (if configured): `systemctl status cloudflared 2>/dev/null || docker ps | grep cloudflare`
Provide the user with:
- Network interfa...Check network configuration and connectivity:
ip addr showip route showcat /etc/resolv.confnslookup google.comping -c 3 8.8.8.8 && ping -c 3 google.comping -c 3 $(ip route | grep default | awk '{print $3}')ss -tulpnip -s linksystemctl status cloudflared 2>/dev/null || docker ps | grep cloudflareProvide the user with: