前言

不管是在家里还是办公室,或者是公司的主机,很多时候都是在内网中,也就是说很多都是通过NAT上网的,有时候需要查询下出口的公网IP,如果有浏览器可以用百度或者Google搜索ip这个关键词得到公网IP,那要是在命令行下呢?下面给大家分享下自己整理的几种方案

Extract your external IP using command line tools

更新历史

2018年11月20日 - 初稿

阅读原文 - https://wsgzao.github.io/post/myip/

扩展阅读

https://support.opendns.com/hc/en-us/search?utf8=%E2%9C%93&query=myip.opendns.com


dig

目前广受中外网友好评简单快速的查询公网IP方案,OpenDNS支持IPv4和IPv6

1
2
3
4
5
6
# IPv4
dig -4 +short myip.opendns.com. @resolver1.opendns.com

# IPv6
dig -6 +short myip.opendns.com. @resolver1.opendns.com

curl

1
2
3
4
5
6
7
curl whatismyip.akamai.com
curl ifconfig.me
curl ipecho.net/plain
curl icanhazip.com



JSON

1
2
3
curl ipinfo.io
curl https://api.myip.com

文章目录
  1. 1. 前言
  2. 2. 更新历史
  3. 3. dig
  4. 4. curl
  5. 5. JSON