找到路由器的公用 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中文網其他相關文章!