/ Published in: Bash
Returns a list of the number of connections by IP.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
# netstat -an | grep :80 | awk '{print $5}' | cut -f1 -d":" | sort | uniq -c | sort -n