Questions tagged [netstat]

netstat (network statistics) is a command-line tool that displays network connections (both incoming and outgoing), routing tables, and a number of network interface statistics. It is available on Unix, Unix-like, and Windows NT-based operating systems.

netstat

netstat (network statistics) is a command-line tool that displays network connections (both incoming and outgoing), routing tables, and a number of network interface statistics. It is available on Unix, Unix-like, and Windows NT-based operating systems. It is used for finding problems in the network and to determine the amount of traffic on the network as a performance measurement.

Parameters

Parameters used with this command must be prefixed with a hyphen (-) rather than a slash (/).

  • -a : Displays all active connections and the TCP and UDP ports on which the computer is listening.
  • -b : Displays the binary (executable) program's name involved in creating each connection or listening port. (Windows XP, 2003 Server and newer Windows operating systems (not Microsoft Windows 2000 or other non-Windows operating systems)) On Mac OS X when combined with -i, the total number of bytes of traffic will be reported.
  • -e : Displays ethernet statistics, such as the number of bytes and packets sent and received. This parameter can be combined with -s.
  • -f : Displays fully qualified domain names for foreign addresses (only available on Windows Vista and newer operating systems).
  • -g : Displays multicast group membership information for both IPv4 and IPv6 (may only be available on newer operating systems)
  • -i : Displays network interfaces and their statistics (not available under Windows)
  • -m : Displays the STREAMS statistics.
  • -n : Displays active TCP connections, however, addresses and port numbers are expressed numerically and no attempt is made to determine names.
  • -o : Displays active TCP connections and includes the process ID (PID) for each connection. You can find the application based on the PID on the Processes tab in Windows Task Manager. This parameter can be combined with -a, -n, and -p. This parameter is available on Microsoft Windows XP, 2003 Server (and Windows 2000 if a hotfix is applied).[2]
  • -p Windows and BSD: Protocol : Shows connections for the protocol specified by Protocol. In this case, the Protocol can be tcp, udp, tcpv6, or udpv6. If this parameter is used with -s to display statistics by protocol, Protocol can be tcp, udp, icmp, ip, tcpv6, udpv6, icmpv6, or ipv6.
  • -p Linux: Process : Show which processes are using which sockets (similar to -b under Windows) (you must be root to do this)
  • -P Solaris: Protocol : Shows connections for the protocol specified by Protocol. In this case, the Protocol can be ip, ipv6, icmp, icmpv6, igmp, udp, tcp, or rawip.
  • -r : Displays the contents of the IP routing table. (This is equivalent to the route print command under Windows.)
  • -s : Displays statistics by protocol. By default, statistics are shown for the TCP, UDP, ICMP, and IP protocols. If the IPv6 protocol for Windows XP is installed, statistics are shown for the TCP over IPv6, UDP over IPv6, ICMPv6, and IPv6 protocols. The -p parameter can be used to specify a set of protocols.
  • -t Linux: Displays only TCP connections.
  • -v : When used in conjunction with -b it will display the sequence of components involved in creating the connection or listening port for all executables.
  • Interval : Redisplays the selected information every Interval seconds. Press CTRL+C to stop the redisplay. If this parameter is omitted, netstat prints the selected information only once.
  • -h (unix) /? (windows): Displays help at the command prompt.

Statistics Provided

Netstat provides statistics for the following:

Protocol - The name of the protocol (TCP or UDP).

Local Address - The IP address of the local computer and the port number being used. The name of the local computer that corresponds to the IP address and the name of the port is shown unless the -n parameter is specified. If the port is not yet established, the port number is shown as an asterisk (*).

Foreign Address - The IP address and port number of the remote computer to which the socket is connected. The names that corresponds to the IP address and the port are shown unless the -n parameter is specified. If the port is not yet established, the port number is shown as an asterisk (*).

State - Indicates the state of a TCP connection. The possible states are as follows: CLOSE_WAIT, CLOSED, ESTABLISHED, FIN_WAIT_1, FIN_WAIT_2, LAST_ACK, LISTEN, SYN_RECEIVED, SYN_SEND, and TIME_WAIT. For more information about the states of a TCP connection, see RFC 793.

Examples

To display the statistics for only the TCP or UDP protocols, type one of the following commands:

netstat -sp tcp
netstat -sp udp

To display active TCP connections and the process IDs every 5 seconds, type the following command (On Microsoft Windows, works on XP and 2003 only, or Windows 2000 with hotfix):

netstat -o 5

Mac OS X version:

netstat -w 5

To display active TCP connections and the process IDs using numerical form, type the following command (On Microsoft Windows, works on XP and 2003 only, or Windows 2000 with hotfix):

netstat -no

To display all ports open by a process with id pid:

netstat -aop | grep "pid"

Platform specific remarks

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 Mac OS X 10.5, the above option "-o" is not available. With Mac OS X 10.5, the /Applications/Utilities folder contains a network utility called: Network Utility, see tab Netstat for these stats presented in a gui application, along with Ping, Lookup, Traceroute, Whois, Finger and Port Scan.

