Sunday, 9 February 2014

Find the number of  HTTP connections to the server


netstat -plane | grep :80 | awk {'print$5'} | cut -f1 -d ':' | sort | uniq -c | sort -n




No comments:

Post a Comment