您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關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細節(jié) (挖掘機)
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 ; echowget http://observebox.com/ip -O - -q ; echo
bash 腳本示例:
#!/bin/bashPUBLIC_IP=`wget http://ipecho.net/plain -O - -q ; echo`echo $PUBLIC_IP
感謝各位的閱讀!關于“Linux下如何查看公有IP”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內容。