码迷,mamicode.com
首页 > 系统相关 > 详细

Linux服务器维护统计连接数查看外部IP

时间:2015-07-01 13:45:08      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:

 
 
 服务器上的一些统计数据:
 
  1)统计80端口连接数
 
  netstat -nat|grep -i "80"|wc -l
 
  1
 
  2)统计httpd协议连接数
 
  ps -ef|grep httpd|wc -l
 
  1
 
  3)、统计已连接上的,状态为“established‘
 
  netstat -na|grep ESTABLISHED|wc -l
 
  2
 
  4)、查出哪个IP地址连接最多,将其封了。
  
 netstat -na|grep ESTABLISHED|awk ‘{print $5}‘|awk -F: ‘{print $1}‘|sort|uniq -c|sort -r +0n
netstat -na|grep SYN|awk ‘{print $5}‘|awk -F: ‘{print $1}‘|sort|uniq -c|sort -r +0n
Linux服务器维护统计连接数查看外部IP
 
 服务器上的一些统计数据:
 
  1)统计80端口连接数
 
  netstat -nat|grep -i "80"|wc -l
 
  1
 
  2)统计httpd协议连接数
 
  ps -ef|grep httpd|wc -l
 
  1
 
  3)、统计已连接上的,状态为“established‘
 
  netstat -na|grep ESTABLISHED|wc -l
 
  2
 
  4)、查出哪个IP地址连接最多,将其封了。
  
 netstat -na|grep ESTABLISHED|awk ‘{print $5}‘|awk -F: ‘{print $1}‘|sort|uniq -c|sort -r +0n
netstat -na|grep SYN|awk ‘{print $5}‘|awk -F: ‘{print $1}‘|sort|uniq -c|sort -r +0n

Linux服务器维护统计连接数查看外部IP

标签:

原文地址:http://www.cnblogs.com/fenle/p/4612873.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!