Wikipedia Entry for netstat

548 questions
-1
votes
1 answer

How to drop a LISTEN port in CentOS7? the port dose not seem to binding to any process

I would like to drop a port which is currently in state LISTEN. This is when I type netstat -anp | grep LISTEN | grep 8080. (Not all processes could be identified, non-owned process info will not be shown, you would have to be root to see it…
Juneyoung Oh
  • 7,318
  • 16
  • 73
  • 121
-1
votes
2 answers

Is there any way to find out how many http connections are open while browsing a web page

Like when I access yahoo email , I see yahoo downloads contents from various other servers , like ad.yieldmanager.com , img.yahoo.com ,etc ,when I am in a web page how do I find out all the http connections it has opened to load the web page ?
liveperson
  • 29
  • 1
  • 2
  • 3
-1
votes
1 answer

shell script to run netstat commands and email the results

I am researching how to set up a shell script to run Netstat commands on a UNIX server to scan for open ports. I want each command to run every 5 minutes over a 24 hour period and email me the findings. Is this possible ?
DavidMc
  • 19
  • 4
-1
votes
1 answer

netstat suspicious ssh sockets

When i run netstat -t on my server, I get the following among others: -sshd 14369 root 3u IPv4 1317773 0t0 TCP localhost:ssh->82.77.64.139:62334 (ESTABLISHED) -sshd 14494 root 3u IPv4 1319053 0t0 TCP…
catalin
  • 946
  • 6
  • 14
  • 31
-1
votes
1 answer

netstat/ss shows duplicated outgoing time_wait sockets

I encountered this behaviour many times in many servers which processed lots of network connections. # ss -nt state time-wait sport ne :80 and sport ne :10050 | sort -k3 0 0 127.0.0.1:13530 …
-1
votes
1 answer

Linux Command and Automated Action

I have a server that sometimes stop working, the only solution i found is to create a cron that execute this command: netstat -tn | grep -c :80 The following command will output the number of connections to the port 80. The problem is that i want…
-1
votes
1 answer

Netstat command output description

In my project i'm checking for the ports availability during server startup. When server is in stop state all ports are showing available(using netstat command-nothing is returning) except the postgres port(5432) on linux. Same port is showing…
Aditya
  • 115
  • 1
  • 9
-1
votes
2 answers

Netstat in Fedora doesn't list simple netcat server, Ubuntu does

I'm opening a simple TCP server with netcat: $ netcat -l -p 1234 Then I want to check if it's listed among the listening tcp connections by netstat: $ netstat -lt If I issue the previous commands on an Ubuntu system $ uname -v #65~14.04.1-Ubuntu…
swahnee
  • 2,661
  • 2
  • 24
  • 34
-1
votes
1 answer

Using netstat in Linux

I want to see statistics for each protocol (TCP/UDP) on my Linux Yocto. I try use netstat -s command (http://www.thegeekstuff.com/2010/03/netstat-command-examples/). But i receive error netstat:invalid option -- 's'. It is because BusyBox's netstat…
Shaci
  • 316
  • 1
  • 4
  • 18
-1
votes
1 answer

Netstat -an in Command Line

In the below picture, as you see When I write "netstat -an" inside the command line I got this answer in the picture. The last line is different than others. Sometimes, I query "netstat -an" command inside the command line. The first 4 characters…
Gürkan Çatak
  • 923
  • 1
  • 9
  • 17
-1
votes
1 answer

reading netstat of Ubuntu AWS EC2 instance

netstat: ubuntu@ip-172-31-60-232:/$ netstat Active Internet connections (w/o servers) Proto Recv-Q Send-Q Local Address Foreign Address State tcp 0 187 ip-172-31-60-232.:51044 unknown.prolexic.c:http ESTABLISHED tcp …
-1
votes
1 answer

read first line of netstat output?

I want to read only the first line of netstat, i.e. the line that explains what each column means: Proto Local Address Foreign Address State However, when I do the following: netstat | egrep -i "^\s*(tcp|udp)" | { read line echo 'Here…
makansij
  • 9,303
  • 37
  • 105
  • 183
-1
votes
1 answer

COM interface that lists all open ports in a machine

And provides the binding to processes. I know netstat does that, but I am interesting in COM so I can access this information remotely using DCOM, and set permissions effectively. Ideally, I would use WMI. I inspected (almost?) all the tables and…
user2679290
  • 144
  • 9
-1
votes
2 answers

Need batch for Netstat -anbo to run ever 30 minutes

Title description as stated. I'm very novice at this, so please go easy. I've searched articles here, and have tried several iterations of how to do this but my attempts have failed. I need to run Netstat -anbo every 30 minutes to a text file and…
user3656918
  • 3
  • 1
  • 3
-1
votes
1 answer

Determining a specific application's network transfer speed via command prompt?

My goal is to create a network activity light for a specific program. I'm a mechanical guy, so I can figure out the hardware and the logic, but I have no clue where to start with the coding. Ultimately this needs to run without user interaction, so…
1 2 3
36
37