linux – 检查端口80上的活动连接数?

linux – 检查端口80上的活动连接数?,第1张

概述我有一个网络服务器,我需要在给定时间检查我的服务器中的连接数, 我用过以下 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 victi 我有一个网络服务器,我需要在给定时间检查我的服务器中的连接数,

我用过以下

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个字符.

总结

以上是内存溢出为你收集整理的linux – 检查端口80上的活动连接数?全部内容,希望文章能够帮你解决linux – 检查端口80上的活动连接数?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/1045209.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-24
下一篇 2022-05-24

发表评论

登录后才能评论

评论列表(0条)

保存