netstat (network statistics) is a command-line tool that displays network connections (both incoming and outgoing), routing tables, and a number of network interface statistics. It is available on Unix, Unix-like, and Windows NT-based operating systems.

learn more… | top users | synonyms

0
votes
0answers
11 views

netstate -lput doesn't show the pid of deamon that is listening on port:8080?

I runed:netstat -lputn to find ount which program is listening on port 8080,but got blow output: As you can see no pid or program name got shown,why?
-1
votes
0answers
10 views

detect ip address from a software netstat and close connection [closed]

and thanks in advance for reading my question. I just learned about netstat command and i have put to test the connections in my pc, i use a software called 123live help. So i run the netstat -ano ...
0
votes
1answer
19 views

Number of packets ordered by IP [closed]

My server is currently under a small DOS attack. I would like to know if there is an easy way to get the list of IPs sending packets to my server, ordered by the number of packet they sent, on a ...
0
votes
1answer
19 views

server unreachable from outside after IP change

We changed a deal with our ISP and now they gave us a new IP. Basicly there is a bridge > freebsd server > intranet So the FREEBSD server has a static IP which was given by our ISP. I got ...
0
votes
0answers
28 views

Netstat doesn't work on FreeBSD by php function exec() [migrated]

In my php-app I need list of all ip connected on 80 port. i've chose this way: <?php $ips = exec("netstat -an |grep 'tcp\|udp' | awk '{print $5}' | cut -d: -f1 | sort | uniq -c", $info); ...
0
votes
0answers
41 views

TCP port state check for an application.

I have chat application developed in vb.net . It is used to chat between PC's which are connected in LAN network inside a office. It uses TCP/IP port 25025 to connect to another. The app works fine . ...
-1
votes
0answers
50 views

how to check if a socket is sending data in linux [closed]

I often have to debug processes which involve a server client tcp connection. I'd like to check, during times where a client might seem stuck, whether the server is sending it data or not. I can use: ...
0
votes
0answers
82 views

apache httpd and mysql gives lots of TIME_WAIT

