Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> Linux終端中獲取公有IP地址的方法

Linux終端中獲取公有IP地址的方法

日期:2017/2/7 14:23:58      編輯:Linux教程
 

公有IP即公有地址,是由 InterNIC 分配並由基於類的網絡 ID 或基於 CIDR 的地址塊構成(被稱為 CIDR 塊),並保證了在全球互聯網中的唯一性。當公有地址被分配時,其路由將會被記錄到互聯網中的路由器中,這樣訪問公有地址的流量就能順利到達。訪問目標公有地址的流量可經由互聯網抵達。比如,當一個 CIDR 塊被以網絡 ID 和子網掩碼的形式分配給一個組織時,對應的 [網絡 ID,子網掩碼] 也會同時作為路由儲存在互聯網中的路由器中。目標是 CIDR 塊中的地址的 IP 封包會被導向對應的位置。

Linux終端中獲取公有IP地址的方法

在本文中我將會介紹在幾種在 Linux 終端中查看你的公有 IP 地址的方法。這對普通用戶來說並無意義,但 Linux 服務器(無GUI或者作為只能使用基本工具的用戶登錄時)會很有用。無論如何,從 Linux 終端中獲取公有 IP 在各種方面都很意義,說不定某一天就能用得著。

以下是我們主要使用的兩個命令,curl 和 wget。你可以換著用。

Curl 純文本格式輸出:

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

curl JSON格式輸出:

curl ipinfo.io/json

curl ifconfig.me/all.json

curl www.trackip.net/ip?json (有點丑陋)

curl XML格式輸出:

curl ifconfig.me/all.xml

curl 得到所有IP細節 (挖掘機)

curl ifconfig.me/all

使用 DYDNS (當你使用 DYDNS 服務時有用)

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

curl -s http://checkip.dyndns.org/ | grep -o "[[:digit:].]\+"

使用 Wget 代替 Curl

wget http://ipecho.net/plain -O - -q ; echo

wget http://observebox.com/ip -O - -q ; echo

使用 host 和 dig 命令

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

host -t a dartsclink.com | sed 's/.*has address //'

dig +short myip.opendns.com @resolver1.opendns.com

bash 腳本示例:

#!/bin/bashPUBLIC_IP=`wget http://ipecho.net/plain -O - -q ; echo`

echo $PUBLIC_IP

簡單易用。

Copyright © Windows教程網 All Rights Reserved