6

I'm writing a program in C# that needs to monitor the amount of internet bandwidth currently in use so it can do a background upload when the internet usage is low. How can I automatically determine which network adapter is the one connected to the internet?

Telanor
  • 4,419
  • 6
  • 29
  • 36
  • Check this question http://stackoverflow.com/questions/515436/how-to-get-internet-ip/515449 – Brian Rasmussen Jan 31 '10 at 19:32
  • More than one adapter might be connected to the internet. (For example, a wired and wireless connection on the same machine.) – Joe Jan 31 '10 at 19:47

6 Answers6

4

I ended up following a link to MSDN when I was reading this page where I found the GetBestInterface function. I was able to use that to find the adapter thats connected to the internet

Community
  • 1
  • 1
Telanor
  • 4,419
  • 6
  • 29
  • 36
3

You can use WMI to query all the adapters and see which one is connected.
This article shows you how to do it in VB.Net (very easily transferable to C#).

Rory MacLeod
  • 11,012
  • 7
  • 41
  • 43
Traveling Tech Guy
  • 27,194
  • 23
  • 111
  • 159
3

See here for a similar question on how to monitor the bandwidth used, in VB.NET, but the philosophy is the same! Here is another question that is the fastest way of checking for internet connection.

Hope this helps, Best regards, Tom.

Community
  • 1
  • 1
t0mm13b
  • 34,087
  • 8
  • 78
  • 110
3

Examine the routing table and look for the interfaces that have a default route (a route to 0.0.0.0) - that's your interface(s) that are connected to the wider world (if any).

caf
  • 233,326
  • 40
  • 323
  • 462
0

There are any number of ways an adapter may show as "connected to the internet" when it isn't. Conversely, it's possible for it to "not be connected to the internet" and still be connected.

Like many things in life, "The proof of the pudding is in the eating" If you want to know if you're connected, you'll need to try to talk to something.

I like time.gov since it returns a tiny chunk of XML containing the current time so you can make sure you're actually connecting to the net and not getting some sort of cached data or a redirect to a captive portal.

Just loop through the adapters and see which actually has connectivity.

Terry Carmen
  • 3,720
  • 1
  • 16
  • 32
0

use below code snippet for get the current active network adapter.

using System.Net.NetworkInformation;
using System.Linq;

class Program
{
     static void Main(string[] args)
     {
        NetworkInterface networkInterface = NetworkInterface.GetAllNetworkInterfaces().FirstOrDefault(o => o.OperationalStatus == OperationalStatus.Up && o.NetworkInterfaceType != NetworkInterfaceType.Tunnel && o.NetworkInterfaceType != NetworkInterfaceType.Loopback);
        if (networkInterface != null)
        {
            Console.WriteLine(networkInterface.Name);
        }
     }
}
Vignesh Nethaji
  • 374
  • 3
  • 15
  • 1
    You will get a virtual network interface if your machine has installed VMware or Hyper-V. – huang May 11 '22 at 19:59