On 9/17/06, David Dyer-Bennet <dd-b at dd-b.net> wrote: > One of the vital tools for figuring out network service issues in the > past has been netstat -l, which on Linux tells me who is listening on > ports waiting for connects (i.e. did the server really start and do > its thing?
I would do: # netstat -a -f inet | grep LISTEN or with lsof from e.g. Blastwave: # lsof -i | grep LISTEN
