存取路由器的公用 IP 位址
本指南概述了使用 C# 程式碼和命令列介面來確定路由器公用 IP 位址的幾種方法。
C# 方法
<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>
<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>
命令列方法
<code class="language-bash">wget -qO- http://bot.whatismyipaddress.com</code>
<code class="language-bash">curl http://ipinfo.io/ip</code>
這些範例示範了取得路由器公用 IP 的多種技術,提供程式設計 (C#) 和命令列解決方案。
以上是如何使用 C# 或命令列工具來取得路由器的公共 IP 位址?的詳細內容。更多資訊請關注PHP中文網其他相關文章!