Tagged Questions
The netstat tag has no wiki summary.
15
votes
7answers
27k views
Port 80 is being used by SYSTEM (PID 4), what is that?
I am trying to use port 80 for my application server, but when I perform "netstat -aon" I get
TCP 0.0.0.0:80 0.0.0.0:0 LISTENING 4
When I look up the process in task manager, it shows PID 4 is ...
4
votes
1answer
2k views
Who is listening on a given TCP port on Mac OS X?
On Linux, I can use netstat -pntl | grep $PORT or fuser -n tcp $PORT to find out which process (PID) is listening on the specified TCP port. How do I get the same information on Mac OS X?
4
votes
1answer
150 views
Follow pids across machines (ssh)
I am basically trying to write a pstree-like command except that it should follow processes across machines.
What I mean is that if I run this :
$ ssh $node sleep 1000
Then the command should ...
3
votes
1answer
693 views
How to do like “netstat -p”, but faster?
Both "netstat -p" and "lsof -n -i -P" seems to readlinking all processes fd's, like stat /proc/*/fd/*.
How to do it more efficiently?
My program wants to know what process is connecting to it. ...
3
votes
2answers
2k views
Debugging IDE's port connection to XDebug: “Waiting to Connect”
Preamble
Like many, I've spent more hours debugging my IDE’s connection to XDebug than I have using XDebug to debug my programs. I’ve gotten it to work repeatedly, but every once and a while I get ...
3
votes
7answers
5k views
How do I interpret 'netstat -a' output
Some things look strange to me:
What is the distinction between 0.0.0.0, 127.0.0.1, and [::]?
How should each part of the foreign address be read (part1:part2)?
What does a state TimeWait, CloseWait ...
2
votes
1answer
45 views
parsing ss output with awk
I want to get a list of applications and their output ports for some given list of applications, from my C program.
I'm thinking of using something like
ss -natp | awk '/firefox/ { ...
2
votes
2answers
84 views
How to List Active Ports and Processes using them in Linux, C Code
I am trying to write a C Code to do the same Job as:
netstat -vatp
List all Remote/Local Addresses and Processes using them. But I dunno which files should I be reading?
I tried looking into ...
2
votes
3answers
116 views
Perl system(command) then kill command
I'm trying to output a system netstat -an -p TCP $interval > $log for a sleep of $seconds, and then quit/kill the netstat command but am having trouble getting it to work correctly.
If I use ...
2
votes
5answers
191 views
Process started from system command in C inherits parent fd's
I have a sample application of a SIP server listening on both tcp and udp ports 5060.
At some point in the code, I do a system("pppd file /etc/ppp/myoptions &");
After this if I do a netstat ...
2
votes
5answers
2k views
Troubleshooting connections stuck in CLOSE_WAIT status
I have a Java application running in WebLogic 11g on Windows, which after several days, becomes unresponsive. One suspicious symptom I've noticed is that a large number of connections (about 3000) ...
2
votes
2answers
322 views
Netstat for a single connection?
On Linux, is there any way to programmatically get stats for single TCP connection? The stats I am looking for are the sort that are printed out by netstat -s, but for a single connection rather than ...
2
votes
1answer
621 views
What does “Can not obtain ownership information” in Netstat -ab mean?
(Windows 7 x86)
If I run "netstat -ab", I get a list of active connections, along with the names of the applications which have opened the connections.
However, some connections (including the one ...
1
vote
2answers
45 views
/proc/net/tcp Alternative Under Solaris 11
On Most Linux Distributions, i was able to list all tcp connections by reading /proc/net/tcp, but this Doesn't exists on solaris, is there a file that i can read tcp connections from on Solaris 11?
...
1
vote
2answers
79 views
Get used ports and states
How can I get used ports and their states on Linux? Basically, everything that netstat can do, but in C?
1
vote
1answer
154 views
Java Socket Connection initiated through web application, reopens when server restarts
I have a web application running on a Tomcat 6, installed on a Windows Server 2003. This application opens socket connections with at different server to retrieve some data. This application has been ...
1
vote
1answer
903 views
How to get default gateway in Mac OSX
I need to retrieve the default gateway on a Mac machine. I know that in Linux route -n will give an output from which I can easily retrieve this information. However this is not working in Mac ...
1
vote
1answer
100 views
Socket not listed in lsof but is listed in netstat
When I do "lsof -nl | egrep "TCP|UDP" " in order to see socket states, I notice that the sockets that I expected to be listed are not at all, but when I do a "netstat --tcp", they are listed, but are ...
1
vote
1answer
927 views
What does FIN_WAIT1 means
When i send a HTTPS request from Windows7/Vista to linux Red Hat 4 the 'netstat -an ' command shows
'FIN_WAIT1' OR 'SYNC_RECV' status.
Can any one help me Why these statuses are appear instead of ...
1
vote
2answers
118 views
Pipe netstat output multiple times
I want to store current network traffic [b/s] in Mac OS X into a file once a second.
netstat -b -n 1 |awk '{print $3}' |tail -n +3 >traffic.txt
/should/ do want I want to - but the second pipe ...
1
vote
1answer
251 views
tool:udp debugging tool on solaris
I am looking for UDP debugger tool, for the following requirement
1) netstat -s, shows udpInOverflows=23000 and this counter is increasing continuously.
how can I check udp packets which are ...
1
vote
0answers
307 views
Netstat on Nexus one?
Im trying to run the netstat command on nexus one, its returning empty entries:
Proto Recv-Q Send-Q Local Address Foreign Address State
can anyone help me figure out this problem?
...
1
vote
3answers
675 views
How do I access netstat data in Python?
I'm trying to need to access/parse all outgoing connections on a particular port number on a Linux machine using a Python script. The simplest implementation seems to be to open a subprocess for ...
1
vote
4answers
450 views
Extract IP from netstat output
The netstat output contains thing like...
tcp 0 0 0.0.0.0:80 221.126.149.99:51973 ESTABLISHED 23879/apache2
tcp 0 0 0.0.0.0:80 66.249.68.154:40883 ...
1
vote
2answers
550 views
postgres connections exceeding max_connections?
we are running a very connection-heavy, insert-heavy postgres database (to the point that we should've done some connection pooling, but there's no time now).
when doing some troubleshooting, i was ...
1
vote
2answers
259 views
Find application using port
I have a networking program setup that does a lot of what the nestat program does. I am working now on netstat -o. That command will give me the PID of the program using that socket.
I have some ...
1
vote
1answer
296 views
Java Connections netstat -ano
I am new to java and I have been testing my application all day long.
I just did
netstat -ano
and it gave me a huge listing of active connections (listening, established) does this mean when i ...
1
vote
3answers
572 views
Get output of CMD line program from C++ (specifically netstat)
I want to be able to run "netstat -n" and grab the output somehow so I can then write it out to another file.
How can I do this in C++ on Windows CE
Thankyou
Chris
1
vote
0answers
298 views
How to find the other point of a Unix domain socket on Mac OS X to write/read it?
I listed open file for a process (a daemon) on my box which runs Mac OS X 10.5 :
>lsof -p 89
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
...
xxxxx 89 xxxxxxxx 9u unix ...
0
votes
1answer
28 views
How to count SYN/ESTABLISHED connection to server?
I want to get number of SYN and ESTABLISHED connection to my server with C/C++. But I don't want to call popen to run netstat, or any other Linux command. I've managed to scan /proc/net/ip_conntrack ...
0
votes
1answer
52 views
How to get output from ExecDos::exec
When I execute netstat -a |find /C $portNumber in command prompt I get the total number of lines where the given port number exists.
I want to get that same count in any variable so that I can check ...
0
votes
1answer
30 views
netstat -i what is meant by the metric value of the given interface?
When using netstat -i you get output like the following sample:
Iface MTU Met RX-OK RX-ERR RX-DRP RX-OVR TX-OK TX-ERR TX-DRP TX-OVR Flg
eth0 1500 0 214 0 0 0 ...
0
votes
1answer
68 views
Remote access to namenode is not allowed despite the services are already started.
I successfully installed and run Hadoop on a single machine whose ip is 192.168.1.109 (In fact it is actually an Ubuntu instance running on virtual box ) .
When typing jps it shows
2473 DataNode
...
0
votes
2answers
119 views
C# and psexec process output redirection issues
I'm trying to create a small program to run on a centralized device. This program will run
"psexec \server(s) netstat -na | findstr "LISTENING""
to collect netstat data from remote nodes ...
0
votes
1answer
50 views
Getting a socket status through C++ application(Linux)
I need to write a code that forcibly closes child processes that have connections in
CLOSE_WAIT status. It should be running at the father process and constantly
check the forked child ...
0
votes
2answers
52 views
Netstat solved my slowdown? [closed]
I was wondering what netstat does? I know this kind of a weird question.... We were encountering a very grave slowdown in our web server machine which is running on debian linux.
After running netstat ...
0
votes
1answer
115 views
what is the command in linux to kill tcp connection or session? [closed]
Possible Duplicate:
How do I break an arbitrary TCP/IP connection on Linux?
I want to close the socket connection cretead for some clients in server machine
i want to do this using command ...
0
votes
1answer
36 views
Reading the route table on Solaris
I'm working on a C++ application on Solaris 11 that needs to read the network routes (similar to the output of "route" on Linux or "netstat -r" on Solaris).
What is the best way to do on Solaris ? ...
0
votes
1answer
36 views
Strange connections on netstat
While setting up a new http-server, i found some strange connections showing up in netstat:
There is nearly nothing running on this computer - these high ports seems to be for a trojan.
Can anyone ...
0
votes
0answers
85 views
netstat : how to read
I executed netstat command in the server, I get the following result:
Local Address State PID
0.0.0.0:800 LISTENING AAAA
<Server IP ...
0
votes
1answer
273 views
Xdebug not working with PDT “waiting for Xdebug Session”
I am trying to configure Xdebug with Eclipse PDT plugin. I have gone through lots of tutorial in web and also went through stackoverflow.com existing question. But didn't find the answer to this:
i am ...
0
votes
0answers
24 views
How to find the netstat -antp receive Q value using Awk Command
Anyone can help me out to find out how to grep the receive-Q in the netstat -antp output. I have given with an example. I would like to write a script whenever the receive-Q value increases, i would ...
0
votes
0answers
78 views
Win 2K8 script to close all netstat connections with TIME_WAITand PID 0
I run netstat -noa and get a variety of processes in TIME_WAIT and PID of 0. Is there a way for me to programmatically (and forcibly) close out these processes?
0
votes
1answer
133 views
inetinfo.exe always appears on Task Manager [closed]
I just realized that I have a process inetinfo.exe always running on my PC. It seems to be part of IIS. Even if I kill it, it starts again with obviously a different port id.
How can I see in Windows ...
0
votes
0answers
152 views
remote netstat - stack
I'm trying to use this code I found in the internet ,running remote netstat : (in C#)
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.StartInfo.FileName = ...
0
votes
0answers
103 views
Windows 7 : ipv4 metrics for network adapters keep changing
when i change the metric values manually , The number either adds itself to another number , or multiplies by 2 . I am not able to understand whats going wrong ..
Note : when i check the values ...
0
votes
0answers
434 views
iOS - How To Monitor Network Activity From Within App?
I'm trying to monitor network activity on my iPhone from within an app I'm developing. Does iOS support a netstat-like command or something similar that can tell me what what inbound and outbound ...
0
votes
2answers
434 views
Port Stuck in Time_Wait
I have a TCP Tunnel in C#. I need to open and close the tunnel which is my app between a server and a client. I'm using this to close the data connection to test out another app. I have to use ...
0
votes
0answers
625 views
getting routing table on MACOSX (programmatically)
The question is how can i get routing table on MACOSX?
I don’t mean netstat -nr. I mean how to do it programmatically using C.
The first of all I have downloaded netstat source codes from ...
0
votes
0answers
127 views
BindException - Address already in use -Possible Issue with Javaws and insane amount of ports opening netstat
I have a javaws program. It in itself calls another javaws periodically, and possibly many times based on its user input. I keep getting errors from javaws unable to load, which I believe is because ...