Tuesday, May 6, 2014

How to check connected ip address to apache2

Run below command to check connected ip address:

netstat -ntu | awk '{print $5}' | cut -d: -f1 | sort | uniq -c | sort -nr >ip.txt

open ip.txt to check list


No comments:

Post a Comment