Number of Connections by IP


/ Published in: Bash
Save to your folder(s)

Returns a list of the number of connections by IP.


Copy this code and paste it in your HTML
  1. # netstat -an | grep :80 | awk '{print $5}' | cut -f1 -d":" | sort | uniq -c | sort -n

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.