197. How will you find the remote hosts that are connecting to your
system on a specific port in Unix?
We can use netstat command for this purpose. Netstat command lists the statistics about network connections. We can grep for the port in which
we are interested.
Exact command will be:
% netstst –a | grep “port number”