Netstat (network statistic) is a tool, common to Windows, Unix and Linux, used to obtain information about network connections (outbound and inbound), routing tables, and a range of information on the use of statistics the network interface. Netstat.exe command line that shows all open ports for ...
0
votes
3answers
32 views
how to use netstat on a specific port in Linux
Guys i want to know if my specific port is running a server using netstat? how do i achieve that?
0
votes
1answer
29 views
What is “armtech daemon”?
I ran a netstap -p tcp on my machine (A macbook) and noticed a number of entries for something called localhost.armtechdaemo. Searching the web doesn't really give me anything useful.
Does anyone ...
1
vote
1answer
32 views
Netstat doesn't work on FreeBSD by php function exec()
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);
...
2
votes
1answer
41 views
find the process which is listening on a specific port
I want to find some processes which are running on a specified port
for example 80
I ran
fuser 80/tcp
and got nothing
and then
netstat -tulpn|grep "80\|PID"
and got
Proto Recv-Q Send-Q Local ...
1
vote
1answer
66 views
How to Get List/Reference Computers on a Domain, When My computer is Not a Part of that Domain
This is a question I posted on Stack Overflow: http://stackoverflow.com/questions/15211175/how-to-get-list-reference-computers-on-a-domain-when-my-computer-is-not-a-part
I'm looking to get a list ...
0
votes
1answer
24 views
checking ssh tunnel
If I have a tunnel opened with this command
ssh -f root@localhost -g -L 60000:10.128.123.67:32354 -N
Which call of netstat do I have to use to see whether the tunnel is open or not?
I am working ...
-1
votes
2answers
735 views
Can I tell from “netstat” if someone is snooping my computer?
I have many questions. However, to begin in the easiest and shortest manner. I am trying to figure out why when I type cmd prompt netstat -a I get a plethora of IP addresses and links that I am almost ...
0
votes
1answer
64 views
TCP number of connections differ from client to server
How can this be ? netstat shows x 'established' connections from the client to y 'established' connections on the server. Situation stays like this for 10 minutes, then x and y change, then another ...
0
votes
1answer
173 views
netstat shows open port with pid for process that doesn't exist?
We have a program that listens on a port to receive info on running a report. Upon closing and reopening the program, we get an error saying that the port it uses is already in use. Looking at ...
0
votes
1answer
342 views
Redirect the output of netstat to a file?
I'm trying to redirect the output of netstat to a file and it doesn't work.
Initially I tried:
runas /noprofile /user:xxxxx\administrator "netstat -a -b > C:\temp\file.txt"
Then I read ...
2
votes
0answers
89 views
Port 53 on a Windows 7 machine is inaccessible from LAN
Installed a nice dns filter (Acrylic) on my server running Win7. Wanted all machines on the LAN to use it for name resolution. On the server NETSTAT shows Acrylic is listening on DNS port:
UDP ...
0
votes
1answer
58 views
Averaging dstat output
I need to average upload and download speed using dstat -n. How can I add all the received and sent datas that appear after dstat -n , so that I can add them and find average upload and download speed ...
0
votes
1answer
74 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 ...
-1
votes
1answer
75 views
How can I determine why a network connection is open on my computer?
I am running Windows 7 64-bit.
I can see which network connections are established by running netstat -anb. This tells me that there are a lot of connections established by "System".
Is there any ...
1
vote
2answers
260 views
Kill UDP port that has no process?
My VPN client sometimes can't bind to the UDP port (500) it uses. It seems to leave behind a "bind" to port 500 on a previous run, even though it has quit.
The port is reported as "already in ...
0
votes
1answer
181 views
How can I unbind a UDP port that has no entry in lsof?
On my Mac, I have a UDP port that is "already in use", but doesn't have an associated process:
sudo netstat -na | grep "udp.*\.500\>"
shows
udp4 0 0 192.168.50.181.500 *.* ...
1
vote
1answer
723 views
How does Mac OSX prioritize network interfaces when routing?
To give a concrete example, how does OSX choose which of these default entries from netstat -nr to route to?
Destination Gateway Flags Refs Use Netif Expire
0/1 ...
2
votes
1answer
245 views
Continuously check netstat output for a particular program
I have a android emulator running on port 5554. I want to continuously watch the netstat output concerning emulator stuff.
Right now I have to manually execute this command every time
sudo netstat ...
0
votes
1answer
74 views
How to know which package yum is going to download or install now?
Now I am installing a couple of packages using yum on centos, what make me confused is that the system seems to be block at some point, in fact I know yum is downloading some packages from repo, but I ...
0
votes
1answer
474 views
Interpreting statistics from netstat -s
I'm running netstat -s on my Ubuntu box at home to get network interface statistics. There are a bunch of numbers printed out, like this:
Ip:
10256 total packets received
8 with invalid ...
0
votes
1answer
1k views
Netstat Real-time TCP/IP Monitoring
Using Mac OS X's Terminal application, I want to use netstat to display a real-time, continuous listing of my internet connections.
For example, with Terminal open and the proper netstat command in ...
0
votes
0answers
227 views
ping and tracert don't work, while netstat does on windows pc
I am relatively new here and I don't even know if I'm asking the qn in the correct site.
Please bear with me if I'm wrong.
In my command line netstat works, but ping and tracert don't.
I don't get ...
1
vote
0answers
775 views
why doesn't “netstat -nlp” display the pid?
I use the command nestat -nlp, but it doesn't display the pid, like this:
root@***. /$ netstat -nlp | grep 4607
tcp 0 0 0.0.0.0:4607 0.0.0.0:* LISTEN ...
0
votes
1answer
247 views
How to get netstat results grouping by app name?
I use windows 7. I want get result such as distinct netstat -b.
Just get a list of all applications use the network.
How to do it?
1
vote
1answer
505 views
The meaning of port 0 in netstat output
What is the meaning of port 0 in netstat -an output in Windows? I'm asking about socket in Foreign address column:
0.0.0.0:0
I know that 0.0.0.0 address means, that host is listening on all ...
3
votes
2answers
10k views
How to kill a particular tcp connection in windows?
On Linux we can kill an Established TCP Connection using tcpkill command.
For example, to drop all connection to/from a particular IP:
tcpkill host ipaddr
Or similary to kill all connection ...
0
votes
2answers
79 views
What exactly is using port 29178
I am trying to launch a program which is uses port 29178 but it won't start up because it says the port is already in use. Netstat gives me this
C:\Rush>netstat -aon | findstr 29178
TCP ...
1
vote
1answer
186 views
Already dead process is continuing to eat net traffic
I'm using Windows 7, Ruby 1.9.2, SciTE, Outpost Pro 2009 and NetBalancer.
Wrinting Ruby programs in SciTE I press Ctrl+Break to kill them. This way is designed to be easy, quick and reliable. But now ...
3
votes
2answers
1k views
What does 'Listening' refer to when looking at the results displayed by netstat?
I am having a hard time understanding what 'Listening' refers to when I am looking at the netstat results of my PC for example. Does it mean I have an application or service that is waiting for a ...
1
vote
1answer
444 views
Why does netstat on Windows show connections over 24 hours old?
I'm getting the error relating to port exhaustion on my server ("Only one usage of each socket address (protocol/network address/port) is normally permitted").
So, I checked with netstat -n, and it ...
0
votes
2answers
619 views
Unix basic shell script help needed please?
I need some help writing a basic Unix shell script that will run on AIX:
Loop that will run a netstat command (netstat -an| grep 16752| grep ESTABLISHED| wc -l) that counts sessions every second and ...
1
vote
0answers
230 views
When and why does Gateway Metric become equal to Interface Metric ? (Windows network Adapters)
netsh interface ip show address .... command reveals some information about the gateway and interface metrics of each type of adapter . However the gateway metric seems to alwyas change and sometimes ...
4
votes
1answer
520 views
Where does netstat get the process name?
I am developing a node application and there is an option to set the process title (process name). This only sets it in some tools (like ps and top), but not in htop or netstat.
I found this article ...
0
votes
1answer
286 views
What's the '-' stands for in the output of 'netstat -anp'?
I want to use netstat -anp to check which program/process is listening a specific port. But the output includes lots of lines in which the value of 'PID/Program Name' column is just a -. For example
...
0
votes
1answer
452 views
Why netstat/TCPView/CurrPorts lists processes as unknown?
I'm trying to record data of all the processes that establish connections from my PC for security issues, I tried to do netstat -bn 1 > stats.txt, also tried to make a log file with CurrPorts, TCPView ...
1
vote
1answer
1k views
why can't I open a port on Win 7? is it the app's fault?
I am having problems opening a port from one Windows PC on my local network.
On Windows 7 computer ("Computer A") I running Calibre, an ebook management program that has something called an "ebook ...
1
vote
2answers
659 views
Count exchanged bytes per TCP connection
I need to get a table updated with the exchanged bytes (Rx and/or Tx) for each ESTABLISHED TCP connection on a linux machine (well, at least, a list of connections (port ranges), thus not actually ...
1
vote
2answers
264 views
what is ip 10.1.1.130 to which seems monitored by NT Kernel & System process on Windows 7?
I used netstat to see what is happening with network connections, and I see this weird ip address somehow listed together with PID 4 "NT Kernel & System", whatever that might be. Netstat describes ...
2
votes
2answers
120 views
Windows XP can use a wired network port, but MacBook (OS X) fails on the same port
I wired the Cat5 in my house seven years ago. The wired ports have worked fine with both my Windows XP laptop and MacBook. My wireless network also works fine, but I like to use wired occasionally.
...
2
votes
3answers
730 views
Output of “netstat” shows domain I never visited
I think my MacBook Pro might be hacked. The reason I found out about the stackoverflow.com website is because I did a netstat search in Terminal. My browser was closed but nevertheless it showed this:
...
1
vote
1answer
1k views
How to interpret the output of netstat -o / netstat --timers
netstat -o includes some timer information in the output but I haven't found an explanation of the output in the Timer column anywhere.
Can anybody explain this or point to an explanation?
This ist ...
2
votes
1answer
966 views
Netstat -a command : Difference between 0.0.0.0 and 127.0.0.1
When running netstat -a on my local machine, i see ports on the 0.0.0.0 address listening. I would assume that 0.0.0.0 is my local machine, except that i also see 127.0.0.1 listening to specific ...
2
votes
1answer
848 views
My Mac OS X 10.5 netstat reveals a lot of open UDP connections
here are my netstat results (besides server-less connections):
Active Internet connections
Proto Recv-Q Send-Q Local Address Foreign Address (state)
tcp4 0 0 ...
1
vote
1answer
995 views
How do I understand netstat output?
Recently in wondering about my slower-than-usual internet connection, I learned that you can run the netstat command line in the command prompt.
However, when I use this it tends to show things ...
1
vote
1answer
562 views
What does netstat mean by “acknowledgments not containing data received”?
Netstat reports some TCP packets in the following category acknowledgments not containing data received.
However, I'm not clear what this phrase means. Goggling and the netstat documentation don't ...
0
votes
2answers
2k views
How to find who is connected to my computer from MAC address?
When I type in the command netstat -an into cmd, I get information that one of my ports is opened from some MAC address. My qestion is how to close that port and how to find from the MAC address what ...
18
votes
11answers
24k views
How do I kill a process that is dead but listening?
I'm developing an app that listens on port 3000. Apparently there's an instance of it still listening to the port because whenever I start it, it can't create a listener (C#, TcpListener, but that's ...
1
vote
1answer
131 views
Nestat -ano what does it mean?
I tried checking my PC if there are some loggers installed and what I get was:
TCP 192.168.1.7:2642 192.168.1.2:445 ESTABLISHED 4
When I checked in my Task Manager it says system? What ...
2
votes
1answer
1k views
netstat: grep lines related to a specific process
I know that, in Windows, you could do the following to see what processes are attached to a port:
netstat -a -b
However, how would you limit the display to ports attached to a specific process? I ...
3
votes
1answer
1k views
Could you help me to understand netstat output?
I am trying to figure out how to get IP of a suspicious access point I am using to access the internet. Running netstat, I get the following:
$ netstat -rn
Routing tables
Internet:
Destination ...



