I find this command useful to find out which processes are using the network. It’s not as good as ntop, but it works on most any *nix machine, including mac.
sudo lsof | grep ‘TCP.*ESTABLISHED’
I find this command useful to find out which processes are using the network. It’s not as good as ntop, but it works on most any *nix machine, including mac.
sudo lsof | grep ‘TCP.*ESTABLISHED’
Comments are closed.
I use lsof -i4: or without port as well, for this kind of thing.