2015-08-22 09:13:54 +08:00
如何在 Linux 终端中获取公有 IP
2015-08-13 10:22:14 +08:00
================================================================================
![](http://www.blackmoreops.com/wp-content/uploads/2015/06/256x256xHow-to-get-Public-IP-from-Linux-Terminal-blackMORE-Ops.png.pagespeed.ic.GKEAEd4UNr.png)
2015-08-22 09:13:54 +08:00
公有地址由InterNIC分配并由基于类的网络 ID 或基于 CIDR 地址块构成(被称为 CIDR 块)并保证了在全球英特网中的唯一性。当公有地址被分配时,路径将会被记录到互联网中的路由器中,这样访问公有地址的流量就能顺利到达。访问目标公有地址的流量可通过互联网获取。比如,当一个一个 CIDR 块被以网络 ID 和子网掩码的形式分配给一个组织时,对应的 [网络 ID,子网掩码] 也会同时作为路径储存在英特网中的路由器中。访问 CIDR 块中的地址的 IP 封包会被导向对应的位置。在本文中我将会介绍在几种在 Linux 终端中查看你的公有 IP 地址的方法。这对普通用户来说并无意义,但 Linux 服务器(无GUI或者作为只能使用基本工具的用户登录时)会很有用。无论如何,从 Linux 终端中获取公有 IP 在各种方面都很意义,说不定某一天就能用得着。
2015-08-13 10:22:14 +08:00
2015-08-22 09:13:54 +08:00
以下是我们主要使用的两个命令, curl 和 wget。你可以换着用。
### Curl 纯文本格式输出: ###
2015-08-13 10:22:14 +08:00
curl icanhazip.com
curl ifconfig.me
curl curlmyip.com
curl ip.appspot.com
curl ipinfo.io/ip
curl ipecho.net/plain
curl www.trackip.net/i
2015-08-22 09:13:54 +08:00
### curl JSON格式输出: ###
2015-08-13 10:22:14 +08:00
curl ipinfo.io/json
curl ifconfig.me/all.json
curl www.trackip.net/ip?json (bit ugly)
2015-08-22 09:13:54 +08:00
### curl XML格式输出: ###
2015-08-13 10:22:14 +08:00
curl ifconfig.me/all.xml
2015-08-22 09:13:54 +08:00
### curl 所有IP细节 ###
2015-08-13 10:22:14 +08:00
curl ifconfig.me/all
2015-08-22 09:13:54 +08:00
### 使用 DYDNS (当你使用 DYDNS 服务时有用)Using DYNDNS (Useful when you’ re using DYNDNS service) ###
2015-08-13 10:22:14 +08:00
curl -s 'http://checkip.dyndns.org' | sed 's/.*Current IP Address: \([0-9\.]*\).*/\1/g'
curl -s http://checkip.dyndns.org/ | grep -o "[[:digit:].]\+"
2015-08-22 09:13:54 +08:00
### 使用 Wget 代替 Curl ###
2015-08-13 10:22:14 +08:00
wget http://ipecho.net/plain -O - -q ; echo
wget http://observebox.com/ip -O - -q ; echo
2015-08-22 09:13:54 +08:00
### 使用 host 和 dig 命令 ###
2015-08-13 10:22:14 +08:00
2015-08-22 09:13:54 +08:00
在可用时,你可以直接使用 host 和 dig 命令。
2015-08-13 10:22:14 +08:00
host -t a dartsclink.com | sed 's/.*has address //'
dig +short myip.opendns.com @resolver1 .opendns.com
2015-08-22 09:13:54 +08:00
### bash 脚本示例: ###
2015-08-13 10:22:14 +08:00
#!/bin/bash
PUBLIC_IP=`wget http://ipecho.net/plain -O - -q ; echo`
echo $PUBLIC_IP
2015-08-22 09:13:54 +08:00
已经由不少选项了。
2015-08-13 10:22:14 +08:00
2015-08-22 09:13:54 +08:00
我实际上写了一个用于记录每日我的路由器中所有 IP 变化并保存到一个文件的脚本。我在搜索过程中找到了这些很好用的命令。希望某天它能帮到其他人。
2015-08-13 10:22:14 +08:00
--------------------------------------------------------------------------------
via: http://www.blackmoreops.com/2015/06/14/how-to-get-public-ip-from-linux-terminal/
2015-08-22 09:13:54 +08:00
译者:[KevinSJ](https://github.com/KevinSJ)
2015-08-13 10:22:14 +08:00
校对:[校对者ID](https://github.com/校对者ID)
2015-08-14 00:45:11 +08:00
本文由 [LCTT ](https://github.com/LCTT/TranslateProject ) 原创翻译,[Linux中国](https://linux.cn/) 荣誉推出