15

How can you dynamically get the IP address of the server (PC which you want to connect to)?

Sinan Ünür
  • 116,958
  • 15
  • 196
  • 339

5 Answers5

17

System.Dns.GetHostEntry can be used to resolve a name to an IP address.

Michael
  • 54,279
  • 5
  • 125
  • 144
10
IPHostEntry Host = Dns.GetHostEntry(DNSNameString);
DoSomethingWith(Host.AddressList);
chaos
  • 122,029
  • 33
  • 303
  • 309
  • Thanks guys for your help but I want to get the visitor's IP address not the pc im working on –  Jun 22 '09 at 23:11
  • 3
    Erm. My example is nothing to do with the PC you're on. DNSNameString is meant to be the name of the server you're connecting to -- that is, answering the original question. I don't know where this stuff you're saying about a visitor's IP address comes from or what it has to do with the question. – chaos Jun 22 '09 at 23:21
2

If you Use the Below Method you will be able to resolve correctly

 public static bool GetResolvedConnecionIPAddress(string serverNameOrURL, out IPAddress resolvedIPAddress)
        {
            bool isResolved = false;
            IPHostEntry hostEntry = null;
            IPAddress resolvIP = null;
            try
            {
                if (!IPAddress.TryParse(serverNameOrURL, out resolvIP))
                {
                    hostEntry = Dns.GetHostEntry(serverNameOrURL);

                    if (hostEntry != null && hostEntry.AddressList != null && hostEntry.AddressList.Length > 0)
                    {
                        if (hostEntry.AddressList.Length == 1)
                        {
                            resolvIP = hostEntry.AddressList[0];
                            isResolved = true;
                        }
                        else
                        {
                            foreach (IPAddress var in hostEntry.AddressList)
                            {
                                if (var.AddressFamily == AddressFamily.InterNetwork)
                                {
                                    resolvIP = var;
                                    isResolved = true;
                                    break;
                                }
                            }
                        }
                    }
                }
                else
                {
                    isResolved = true;
                }
            }
            catch (Exception ex)
            {

            }
            finally
            {
                resolvedIPAddress = resolvIP;
            }

            return isResolved;
        }
0

You want to do an nslookup.

Here's an example:

http://www.c-sharpcorner.com/UploadFile/DougBell/NSLookUpDB00112052005013753AM/NSLookUpDB001.aspx

Chris Harris
  • 4,705
  • 3
  • 24
  • 22
0

Based on your comment on chaos's answer, you don't want the IP address of a server, you want the IP address of a client. If that's the case, fix your question ... and your answer would be HttpRequest.UserHostAddress.

Richard Anthony Hein
  • 10,550
  • 3
  • 42
  • 62