Connections on a port
netstat -tn 2>/dev/null | grep :80 | awk '{print $5}' | cut -d: -f1 | sort | uniq -c | sort -nr | head
netstat -anpe | grep "80" | grep "LISTEN"
Want to make this site better? Open a PR or help fund hosting costs
netstat -tn 2>/dev/null | grep :80 | awk '{print $5}' | cut -d: -f1 | sort | uniq -c | sort -nr | head
netstat -anpe | grep "80" | grep "LISTEN"