Curl 纯文本(html)格式输出:

  1. curl ip.gaox.site
  2. curl icanhazip.com
  3. curl ifconfig.me
  4. curl curlmyip.com
  5. curl ip.appspot.com
  6. curl ipinfo.io/ip
  7. curl ipecho.net/plain
  8. curl www.trackip.net/i

curl JSON格式输出:

  1. curl ip.gaox.site/json
  2. curl ipinfo.io/json
  3. curl ifconfig.me/all.json
  4. curl www.trackip.net/ip?json (有点丑陋)

curl XML格式输出:

  1. curl ip.gaox.site/xml
  2. curl ifconfig.me/all.xml

curl 得到所有IP细节 (挖掘机)

  1. curl ifconfig.me/all

使用 DYDNS (当你使用 DYDNS 服务时有用)

  1. curl -s 'http://checkip.dyndns.org' | sed 's/.*Current IP Address: \([0-9\.]*\).*/\1/g'
  2. curl -s http://checkip.dyndns.org/ | grep -o "[[:digit:].]\+"

使用 Wget 代替 Curl

  1. wget http://ipecho.net/plain -O - -q ; echo
  2. wget http://observebox.com/ip -O - -q ; echo

使用 host 和 dig 命令

如果有的话,你也可以直接使用 host 和 dig 命令。

  1. host -t a dartsclink.com | sed 's/.*has address //'
  2. dig +short myip.opendns.com @resolver1.opendns.com

bash 脚本示例:

  1. #!/bin/bash
  2. PUBLIC_IP=`wget http://ipecho.net/plain -O - -q ; echo`
  3. echo $PUBLIC_IP