Return to Snippet

Revision: 19626
at October 27, 2009 13:17 by tobewan


Initial Code
netstat -atun | awk '{print $5}' | cut -d: -f1 | sed -e '/^$/d' |sort | uniq -c | sort -n

Initial URL


Initial Description


Initial Title
Print out a list of open connections on your box and sorts them by according to IP address

Initial Tags
server

Initial Language
Bash