Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In the internet there are several places that show you how to get an IP address. And a lot of them look like this example:

        String strHostName = string.Empty;
        // Getting Ip address of local machine...
        // First get the host name of local machine.
        strHostName = Dns.GetHostName();
        Console.WriteLine("Local Machine's Host Name: " + strHostName);
        // Then using host name, get the IP address list..
        IPHostEntry ipEntry = Dns.GetHostEntry(strHostName);
        IPAddress[] addr = ipEntry.AddressList;

        for (int i = 0; i < addr.Length; i++)
        {
            Console.WriteLine("IP Address {0}: {1} ", i, addr[i].ToString());
        }
        Console.ReadLine();

with this example I get several ip addresses and I am interested in getting the one that the router assigns to my computer (computer running the program). The IP that I would give to someone if he wishes to access a shared folder in my computer for instance. If I am not connected to a network and I am connected to the internet directly via a modem with no router then I would like to get an error. How can I see if my computer is connected to a network with c# and if it is then to get the LAN IP address.

share|improve this question
If I am not connected to a network and I am connected to the internet This statement seems contradictory. Are you trying to figure out if your computer is connected to a private LAN or the Internet? – Andy Jul 23 '11 at 20:28

3 Answers

up vote 32 down vote accepted

To get local Ip Address:

public string LocalIPAddress()
 {
   IPHostEntry host;
   string localIP = "";
   host = Dns.GetHostEntry(Dns.GetHostName());
   foreach (IPAddress ip in host.AddressList)
   {
     if (ip.AddressFamily == AddressFamily.InterNetwork)
     {
       localIP = ip.ToString();
       break;
     }
   }
   return localIP;
 }

To check if you're connected or not:

System.Net.NetworkInformation.NetworkInterface.GetIsNetworkAvailable();

share|improve this answer

Refactoring Mrcheif's code to leverage Linq (ie. .Net 3.0+). .

private IPAddress LocalIPAddress()
{
    if (!System.Net.NetworkInformation.NetworkInterface.GetIsNetworkAvailable())
    {
        return null;
    }

    IPHostEntry host = Dns.GetHostEntry(Dns.GetHostName());

    return host
        .AddressList
        .FirstOrDefault(ip => ip.AddressFamily == AddressFamily.InterNetwork);
}

:)

share|improve this answer
I've got a few IP Addresses as "Inter Network" an this solution actually works and gives the right one back. The other one from Mrchief just gives me the last one. So actually this one should be the right one ;) – Keenora Fluffball Dec 22 '11 at 12:23
1  
woot ^ woot :) :) – Pure.Krome Dec 22 '11 at 23:35

@mrcheif I found this answer today and it was very useful although it did return a wrong IP (not due to the code not working) but it gave the wrong internetwork IP when you have such things as Himachi running.

    public static string localIPAddress()
    {
        IPHostEntry host;
        string localIP = "";
        host = Dns.GetHostEntry(Dns.GetHostName());
        foreach (IPAddress ip in host.AddressList)
        {
            localIP = ip.ToString();

            String[] temp = localIP.Split('.');
            if (ip.AddressFamily == AddressFamily.InterNetwork && temp[0] == "192")
            {
                break;
            }
            else localIP = null;
        }
        return localIP;
    }
share|improve this answer
1  
Do you mean Logmein Hamachi? It is a VPN solution and it tinkers with the network stack. Also, being a VPN, it seems reasonable that it returns the VPN assigned IP when connected (just my guess). – Mrchief Jan 28 at 22:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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