Quantcast
Viewing latest article 1
Browse Latest Browse All 6

Concurrent connections to your machine

:~$ netstat -ntu | grep ESTABLISHED | awk '{ if ( NR > 2  ) { print } }' | awk '{print $5}' | cut -d: -f1 | sort | uniq -c | sort -n
:~$ 

This command will return the list of concurrent connections to your machine.


Viewing latest article 1
Browse Latest Browse All 6

Trending Articles