我正在尝试获取发出请求的设备的IP地址。这应该在自托管或托管在具有Internet访问权限的服务器上工作。
我试过这个:
//Get Visitor IP address method
public string GetVisitorIpAddress()
{
string stringIpAddress;
stringIpAddress = Request.ServerVariables["HTTP_X_FORWARDED_FOR"];
if (stringIpAddress == null) //may be the HTTP_X_FORWARDED_FOR is null
stringIpAddress = Request.ServerVariables["REMOTE_ADDR"]; //we can use REMOTE_ADDR
else if (stringIpAddress == null)
stringIpAddress = GetLanIPAddress();
return stringIpAddress;
}
//Get Lan Connected IP address method
public string GetLanIPAddress()
{
//Get the Host Name
string stringHostName = Dns.GetHostName();
//Get The Ip Host Entry
IPHostEntry ipHostEntries = Dns.GetHostEntry(stringHostName);
//Get The Ip Address From The Ip Host Entry Address List
System.Net.IPAddress[] arrIpAddress = ipHostEntries.AddressList;
return arrIpAddress[arrIpAddress.Length - 1].ToString();
}
但是在这两种情况下我得到:“:: 1”。
我做错了什么?
答案 0 :(得分:1)
在IPv6中::1
与IPv4中的127.0.0.1
相同。因此,当您从本地计算机运行它时,这就是您应该得到的。
您可以尝试修改您的hosts文件,或尝试通过IP http://192.168.0.1
访问该应用程序(例如)。