Skip to content

Instantly share code, notes, and snippets.

@davidsalazar
Created February 15, 2016 12:27
Show Gist options
  • Save davidsalazar/88ea9b403a70ebf084ce to your computer and use it in GitHub Desktop.
Save davidsalazar/88ea9b403a70ebf084ce to your computer and use it in GitHub Desktop.
sort by ipv6 and ipv4
netstat -ntu | awk ' $5 ~ /^(::ffff:|[0-9|])/ { gsub("::ffff:","",$5); print $5}' | cut -d: -f1 | sort | uniq -c | sort -nr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment