Linux查看某个端口的连接数

查看哪些IP连接本机

netstat -an

查看TCP连接数
  • 统计80端口连接数
netstat -nat | grep -i "80" | wc -l

  • 统计httpd协议连接数
ps -ef | grep httpd | wc -l

  • 统计已连接上的,状态为“established
netstat -anp | grep ESTABLISHED | wc -l

    推荐阅读