Skip to content

Instantly share code, notes, and snippets.

@emileswarts
Created March 26, 2013 12:11
Show Gist options
  • Save emileswarts/5244928 to your computer and use it in GitHub Desktop.
Save emileswarts/5244928 to your computer and use it in GitHub Desktop.
Check ips on server
netstat -tn 2>/dev/null | grep :80 | awk '{print $5}' | cut -d: -f1 | sort | uniq -c | sort -nr | head
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment