Skip to content

Instantly share code, notes, and snippets.

@sparkida
Created August 26, 2017 20:25
Show Gist options
  • Save sparkida/d679b2b2d12524e6a2d11fdf4726db2b to your computer and use it in GitHub Desktop.
Save sparkida/d679b2b2d12524e6a2d11fdf4726db2b to your computer and use it in GitHub Desktop.
netstat socket status
#!/usr/bin/env bash
netstat -nat | awk '{print $6}' | sort | uniq -c | sort -n
@sparkida
Copy link
Author

  1 Foreign
  3 LISTEN
368 TIME_WAIT

1607 FIN_WAIT2
3462 SYN_SENT
11842 ESTABLISHED

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment