Page 1 of 1

Check for flood on Linux (from terminal)

Posted: Wed Aug 30, 2017 4:44 pm
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.