vote up 0 vote down star

I mean, if you use tools like NetLimiter, they let you know that a given process that connections to IP1, IP2, etc. I am using packet sniffing for my application, but I only need to packet sniff one application, so I'd like to know to what ip addresses that application is connected. Any easy way to do this? I am using a wrapper for WinPCap.

edit: After googling I came to know about the -netstat -bno command. It seems to do what I want, but I'd like to know if there are any specific functions do do it. Otherwise, I'll use this.

edit2: w i n d o w s !

flag

77% accept rate
I am not sure what you are asking. You say netstat -bno is what you want, but ask for a specific function to do that. Do you want a c#/c++/something .net function? Ie are you doing this programmatically or want a tool like Netlimiter? – BlueNovember Aug 13 at 17:15

4 Answers

vote up 1 vote down

Take a look at GetExtendedTcpTable(), and it's related listed functions. C or C++, I imagine the VB equivs have similar names if your taste is VB.

http://msdn.microsoft.com/en-us/library/aa365928%28VS.85%29.aspx

link|flag
vote up 1 vote down

As you suggest, use the windows equivalent;

netstat -abnot
link|flag
vote up 0 vote down

If you are on Linux you can say "netstat -nap" which will list open network and UNIX domain sockets.

Also you can read info like this from /proc/net/tcp and /proc/net/udp. This page http://linuxdevcenter.com/pub/a/linux/2000/11/16/LinuxAdmin.html should get you started.

link|flag
Thanks. But this would be for windows :( – devoured elysium Aug 13 at 17:11
Oh, sorry, I didn't finish reading before I started answering. – Eric M Aug 13 at 17:13
vote up 0 vote down

What platform are you on? I assume Windows?

link|flag
Please submit questions as comments to the original question; leave "Answers" for actual answers. Welcome to stackoverflow! – BlueNovember Aug 13 at 17:09
Yes, windows. – devoured elysium Aug 13 at 17:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.