Get the Network Interface Name in C#

2.9k Views Asked by At

I'm writing a program which uses the wPCAP library. I managed to get out the list of interface names:

\Device\NPF_{A9734063-CA83-4D91-A35B-CC727749256A ...

Now my question is: how do I know which interface this is? I'm attempting to get the IP of the interface with that name.

I tried the NetworkInterface.GetAllNetworkInterfaces() function, but in those classes I could only find the "readable" name, and not the \Device... name.

Thank you!

Yvan

Edit: I need to get the IP address of the device with the name "\Device\NPF_...". How do I accomplish this?

3

There are 3 best solutions below

0
On BEST ANSWER

Actually, I found a solution to circumvent the problem: I just listen on each interface :-S. That does accomplish also a desireable result (namely the logging of each visited web page).

Thank you all!

2
On

My first guess would be that it's more a device problem than a network problem see :

http://www.codeproject.com/KB/system/DeviceStatus.aspx

and

http://msdn.microsoft.com/en-us/library/aa394353%28v=vs.85%29.aspx

Hope this helps

2
On

A long time ago I did something similar. Look up the following and I am sure you will find what you are looking for:

IPInterfaceProperties properties = adapter.GetIPProperties();