Which Ips Running Tasks
From command line on server you see that there are 'x' tasks via 'top' command. You want to know who is running all those tasks and from which IP, so run this code:
CODE |
netstat -plan |grep :80 | awk '{print $5}' |cut -d: -f1 |sort |uniq -c |sort -n | tail -3 |