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