In computing, <code>netstat</code> is a command-line network utility that displays open network sockets, routing tables, and a number of network interface (network interface controller or software-defined network interface) and network protocol statistics. It is available on Unix, Plan 9, Inferno, and Unix-like operating systems including macOS, Linux, Solaris and BSD. It is also available on IBM OS/2 and on Microsoft Windows NT-based operating systems including Windows XP, Windows Vista, Windows 7, Windows 8 and Windows 10.
It is used for finding problems in the network and to determine the amount of traffic on the network as a performance measurement. On Linux this program is mostly obsolete, although still included in many distributions.
On Linux, <code>netstat</code> (part of "net-tools") is superseded by <code>ss</code> (part of iproute2). The replacement for <code>netstat -r</code> is <code>ip route</code>, the replacement for <code>netstat -i</code> is <code>ip -s link</code>, and the replacement for <code>netstat -g</code> is <code>ip maddr</code>, all of which are recommended instead.
Netstat provides statistics for the following:
Parameters used with this command must be prefixed with a hyphen () rather than a slash (). Some parameters are not supported on all platforms.
On macOS, BSD systems, Linux distributions, and Microsoft Windows:
To display the statistics for only the TCP or UDP protocols, type one of the following commands:
<blockquote><code>netstat -sp tcp</code></blockquote>
<blockquote><code>netstat -sp udp</code></blockquote>
On Unix-like systems:
To display all ports open by a process with id pid:
<blockquote><code>netstat -aop | grep "pid"</code></blockquote>
To continuously display open TCP and UDP connections numerically and also which program is using them on Linux: <blockquote><code>netstat -nutpacw</code></blockquote>
On Microsoft Windows:
To display active TCP connections and the process IDs every 5 seconds, type the following command (works on NT based systems only, or Windows 2000 with hotfix):
<blockquote><code>netstat -o 5</code></blockquote>
To display active TCP connections and the process IDs using numerical form, type the following command (works on NT based systems only, or Windows 2000 with hotfix):
<blockquote><code>netstat -no</code></blockquote>
Netstat uses an asterisk * as a wildcard which means "any". An example would be
Example output:
Under "Local Address" *, in <code>*:smtp</code>, means the process is listening on all of the network interfaces the machine has for the port mapped as smtp (see /etc/services for service resolution). This can also be shown as 0.0.0.0. The first *, in <code>*:*</code>, means connections can come from any IP address, and the second *, in <code>*:*</code>, means the connection can originate from any port on the remote machine.
Some versions of <code>netstat</code> lack explicit field delimiters in their printf-generated output, leading to numeric fields running together and thus corrupting the output data.
Under Linux, raw data can often be obtained from the /proc/net/dev to work around the printf output corruption arising in netstat's network interface statistics summary, <code>netstat -i</code>, until such time as the problem is corrected.
On the Windows platform, netstat information can be retrieved by calling the GetTcpTable and GetUdpTable functions in the IP Helper API, or IPHLPAPI.DLL. Information returned includes local and remote IP addresses, local and remote ports, and (for GetTcpTable) TCP status codes. In addition to the command-line netstat.exe tool that ships with Windows, GUI-based netstat programs are available.
On the Windows platform, this command is available only if the Internet Protocol (TCP/IP) protocol is installed as a component in the properties of a network adapter in Network Connections.
On the Windows platform running Remote Desktop Services (formerly Terminal Services) it will only show connections for the current user, not for the whole computer.
On macOS, the /System/Library/CoreServices/Applications folder (or /Applications/Utilities in OS X Mountain Lion and earlier) contains a network GUI utility called Network Utility, the Netstat tab of which runs the netstat command and displays its output in the tab.