ss 是 Socket Statistics 的缩写。顾名思义,ss 命令可以用来获取 Socket 统计信息,它可以显示和 netstat 类似的内容。但 ss 的优势在与它能够显示更多更详细的有关 TCP 和连接状态的信息,而且比 netstat 更快速更高效。
当服务器的 socket 连接数量变得非常大时,无论是使用 netstat 命令还是直接 cat /proc/net/tcp
,执行速度都会很慢。可能你不会有切身的感受,但请相信我,当服务器维持的连接达到上万个的时候,使用 netstat 等于浪费 生命,而用 ss 才是节省时间。
天下武功唯快不破。ss 快的秘诀在于,它利用到了 TCP 协议栈中 tcp_diag 。tcp_diag 是一个用于分析统计的模块,可以获得 Linux 内核中第一手的信息,这就确保了 ss 的快捷高效。当然,如果你的系统中没有 tcp_diag,ss 也可以正常运行,只是效率会变得稍慢。(但仍然比 netstat 要快。)
命令格式 -
命令功能 -
命令参数 -
-h, --help 帮助信息
-V, --version 程序版本信息
-n, --numeric 不解析服务名称
-r, --resolve 解析主机名
-a, --all 显示所有套接字(sockets)
-l, --listening 显示监听状态的套接字(sockets)
-o, --options 显示计时器信息
-e, --extended 显示详细的套接字(sockets)信息
-m, --memory 显示套接字(socket)的内存使用情况
-p, --processes 显示使用套接字(socket)的进程
-i, --info 显示 TCP内部信息
-s, --summary 显示套接字(socket)使用概况
-4, --ipv4 仅显示IPv4的套接字(sockets)
-6, --ipv6 仅显示IPv6的套接字(sockets)
-0, --packet 显示 PACKET 套接字(socket)
-t, --tcp 仅显示 TCP套接字(sockets)
-u, --udp 仅显示 UCP套接字(sockets)
-d, --dccp 仅显示 DCCP套接字(sockets)
-w, --raw 仅显示 RAW套接字(sockets)
-x, --unix 仅显示 Unix套接字(sockets)
-f, --family=FAMILY 显示 FAMILY类型的套接字(sockets),FAMILY可选,支持 unix, inet, inet6, link, netlink
-A, --query=QUERY, --socket=QUERY
QUERY := {all|inet|tcp|udp|raw|unix|packet|netlink}[,QUERY]
-D, --diag=FILE 将原始TCP套接字(sockets)信息转储到文件
-F, --filter=FILE 从文件中都去过滤器信息
FILTER := [ state TCP-STATE ] [ EXPRESSION ]
命令实例 -
实例一:显示TCP连接
命令
xxxxxxxxxx
11ss -t -a
输出
xxxxxxxxxx
71[root@localhost ~]# ss -t -a
2State Recv-Q Send-Q Local Address:Port Peer Address:Port
3LISTEN 0 0 127.0.0.1:smux *:*
4LISTEN 0 0 *:3690 *:*
5LISTEN 0 0 *:ssh *:*
6ESTAB 0 0 192.168.120.204:ssh 10.2.0.68:49368
7[root@localhost ~]#
实例二:显示Sockets摘要
命令
xxxxxxxxxx
11ss -s
输出
xxxxxxxxxx
131[root@localhost ~]# ss -s
2Total: 34 (kernel 48)
3TCP: 4 (estab 1, closed 0, orphaned 0, synrecv 0, timewait 0/0), ports 3
4
5Transport Total IP IPv6
6* 48 - -
7RAW 0 0 0
8UDP 5 5 0
9TCP 4 4 0
10INET 9 9 0
11FRAG 0 0 0
12
13[root@localhost ~]#
说明
列出当前的 established,closed,orphaned and waiting TCP sockets
实例三:列出所有打开的网络连接端口
命令
xxxxxxxxxx
11ss -l
输出
xxxxxxxxxx
61[root@localhost ~]# ss -l
2Recv-Q Send-Q Local Address:Port Peer Address:Port
3 0 127.0.0.1:smux *:*
4 0 *:3690 *:*
5 0 *:ssh *:*
6[root@localhost ~]#
实例四:查看进程使用的socket
命令
xxxxxxxxxx
11ss -pl
输出
xxxxxxxxxx
61[root@localhost ~]# ss -pl
2Recv-Q Send-Q Local Address:Port Peer Address:Port
3 0 127.0.0.1:smux *:* users:(("snmpd",2716,8))
4 0 *:3690 *:* users:(("svnserve",3590,3))
5 0 *:ssh *:* users:(("sshd",2735,3))
6[root@localhost ~]#
实例五:找出打开套接字/端口应用程序
命令
xxxxxxxxxx
11ss -lp | grep 3306
输出
xxxxxxxxxx
61[root@localhost ~]# ss -lp|grep 1935
2 0 *:1935 *:* users:(("fmsedge",2913,18))
3 0 127.0.0.1:19350 *:* users:(("fmsedge",2913,17))
4[root@localhost ~]# ss -lp|grep 3306
5 0 *:3306 *:* users:(("mysqld",2871,10))
6[root@localhost ~]#
实例六:显示所有UDP Sockets
命令
xxxxxxxxxx
11ss -u -a
输出
xxxxxxxxxx
61[root@localhost ~]# ss -u -a
2State Recv-Q Send-Q Local Address:Port Peer Address:Port
3UNCONN 0 0 127.0.0.1:syslog *:*
4UNCONN 0 0 *:snmp *:*
5ESTAB 0 0 192.168.120.203:39641 10.58.119.119:domain
6[root@localhost ~]#
实例七:显示所有状态为established的SMTP连接
命令
xxxxxxxxxx
11ss -o state established '(dport = :smtp or sport = :smtp)'
输出
xxxxxxxxxx
31[root@localhost ~]# ss -o state established '( dport = :smtp or sport = :smtp )'
2Recv-Q Send-Q Local Address:Port Peer Address:Port
3[root@localhost ~]#
实例八:显示所有状态为Established的HTTP连接
命令
xxxxxxxxxx
11ss -o state established '(dport = :http or sport = :http)'
输出
xxxxxxxxxx
41[root@localhost ~]# ss -o state established '( dport = :http or sport = :http )'
2Recv-Q Send-Q Local Address:Port Peer Address:Port
30 0 75.126.153.214:2164 192.168.10.42:http
4[root@localhost ~]#
实例九:列出处于 FIN-WAIT-1 状态的源端口为80或443,目标网络为 193.233.7/24 的所有tcp 套接字
命令
xxxxxxxxxx
11ss -o state fin-wait-1 '( sport = :http or sport = :https )' dst 193.233.7/24
输出
实例十:用TCP状态过滤Sockets
命令
xxxxxxxxxx
21ss -4 state FILTER-NAME-HERE
2ss -6 state FILTER-NAME-HERE
输出
xxxxxxxxxx
31[root@localhost ~]#ss -4 state closing
2Recv-Q Send-Q Local Address:Port Peer Address:Port
31 11094 75.126.153.214:http 192.168.10.42:4669
说明
FILTER-NAME-HERE 可以代表以下任何一个:
established
syn-sent
syn-recv
fin-wait-1
fin-wait-2
time-wait
closed
close-wait
last-ack
listen
closing
all : 所有以上状态
connected : 除了listen and closed的所有状态
synchronized :所有已连接的状态除了syn-sent
bucket : 显示状态为maintained as minisockets,如:time-wait和syn-recv.
big : 和bucket相反.
实例十一:匹配远程地址和端口号
命令
xxxxxxxxxx
51ss dst ADDRESS_PATTERN
2ss dst 192.168.1.5
3ss dst 192.168.119.113:http
4ss dst 192.168.119.113:smtp
5ss dst 192.168.119.113:443
输出
xxxxxxxxxx
161[root@localhost ~]# ss dst 192.168.119.113
2State Recv-Q Send-Q Local Address:Port Peer Address:Port
3ESTAB 0 0 192.168.119.103:16014 192.168.119.113:20229
4ESTAB 0 0 192.168.119.103:16014 192.168.119.113:61056
5ESTAB 0 0 192.168.119.103:16014 192.168.119.113:61623
6ESTAB 0 0 192.168.119.103:16014 192.168.119.113:60924
7ESTAB 0 0 192.168.119.103:16050 192.168.119.113:43701
8ESTAB 0 0 192.168.119.103:16073 192.168.119.113:32930
9ESTAB 0 0 192.168.119.103:16073 192.168.119.113:49318
10ESTAB 0 0 192.168.119.103:16014 192.168.119.113:3844
11[root@localhost ~]# ss dst 192.168.119.113:http
12State Recv-Q Send-Q Local Address:Port Peer Address:Port
13[root@localhost ~]# ss dst 192.168.119.113:3844
14State Recv-Q Send-Q Local Address:Port Peer Address:Port
15ESTAB 0 0 192.168.119.103:16014 192.168.119.113:3844
16[root@localhost ~]#
实例十二:匹配本地地址和端口号
命令
xxxxxxxxxx
61ss src ADDRESS_PATTERN
2ss src 192.168.119.103
3ss src 192.168.119.103:http
4ss src 192.168.119.103:80
5ss src 192.168.119.103:smtp
6ss src 192.168.119.103:25
输出
xxxxxxxxxx
181[root@localhost ~]# ss src 192.168.119.103:16021
2State Recv-Q Send-Q Local Address:Port Peer Address:Port
3ESTAB 0 0 192.168.119.103:16021 192.168.119.201:63054
4ESTAB 0 0 192.168.119.103:16021 192.168.119.201:62894
5ESTAB 0 0 192.168.119.103:16021 192.168.119.201:63055
6ESTAB 0 0 192.168.119.103:16021 192.168.119.201:2274
7ESTAB 0 0 192.168.119.103:16021 192.168.119.201:44784
8ESTAB 0 0 192.168.119.103:16021 192.168.119.201:7233
9ESTAB 0 0 192.168.119.103:16021 192.168.119.103:58660
10ESTAB 0 0 192.168.119.103:16021 192.168.119.201:44822
11ESTAB 0 0 192.168.119.103:16021 10.2.1.206:56737
12ESTAB 0 0 192.168.119.103:16021 10.2.1.206:57487
13ESTAB 0 0 192.168.119.103:16021 10.2.1.206:56736
14ESTAB 0 0 192.168.119.103:16021 10.2.1.206:64652
15ESTAB 0 0 192.168.119.103:16021 10.2.1.206:56586
16ESTAB 0 0 192.168.119.103:16021 10.2.1.206:64653
17ESTAB 0 0 192.168.119.103:16021 10.2.1.206:56587
18[root@localhost ~]#
实例十三:将本地或者远程端口和一个数比较
命令
xxxxxxxxxx
21ss dport OP PORT
2ss sport OP PORT
输出
xxxxxxxxxx
101[root@localhost ~]# ss sport = :http
2[root@localhost ~]# ss dport = :http
3[root@localhost ~]# ss dport \> :1024
4[root@localhost ~]# ss sport \> :1024
5[root@localhost ~]# ss sport \< :32000
6[root@localhost ~]# ss sport eq :22
7[root@localhost ~]# ss dport != :22
8[root@localhost ~]# ss state connected sport = :http
9[root@localhost ~]# ss \( sport = :http or sport = :https \)
10[root@localhost ~]# ss -o state fin-wait-1 \( sport = :http or sport = :https \) dst 192.168.1/24
说明
ss dport OP PORT 远程端口和一个数比较;ss sport OP PORT 本地端口和一个数比较。
OP 可以代表以下任意一个:
<= or le : 小于或等于端口号
>= or ge : 大于或等于端口号
== or eq : 等于端口号
!= or ne : 不等于端口号
< or gt : 小于端口号
> or lt : 大于端口号
实例十四:ss 和 netstat 效率比较
命令
xxxxxxxxxx
21time netstat -at
2time ss
输出
xxxxxxxxxx
101[root@localhost ~]# time ss
2real 0m0.739s
3user 0m0.019s
4sys 0m0.013s
5[root@localhost ~]#
6[root@localhost ~]# time netstat -at
7real 2m45.907s
8user 0m0.063s
9sys 0m0.067s
10[root@localhost ~]#
说明
用 time 命令分别获取通过 netstat 和 ss 命令获取程序和概要占用资源所使用的时间。在服务器连接数比较多的时候,netstat 的效率完全没法和 ss 比。