Check for flood on Linux (from terminal)

Have you created a useful tool? or Do you want to get help building one? This is the right place!
Forum rules
READ NOW: L2j Forums Rules of Conduct
Post Reply
User avatar
regenx
Posts: 319
Joined: Sat Jul 17, 2010 6:55 am

Check for flood on Linux (from terminal)

Post by regenx »

Open your terminal (Ctrl+Alt+T), paste this

Code: Select all

netstat -ntu | awk '{print $5}' | cut -d: -f1 | sort | uniq -c | sort -n
and enter.
Post Reply