list the number and type of active network connections

list the number and type of active network connections


netstat -ant | awk '{print $NF}' | grep -v '[a-z]' | sort | uniq -c

Содержание