Ddos attack

ARUN Post in ATTACK, LOAD
0

Check which IP address is taking maximum connection using the command:
netstat -alpn | grep :80 | awk ‘{print $5}’ | cut -d: -f1 |sort |uniq -c

Check the IP address of the server having maximum connection using the command:
netstat -alpn | grep :80 | awk ‘{print $4}’ | cut -d: -f1 |sort |uniq -c

« Prev: :Next »

Leave a Reply

You must be logged in to post a comment.