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

How do I get the IP address of a machine in C#?

share|improve this question
3  
tinyurl.com/ydntvoy – ArielBH Jan 7 '10 at 10:09
2  
then you could at least link to the article and tell us what's wrong with it. And what's wrong with loops by the way? :) – Gerrie Schenck Jan 7 '10 at 10:15
2  
As phrased, "127.0.0.1" is a correct answer. It's an IP address, of the current machine. – MSalters Jan 7 '10 at 10:21
1  
@MSalters: I'm still not sure if return 127.0.0.1 would be an answer I'd upvote :) – marcgg Jan 7 '10 at 11:33
@hobodave, maybe he just thought it would be a useful question and answer to have on StackOverflow - the more questions and answers there are here the more useful it is, no? – Zannjaminderson Nov 30 '10 at 17:34

3 Answers

up vote 1 down vote accepted
 IPHostEntry ip = DNS.GetHostByName (strHostName);
 IPAddress [] IPaddr = ip.AddressList;

 for (int i = 0; i < IPaddr.Length; i++)
 {
  Console.WriteLine ("IP Address {0}: {1} ", i, IPaddr[i].ToString ());
 }
share|improve this answer
5  
GetHostByName is deprecated - msdn.microsoft.com/en-us/library/… – Richard Szalay Jan 7 '10 at 10:04
IPAddress[] localIPs = Dns.GetHostAddresses(Dns.GetHostName());

Your machine doesn't have a single IP address, and some of the returned addresses can be IPv6.

MSDN links:

Alternatively, as MSalters mentioned, 127.0.0.1 / ::1 is the loopback address and will always refer to the local machine. For obvious reasons, however, it cannot be used to connect to the local machine from a remote machine.

share|improve this answer

My desired answer was

string ipAddress = "";
if (Dns.GetHostAddresses(Dns.GetHostName()).Length > 0)
{
     ipAddress = Dns.GetHostAddresses(Dns.GetHostName())[0].ToString();
}
share|improve this answer
4  
This is executing GetHostAddresses and GetHostName twice; you should assign the results of GetHostAddresses to a variable and then check the Length. – Richard Szalay Jan 11 '10 at 10:26
5  
If you are looking for a more relevant IP address, you may want to exclude loopback IPs (e.g., 127.0.0.1 and ::1) with something like this: .Where(ip => !Net.IPAddress.IsLoopback(ip)). – patridge Mar 15 '10 at 17:12

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.