If you need to watch how many active network connections are running on your machine, and what processes using it, simply run from root (or under Sudo) watch netstat -naop where: -n: show ip address -a: show only active connections -o: show the ports connected -P: pid and name of processes

