Skip to content

Instantly share code, notes, and snippets.

@rgarth
Created June 13, 2018 08:50
Show Gist options
  • Save rgarth/ae388b57ef880df23847bb2fde327355 to your computer and use it in GitHub Desktop.
Save rgarth/ae388b57ef880df23847bb2fde327355 to your computer and use it in GitHub Desktop.
List ip address connect ordered by largest number of connections
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