List ips connected to linux on port 80 Last updated on April 11, 2016 netstat -tn 2>/dev/null | grep :80 | awk '{print $5}' | cut -d: -f1 | sort | uniq -c | sort -nr | head