Tagged Questions
1
vote
1answer
802 views
netstat on fresh install of Solaris 10 update 9
I am attempting to decipher the below output
bash-3.00$ netstat -a
UDP: IPv4
Local Address Remote Address State
-------------------- -------------------- ----------
*.sunrpc ...
0
votes
3answers
386 views
Which local process is connected to given server on given port?
On Linux, I can simply:
netstat -ntp | grep server_ip:port
And I get PID and process name of the program that is making given connection.
But how do I do it on Solaris?
1
vote
1answer
1k views
lsof not showing what port a proc is listening on
I have many processes on a box listening on several ports.
I am trying to map ports to pids.
The problem is that lsof is not telling me what ports belong to which process.
Given an apache listening ...
0
votes
2answers
1k views
Numerous TIME-WAIT connections
I am running on a Solaris system. I wrote a Korn shell script that every 30 seconds runs this line:
netstat -a | grep TIME-WAIT | wc -l
This has been working fine for a year. Now I move into a new ...