命令类似于netstat -np,但按状态和PID分组?


9

有没有类似于状态PIDnetstat -np分组的命令?

我想知道按程序分组的特定状态下的服务器连接的当前计数。

相似,

102 squid ESTABLISHED
32 httpd ESTABLISHED

我使用RHEL5。

Answers:


11

您可以sort用来重组netstat您喜欢的任何格式的输出。

$ netstat -anpt 2>&1 | tail -n +5 | sort -k7,7 -k 6,6

这将首先使用第7列(进程名称/ PID)对输出进行排序,然后使用状态(ESTABLISHED,LISTEN等)进行排序。

注意:该命令的第一部分netstat -anpt 2>&1 | tail -n +5 ..还将所有在STDOUT上可能发生的输出也定向到STDIN,然后截断前5行,这些行是netstat我们不感兴趣的样板输出。

$ netstat -anpt 2>&1 | tail -n +5 | sort -k7,7 -k 6,6
tcp        0      0 192.168.1.20:49309      192.168.1.103:631       ESTABLISHED 2077/gnome-settings 
tcp        0      0 192.168.1.20:38393      204.62.14.135:443       ESTABLISHED 2260/mono           
tcp        0      0 192.168.1.20:39738      74.125.192.125:5222     ESTABLISHED 2264/pidgin         
tcp        0      0 192.168.1.20:40097      87.117.201.130:6667     ESTABLISHED 2264/pidgin         
tcp        0      0 192.168.1.20:53920      217.168.150.38:6667     ESTABLISHED 2264/pidgin         
...
tcp        1      0 192.168.1.20:50135      190.93.247.58:80        CLOSE_WAIT  24714/google-chrome 
tcp        1      0 192.168.1.20:44420      192.168.1.103:631       CLOSE_WAIT  24714/google-chrome 
tcp        0      0 192.168.1.20:36892      74.125.201.188:5228     ESTABLISHED 24714/google-chrome 
tcp        0      0 192.168.1.20:43778      74.125.192.125:5222     ESTABLISHED 24714/google-chrome 
tcp        0      0 192.168.1.20:33749      198.252.206.140:80      ESTABLISHED 24714/google-chrome 
...

您可以使用类似的方法通过各种工具(例如wc或)获取计数uniq -c

改变输出

如果您真的想获得如下所示的输出netstat

102 squid ESTABLISHED
32 httpd ESTABLISHED

您可以使用awk&进行进一步的切片和切块sed。可以使它更紧凑,但应该可以帮助您开始工作。

$ netstat -anpt 2>&1 | tail -n +5 | awk '{print $7,$6}' | sort -k1,1 -k3,3 \
    | sed 's#/# #' | column -t
2264   pidgin          ESTABLISHED
2264   pidgin          ESTABLISHED
24714  google-chrome   CLOSE_WAIT
24714  google-chrome   CLOSE_WAIT
24714  google-chrome   ESTABLISHED
24714  google-chrome   ESTABLISHED
...
24714  google-chrome   ESTABLISHED
26358  ssh             ESTABLISHED
26358  ssh             ESTABLISHED
26358  ssh             ESTABLISHED
26358  ssh             LISTEN
26358  ssh             LISTEN
26358  ssh             LISTEN

注意: column -t只需将所有输出对齐到漂亮的列即可。

计数连接

最后,根据出现的次数做您想要的事情:

$ netstat -anpt 2>&1 | tail -n +5 | awk '{print $7,$6}' | sort -k1,1 -k3,3 \
    | sed 's#/# #' | column -t | uniq -c
  6 -      LISTEN
  8 -      TIME_WAIT
  1 2077   gnome-settings  ESTABLISHED
  1 2260   mono            ESTABLISHED
 10 2264   pidgin          ESTABLISHED
  2 24714  google-chrome   CLOSE_WAIT
 27 24714  google-chrome   ESTABLISHED
  3 26358  ssh             ESTABLISHED
  4 26358  ssh             LISTEN
  1 26359  ssh             ESTABLISHED
  4 3042   thunderbird     ESTABLISHED
  1 32472  monodevelop     ESTABLISHED
  2 32472  monodevelop     LISTEN
  1 32533  mono            ESTABLISHED
  1 32533  mono            LISTEN
  1 3284   monodevelop     LISTEN
  1 3365   mono            LISTEN
  1 4528   mono            LISTEN
  1 8416   dropbox         ESTABLISHED
  1 8416   dropbox         LISTEN

第一列代表计数。


谢谢你这么详细的回答-我会投票的时候我有15个代表处
金吾

5

来自维基百科

在Linux上,netstat(“ net-tools”的一部分)已被弃用ss(iproute2的一部分)应改为使用。

网络工具包还没有看到超过十年一个Linux发行版。对于设计用于管理和监视不断发展的内核通信接口的程序套件,要花很长时间没有更新-尤其是当您谈论实际上运行互联网的内核时。

值得庆幸的是,有一个积极维护的iproute2软件包-包括该ss实用程序。

有了ss您,您可以做自己想要的事情:

ss -np state ESTABLISHED

来自man ss

#USAGE EXAMPLES
   ss -t -a
#          Display all TCP sockets.
#
   ss -t -a -Z
#          Display all TCP sockets with process SELinux
#          security contexts.
#
   ss -u -a
#          Display all UDP sockets.
#
   ss -o state established '( dport = :ssh or sport  =   :ssh )'
#          Display all established ssh connections.
#
   ss -x src /tmp/.X11-unix/*
#          Find  all  local  processes  connected  to X server.
#
   ss -o state fin-wait-1 '( sport = :http or sport  = :https )' dst 193.233.7/24
#          List all the tcp sockets in state FIN-WAIT-1
#          for our apache to network  193.233.7/24  and
#          look at their timers.

0

您可以使用netstat,column和awk:

netstat -anpt | column -t | awk '{print $1,$6,$7}'

这将打印第一,第六和第七列。

tcp LISTEN -
tcp LISTEN -
tcp ESTABLISHED 2084/firefox
tcp ESTABLISHED 2084/firefox
tcp6 LISTEN -
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.