script to know active tcp connections

Simple shell script to know how much active tcp connections are using your server's service ( usefull in case to know about web or ftp server or other network servers concurrent connections )

netstat -an | grep ESTABLISHED | awk '{print $5}' | awk -F: '{print $1}' | sort | uniq -c | awk '{ printf("%s\t%s\t",$2,$1) ; print "" }'

Comments

Popular posts from this blog

How to create bulk user from csv in openldap server

Running cockpit behind nginx reverse proxy with nginx ssl and cockpit non ssl

using libguestfs virt-customize tool to modify qcow2 image and reset root password.