I have a webserver, i need to check number of connections in my server at that given time,
i used following
netstat -anp |grep 80 |wc -l
this returned with
2542
but from my google analytics's i know that simultaneous users is not more than 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 ?