获取公共Internet IP地址/地理位置的智能方式

我在本地网络上有一台计算机,在NAT路由器后面。 我有一些192.168.0.x地址,但我真的想知道我的公共 IP地址,而不是提到的

如何获取运行我的C#应用​​程序的服务器的IP地址?

要么

如何在C#中获取机器的IP地址

我需要C#代码。

可能吗? 如果是这样,怎么样?

我更喜欢http://icanhazip.com 。 它返回一个简单的文本字符串。 不需要HTML解析。

 string myIp = new WebClient().DownloadString(@"http://icanhazip.com").Trim(); 

经过一些搜索,并通过扩展我的要求,我发现这不仅会让我获得IP,还会获得GEO位置:

 class GeoIp { static public GeoIpData GetMy() { string url = "http://freegeoip.net/xml/"; WebClient wc = new WebClient(); wc.Proxy = null; MemoryStream ms = new MemoryStream(wc.DownloadData(url)); XmlTextReader rdr = new XmlTextReader(url); XmlDocument doc = new XmlDocument(); ms.Position = 0; doc.Load(ms); ms.Dispose(); GeoIpData retval = new GeoIpData(); foreach (XmlElement el in doc.ChildNodes[1].ChildNodes) { retval.KeyValue.Add(el.Name, el.InnerText); } return retval; } } 

返回XML,因此键/值字典将被填充:

  93.139.127.187 HR Croatia 16 Varazdinska Varazdinske Toplice  46.2092 16.4192   

为方便起见,返回课程:

 class GeoIpData { public GeoIpData() { KeyValue = new Dictionary(); } public Dictionary KeyValue; } 

问题是您要查找的IP地址不属于您的计算机。 它属于您的NAT路由器。 我能想到的唯一方法是使用外部服务器或者使用某种方式查询路由器。

如果您的路由器支持SNMP,您可以这样做。

我相信你真的需要连接一些服务器才能获得你的外部IP。

根据您使用的路由器,您可以直接从路由器获取它。 他们中的大多数都有一个Web界面,因此需要导航到正确的网页(例如,“192.168.0.1/whatever”)和从该页面“抓取”外部IP地址。 当然,问题在于它非常脆弱 – 如果你改变(或者甚至重新配置)你的路由器,很可能会破坏它。

如果失败,您可以使用uPNP并回退到whatsmyip.com。

如果您担心连接丢失或网站的可用性,您也可以尝试这种方式通过包含上述建议来避免此问题。

  using System.Threading; Task[] tasks = new[] { Task.Factory.StartNew( () => new System.Net.WebClient().DownloadString(@"http://icanhazip.com").Trim() ), Task.Factory.StartNew( () => new System.Net.WebClient().DownloadString(@"http://checkip.dyndns.org").Trim() ) }; int index = Task.WaitAny( tasks ); string ip = tasks[index].Result; 

希望这个也有所帮助。

我是这样做的:我创建了一个包含地理位置数据的类

 [Serializable] public class LocationData { public string IP { get; set; } public string CountryCode { get; set; } public string CountryName { get; set; } public string RegionCode { get; set; } public string City { get; set; } public string ZipCode { get; set; } public string TimeZone { get; set; } public string Latitude { get; set; } public string Longitude { get; set; } public string MetroCode { get; set; } } 

然后我使用以下代码调用地理数据并填充类。

 public static LocationData GetLocation(string ip= "") { using (var client = new System.Net.WebClient()) { XmlRootAttribute xRoot = new XmlRootAttribute(); xRoot.ElementName = "Response"; string downloadedString = client.DownloadString("http://freegeoip.net/xml/" + ip); XmlSerializer mySerializer = new XmlSerializer(typeof(LocationData), xRoot) ; using (XmlReader xmlReader = XmlReader.Create(new System.IO.StringReader(downloadedString))) { return mySerializer.Deserialize(xmlReader)as LocationData; } } } 

因为答案是“坏”xml需要指定xRoot元素或者一个人得到错误。

快乐的编码

沃尔特

下面的代码将帮助您获取公共IP地址

  string _externalIP; _externalIP = (new WebClient()).DownloadString("http://http://icanhazip.com/"); _externalIP = (new Regex(@"\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}")) .Matches(externalIP)[0].ToString();