On 06 December 2001, Joseph Kezar said:
> Is there a way I can view the number of concurrent smtp connections at
> any given moment?
netstat is very handy. On Linux, you can view all processes listening
to a TCP port with:
netstat -tlnp
(The -p shows process ID and command, -n makes it show numeric addresses
and port numbers -- so no DNS delays.)
Not sure how useful netstat is on other Unices; ISTR that the Solaris
version is very different from the Linux version, and not nearly as
useful.
Greg