Checking Your Dedicated Server for a DDOS Attack

You can use the following commands on a Linux server to determine if your dedicated server is being DDOS attacked.

# netstat -anp |grep ‘tcp\|udp’ | awk ‘{print $5}’ | cut -d: -f1 | sort | uniq -c | sort –n

This command will show you the list of IP’s which have logged in is maximum number of connections to your server.

Read More