This is a simply command in Linux to check the no. of connection opened per IP.
/bin/netstat -ntu | awk ‘{print $5}’ | cut -d: -f1 | sort | uniq -c | sort -nr |more
This entry was posted on Thursday, February 28th, 2008 at 9:30 am and is filed under Linux Tutorial.You can follow any responses to this entry through the RSS 2.0 feed.You can leave a response, or trackback from your own site.