前端之家收集整理的这篇文章主要介绍了
linux – 检查端口80上的活动连接数?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个网络服务器,我需要在给定时间检查我的服务器中的连接数,
我用过以下
netstat -anp |grep 80 |wc -l
这回来了
2542
但是从我的谷歌分析中我知道同时用户不超过100.
is this correct ?
if not how to i get the active number of connections ?
is this sign of a victim of DOS attack how do i know that ?
尝试只计算ESTABLISHED连接:
netstat -anp | grep :80 | grep ESTABLISHED | wc -l
另外,请注意不要在端口grep语句中使用冒号.只查找80可能会导致pids和其他端口错误地导致其输出中出现80个字符.
原文链接:https://www.f2er.com/linux/402277.html