我用过以下
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 ?
netstat -anp | grep :80 | grep ESTABLISHED | wc -l
另外,请注意不要在端口grep语句中使用冒号.只查找80可能会导致pids和其他端口错误地导致其输出中出现80个字符.