logo
Free, Micro AI Code Reviews That Run on Git Commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt

Netstat - Display Network Connections | Online Free DevTools by Hexmos

Display network connections with Netstat, showing open ports and routing tables. Diagnose network issues and monitor traffic. Free online tool, no registration required.

netstat

Display network-related information such as open connections, open socket ports, etc. See also: lsof for listing network connections, including listening ports. More information: https://keith.github.io/xcode-man-pages/netstat.1.html.

  • Display the PID and program name listening on a specific protocol:

netstat -p {{protocol}}

  • Print the routing table and do not resolve IP addresses to hostnames:

netstat -nr

  • Print the routing table of IPv4 addresses:

netstat -nr -f inet

See Also