找到路由器的公共 IP 地址
确定路由器的公共 IP 地址可能看起来很棘手,但有几种方法可以让它变得简单。
通过 HTTP 请求检索 IP
使用C#,您可以利用HTTPClient来获取您的公共IP:
<code class="language-csharp">public static async Task<IPAddress> GetExternalIpAddress() { string externalIpString = (await new HttpClient().GetStringAsync("http://icanhazip.com")) .Replace("\r\n", "").Replace("\n", "").Trim(); if (!IPAddress.TryParse(externalIpString, out IPAddress ipAddress)) return null; return ipAddress; }</code>
使用 WebClient 的另一个选项:
<code class="language-csharp">public static void Main(string[] args) { string externalIpString = new WebClient().DownloadString("http://icanhazip.com").Replace("\r\n", "").Replace("\n", "").Trim(); IPAddress externalIp = IPAddress.Parse(externalIpString); Console.WriteLine(externalIp.ToString()); }</code>
命令行解决方案
命令行用户有多种选择:
在 Linux 和 Windows 上:
<code class="language-bash"> wget -qO- http://bot.whatismyipaddress.com</code>
使用卷曲:
<code class="language-bash"> curl http://ipinfo.io/ip</code>
以上是如何访问路由器的公网IP地址?的详细内容。更多信息请关注PHP中文网其他相关文章!