Coder's Cat

Basic Networking Tool: netstat

2020-03-10

file:img/CAPTURE-2020_03_09_basic-networking-tool-netstat.org_20200310_100143.png

netstat is a command-line networking tool, which can be used to show the statistics of networking connections. It’s a must tool for finding the performance problems in Unix/Linux networking.

In this post, I will list the typical usages and most used options of netstat.

List all the sockets

Use -a option to list all the sockets, including those in listen state and also not in listen state.

Use -l option to list the sockets in listen status.

netstat -a

file:img/2020_03_09_basic-networking-tool-netstat.org_20200310_100508.png

List only TCP sockets

Use -t option to list only the TCP sockets.

netstat -t
netstat -lt # list all TCP sockets in listen status

file:img/CAPTURE-2020_03_09_basic-networking-tool-netstat.org_20200310_095719.png

Use -p option to show the program name and pid with sockets.

netstat -ltp    # list all TCP sockets in listen status, with program name

file:img/2020_03_09_basic-networking-tool-netstat.org_20200310_104252.png

Suppose we want to find which process is binding a specific socket.

netstat -lnp | grep 1234

file:img/2020_03_09_basic-networking-tool-netstat.org_20200310_104442.png

Use pipeline for statistics of networking

With the pipeline, we could combine netstat with other command utilities, like awk, sort.

Let’s find all the counts for different networking status.

file:img/2020_03_09_basic-networking-tool-netstat.org_20200310_105712.png

Note:

awk '{print $6}' : use just the 6th column from output.

tail -n + 2 : remove the first line from output (since it’s header)

Join my Email List for more insights, It's Free!😋