vote up 0 vote down star

Is there a 1 line method to get the IP Address of the server?

Thanks

flag

What you mean "server" - ASP.Net processing machine or server-side firewall/gate/proxy – Dewfy Aug 28 at 8:23
You need to take into account that there can be many IP addresses assigned to your server. – frogbot Aug 28 at 8:28

3 Answers

vote up 4 vote down check
Request.ServerVariables["LOCAL_ADDR"];

From the docs:

Returns the server address on which the request came in. This is important on computers where there can be multiple IP addresses bound to the computer, and you want to find out which address the request used.

This is distinct from the Remote addresses which relate to the client machine.

link|flag
+1 Nice, I didn't know that existed. – Pwninstein Aug 28 at 8:39
Yep, lots of handing things hiding in the ServerVariables collection. – Zhaph - Ben Duguid Aug 28 at 9:13
Perfect answer - from old ASP Classic days , I should have remembered this one :) – JL Aug 31 at 5:09
vote up 1 vote down

From searching the net I found following code: (I couldn't find a single line method there)

string myHost = System.Net.Dns.GetHostName();

// Show the hostname 

MessageBox.Show(myHost);

// Get the IP from the host name

string myIP = System.Net.Dns.GetHostEntry(myHost).AddressList[index].ToString();

// Show the IP 

MessageBox.Show(myIP);

-> where index is the index of your ip address host (ie. network connection).

Code from: http://www.geekpedia.com/tutorial149_Get-the-IP-address-in-a-Windows-application.html

link|flag
vote up 0 vote down

As other(s) have posted, System.Net.Dns.GetHostEntry is the way to go. When you access the AddressList property, you'll want to take the AddressFamily property into account, as it could return both IPv4 AND IPv6 results.

link|flag

Your Answer

Get an OpenID
or

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