Knowledgebase Articles Linux how to find the no of connections from an IP ilangovan ramasamy October 28, 2010 No Comments In, Linux Servers. Login as root and use the below command to find the no of connections from an IP Address. netstat -an | sort -k 4 | grep :80 | awk ‘{print $5}’ | sed -e s/’:.*’/”/g | sort | uniq -c | sort -k 1 -nr | head -n 20 Share this:WhatsAppTelegramTweetRedditEmailMorePocket