欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

命令行获取ip地址到文本_从命令行获取IP地址

程序员文章站 2022-06-03 10:10:47
...

命令行获取ip地址到文本

Over the past few years I've needed to look up my IP address a dozen times.  What's funny is that I don't recall why I needed it, I just did.  So what's the easiest way to get my IP address from the command line?

在过去的几年中,我需要多次查找我的IP地址。 有趣的是,我不记得为什么需要它,只是做了。 那么从命令行获取我的IP地址的最简单方法是什么?

To get your internal IP, you can do the following:

要获取内部IP,可以执行以下操作:


ipconfig getifaddr en0


I go through ipecho.net to get it:

我通过ipecho.net获得它:


curl ipecho.net/plain ; echo

#  >> 71.87.32.78


Why go through an external resource?  Your local address and your external address aren't the same, so using the external resource is the best way to tell what the world is seeing your IP address as.

为什么要通过外部资源? 您的本地地址和外部地址不相同,因此使用外部资源是最好的方式来告诉世界您的IP地址是什么。

翻译自: https://davidwalsh.name/get-ip-address

命令行获取ip地址到文本