[ІТ Ідеї] connection count

Apr 20, 2010 00:22

nice command for counting connection:

netstat -anp |grep 'tcp\|udp' | awk '{print $5}' | cut -d: -f1 | sort | uniq -c | sort -n
Previous post Next post
Up