Get public/external IP address?

前端 未结 26 2231
鱼传尺愫
鱼传尺愫 2020-11-22 14:32

I cant seem to get or find information on finding my routers public IP? Is this because it cant be done this way and would have to get it from a website?

26条回答
  •  余生分开走
    2020-11-22 14:52

    Using C#, With webclient its a short one.

    public static void Main(string[] args)
    {
        string externalip = new WebClient().DownloadString("http://icanhazip.com");            
        Console.WriteLine(externalip);
    }
    

    Command Line (works on both Linux and Windows)

    wget -qO- http://bot.whatismyipaddress.com
    

    OR

    curl http://ipinfo.io/ip
    

提交回复
热议问题