in reply to netstat equivalent

Um, there is nothing comprehensive that I know about, but netstat does a lot of things. Is there something specific you are looking to do?

Update: I'm just curious why I'm getting negative votes for this? All I did was ask for clarification.

"Nothing is sure but death and taxes" I say combine the two and its death to all taxes!

Replies are listed 'Best First'.
Re: Re: netstat equivalent
by cbro (Pilgrim) on Mar 21, 2003 at 17:41 UTC
    Yes, thanks for asking.
    I'm trying to find the total number of inbound and outbound email connections on my server. I'm currently doing this by running 'ps' piped through sed and grep to trim out all 'smtp' and 'smtpd' entries.
    I'm attempting to clean this up and move to Perl functions instead of using my current shell script and without using system/backtick commands in Perl. I'd also rather use a netstat type function as opposed to running 'ps'.