我用过以下
netstat -anp |grep 80 |wc -l@H_403_5@ 这回来了 2542@H_403_5@ 但是从我的谷歌分析中我知道同时用户不超过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 ?@H_403_5@
这回来了
2542@H_403_5@ 但是从我的谷歌分析中我知道同时用户不超过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 ?@H_403_5@
但是从我的谷歌分析中我知道同时用户不超过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 ?@H_403_5@
netstat -anp | grep :80 | grep ESTABLISHED | wc -l@H_403_5@ 另外,请注意不要在端口grep语句中使用冒号.只查找80可能会导致pids和其他端口错误地导致其输出中出现80个字符.
另外,请注意不要在端口grep语句中使用冒号.只查找80可能会导致pids和其他端口错误地导致其输出中出现80个字符.