TKServer

Show and sort http connections

Show and sort http connections

Reference

Code to show current http connections in linux, sort them by IP and display from most connections to least. Very handy!

netstat -ntu | awk '{print $5}' | cut -d: -f1 | sort | uniq -c | sort -nr |more
Written by Administrator