统计80端口的连接数据 netstat -nat | grep -i "80" | wc -l 统计httpd协议连接数 ps -ef | grep httpd | wc -l 统计已连接的,状态为establish的 netstat -na | greo ESTABLISH | wc -l 查出那 ...
分类:
Web程序 时间:
2019-06-14 14:49:05
阅读次数:
119
#vimcount_tcpconn_status.sh名字和数组最好有一个区分如果要持续实时查看执行结果,可以使用watch命令
分类:
其他好文 时间:
2018-04-18 13:36:07
阅读次数:
117
统计80端口的连接数据 netstat -nat | grep -i "80" | wc -l 统计httpd协议连接数 ps -ef | grep httpd | wc -l 统计已连接的,状态为establish的 netstat -na | greo ESTABLISH | wc -l 查出那 ...
分类:
Web程序 时间:
2017-07-18 13:38:40
阅读次数:
232
统计80端口的连接数据netstat-nat|grep-i"80"|wc-l统计httpd协议连接数ps-ef|grephttpd|wc-l统计已连接的,状态为establish的netstat-na|greoESTABLISH|wc-l查出那个IP连接最多,并将其封掉netstat-na|grepESTABLISH|awk{print$5}|awk-F:{print$1}|sort|uniq-c|sort-r+On查看ap..
分类:
Web程序 时间:
2016-07-13 14:02:46
阅读次数:
2091