check total connection to our server
Posted by cikul | Posted in Linux | Posted on 25-05-2008-05-2008
0
To check total connection to our server, we can use command :
root@server [~]# netstat -ntu | awk '{print $5}' | cut -d: -f1 | sort | uniq -c | sort -n
That command useful if you want to check any DDOS attack to your server. Read the rest of this entry »