We are running a traditional LAMP platform with lots of visitors (don't have the numbres). On our webserver we are no getting lots of TIME_WAIT. I have googled around a lot, and think I understand how ...
0
votes
0answers
38 views

netstat -s statistics meaning [closed]

If I use netstat -s command to get TCP/UDP statistics for IPv4/IPv6. and I get some mesures like Active Opens, Failed connexions, Segments received. To use these statistics I want to know how these ...
0
votes
0answers
24 views

listing multicast sockets

I am trying to list all opened multicast sockets on a linux system? netstat -g lists the groups joined though. Is there any other utility that I can use for this sake? Thanks a lot for the help.
1
vote
1answer
40 views

Difference between GetExtendedUdpTable and netstat result

I used this code to get opened UDP ports and the application that use every port. DWORD (WINAPI *pGetExtendedUdpTable)( PVOID pUdpTable, PDWORD pdwSize, BOOL bOrder, ULONG ulAf, ...
3
votes
1answer
114 views

java write netstat in cmd

My goal is to print all the internet connections on my computer. When i type netstat on cmd i get the internet connections list. I wanted to do the same in java, automatically. My code: Runtime ...
3
votes
2answers
138 views

Windows API to get netstat -s statistics

I'm searching a windows API that return the same statistics of netstat -s
2
votes
1answer
75 views

GetExtendedTcpTable donesn't return the same result as netstat -ano

I used this code to get list of Opened port in my PC and the application that use each port. string Port::GetListOfTcpPorts() { string ApplicationName = ""; string result = ""; string ...
1
vote
2answers
71 views

How to retrieve the result of netstat command

I tried to get the list of opened ports in my PC in a c++ code.So, I want to use the DOS command netstat. I have written this line system("netstat -a") but I can't retrieve the result that it returns. ...
4
votes
1answer
178 views

How to find out application name by PID (process id)

I'm trying to install VisualSVN server and have message "Specified TCP port is occupied by another service". How I can find what service or app is using the 443 port? "netstat -aon" shows me only ...
0
votes
2answers
146 views

Alternative to scraping netstat for getting list of remote IP addresses?

I'm currently scraping the output of netstat -n -A inet on Linux and netstat -n -f inet on Mac OSX to get a collection of remote IP addresses and ports to which the machine is connected using the ...
0
votes
1answer
68 views

Interpreting Android xt_qtaguid/stats

I have a quick question on Android's netstats and how they are reported. by running this code in cmd: adb shell cat proc/net/xt_qtaguid/stats > C:\netstats.txt" I get a file that looks more or ...
2
votes
2answers
170 views

How to determine which Windows Communication Foundation Service is using a given port?

Ideally I want to do this inside of C# so I'm including the C# tag. I have several Window Communication Foundation Services that are running and open up TCP ports (one each) using ...
1
vote
1answer
101 views

How to do a netstat to see if a port is in use in C++?

From the command prompt, I can run netstat to see if a single port is already in use on a machine something like this: netstat -nap | grep <port-num> What functions could I call in C++ on ...
0
votes
0answers
103 views

Discarded packet counter in netstat (windows system)

Using RockSaw tool to ping a list of hosts in parallel. During my tests, I saw some of ICMP requests were discarded shown in "netstat -s" under "Discarded Output Packets". There was no discarded ...
1
vote
1answer
104 views

mongoimport hangs when running from within firewall

I am trying to import data to my mongodb sevrer that is hosted on the cloud. I run the following command from a linux server that is inside a corporate firewall: mongoimport --host myhost:10081 --db ...
0
votes
1answer
95 views

Do Applications make use of the same Port Number or Different Ports for concurrent connections?

Do applications make use of different local ports for concurrent connections or is it the same port number that is being used for the second new connection? For example if i open My Firefox Browser ...
1
vote
0answers
159 views

Mac OS X - Why does netstat give error “got %d twice”?

I'm trying to figure out why netstat on my Mac OS X computer prints stuff like "got 4 twice". For example: $ netstat | head -15 Active Internet connections Proto Recv-Q Send-Q Local Address ...
0
votes
1answer
291 views

How to use ADB shell to find the ports which a process is using?

For example, in Android, the PID of a process 1234 is using ports 2222,2223,2224. Now I have a PID 1234. I was wondering how to find out port numbers 2222, 2223, 2224 which the process is using? I ...
0
votes
0answers
45 views

Check which process in bound to a particular port

I am getting some error in an application like : Failed to bind to socket 192.168.122.1:87 : Address already in use so I want to see which process is using this socket. is there any way to do this ...
0
votes
0answers
48 views

CentOS 6 with Deflate anyone?

I have used this script: http://deflate.medialayer.com/ For many years for CentOS 4 and 5. But sadly, im mean, sadly the command is uses does not seems to work in CentOS 6 anymore: netstat -ntu | awk ...
1
vote
1answer
77 views

list all open files by ip

Is there a way to show all open files by IP address on linux? I use this: netstat -atun | awk '{print $5}' | cut -d: -f1 | sed -e '/^$/d' |sort | uniq -c | sort -n to show all connections from IP ...
0
votes
0answers
120 views

get all tcp/udp connections using sysctl in Objective C

As we know to get all tcp connections we can use sysctl with "net.inet.tcp.pcblist" as MIB variable .But its output is binary data and must be convert to human readable context which describes IP ...
0
votes
0answers
96 views

Get all TCP/UDP Connections Objective C

I want to get all TCP/UDP connections on the mac os x. I also checked out netstat.c for doing this job but i can't figure out how to use it on objective C and Xcode.. Anyone can help me to write ...
2
votes
0answers
166 views

RFID reader device IP not seen in established state in netstat

I am trying to write a C# code, that will help me get the RFID reader device IP. I am using netstat C# implementation which gives all the local and foreign addresses. Now the problem is, after ...
0
votes
1answer
186 views

What is the difference between :::: and 0.0.0.0 from the netstat -an output?

I just want to understand the difference between :::: and 0.0.0.0. I believe both are same which let connection from outside if any processor is listening to that port. udp 0 0 ...
0
votes
1answer
33 views

Connections not closing

I ran netstat and noticed that I have a lot (nearly 100) of connections that are either still ESTABLISHED or in CLOSE_WAIT state from over a week ago from a different local IP on a different network. ...
1
vote
1answer
258 views

How to find port number for a particular process id in unix?

In UNIX OS, how can I find the port number when i know the process name or pid ?
1
vote
1answer
147 views

Netstat Foreign Address Shows MAIL: mySQL

I am running a dedicated mySQL 5 server on Windows 2008. I believe a bot may be installed on the server sending out emails. If I run a Netstat -a on the server, i am seeing these types of entries. ...
0
votes
3answers
260 views

What is the size of packet in netstat linux command? [closed]

I measure the number of sent and received packets by netstat -s and it works well. But for finding the network traffic size (e.g MegaByte or GigaByte), I need to know the size of each packet: 1- ...
1
vote
1answer
419 views

Used port not showing up in netstat -a result

This issues started recently when I am trying to start active-mq (which by default starts on port 61616). But suddenly it stopped coming up with JVM_BIND issue on that port. The problem did not go ...
0
votes
1answer
539 views

Check if TCP port is available (not listening or connected)

I use following code to check if a port is available or not: bool ClassA::CheckPortTCP(short int dwPort , char *ipAddressStr) { struct sockaddr_in client; int sock; ...
0
votes
1answer
97 views

Why does netstat show Tomcat process listen to multiple ports? [closed]

The netstat output with the tomcat process(pid: 28899) is as followed: Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name tcp 0 0 ...
0
votes
1answer
789 views

Tracking an application's network statistics (netstats) using ADB

I have a feeling this is possible, I'm just not quite sure where the information is held. I want to get the up/down statistics for specific applications, but I want to do it using ADB and not ...
0
votes
1answer
120 views

Writing bash code for performance standards

Is there a better way to rewrite this code to get enhanced performance? If you were to get a bunch of IPs the system seems to hang. TMP_PREFIX='/tmp/synd' TMP_FILE="mktemp $TMP_PREFIX.XXXXXXXX" ...
0
votes
1answer
325 views

How do I track my windows server 2008 incoming IP addresses [closed]

Using Windows Server 2008 R2, usually I run the netstat command which is an spontaneous check of the current connections to the server, I would ask if it exist a similar feature to track and record in ...
-1
votes
1answer
118 views

Output of netstat -r [closed]

I have been trying to understand the output from netstat -r , all I know it is related to routing table !! What is the numbers next to each interface in the interface list also what is the matric
1
vote
0answers
440 views

netstat command shows SYN_RECV

I am using tcpsockets. All of a sudden my connection went in SYN_RECV state. Here is the output of netstat. Any clue? tcp 0 0 n2cbaq112:11021 n3bvap112:57150 SYN_RECV tcp 0 ...
3
votes
2answers
1k views

difference between netstat and ss in linux?

in linux, netstat command tells us information of active sockets in system. I understand that netstat uses /proc/net/tcp to acquire the system network information. since netstat version 1.4(? I'm ...
0
votes
2answers
2k views

telnet not working though server and client are on

i use a pc with windows 7.i tried to telnet to another host but it didn't work even though the host had enabled telnet server and i had enabled the client.So, i enabled telnet server on my pc and ...
0
votes
1answer
39 views

Can any port in the sate of “LISTEN” be seen to the outter?

I execute the command "netstat -tln" in the shell, here is what it outputs. the 5th field is the foreign address, i dont' know what it means here. Does "0.0.0.0:" mean any address can be connected ...
3
votes
3answers
183 views

Get open ports as an array

So, I'm using netstat -lt to get open ports. However, I'm not interested in certain values (like SSH or 22), so I want to be able to exclude them. I also want to get them as an array in bash. So far I ...
0
votes
0answers
96 views

How can I tell if a hacker is doing something I've heard called MIRRORING my mac? Working in terminal using NETSTAT; confused [closed]

I think i know who the perpetrator is; last year he compromised my Facebook, Wordpress, and Yahoo/Gmail accounts. A friend @Apple helped and now this. I normally would run Spyware/antivirus stuff and ...
0
votes
0answers
238 views

netstat show nothing about apache's port,apache works fine

i run into a problem:my apache listening on port 80 works fine,i can access it throug the browser,and i see the log in this apache print info regarding to my access.----so i can guareentee i access ...

1 2 3