CentOS 8.x iproute2 basics

From Notes_Wiki
Revision as of 08:29, 27 February 2020 by Saurabh (talk | contribs) (Created page with "<yambe:breadcrumb self="iproute2 basics">CentOS 8.x Network configuration|Network configuration</yambe:breadcrumb> =CentOS 8.x iproute2 basics= ==See network connection infor...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

<yambe:breadcrumb self="iproute2 basics">CentOS 8.x Network configuration|Network configuration</yambe:breadcrumb>

CentOS 8.x iproute2 basics

See network connection information

To see list of network connections use:

ss -anp

where options mean

-a
All listening + established port details
-n
Do not resolve service names, hostnames, etc.
-p
Show owning process ID

For further filtering you can consider using:

-t
Show only tcp sockets
-u
Show only udp sockets
-x
Show only unix sockets
-4
Show only IPv4 information
-6
Show only IPv6 information
-l
Show only listening sockets


See no. of established connections per IP

To see no. of established connections per IP use:

ss -at | grep ESTAB | awk '{print $5}' | cut -d":" -f1 | sort | uniq -c | sort -n



Also see OpenSuse Leap 15 iproute2 basics


<yambe:breadcrumb self="iproute2 basics">CentOS 8.x Network configuration|Network configuration</yambe:breadcrumb>