日韩无码专区无码一级三级片|91人人爱网站中日韩无码电影|厨房大战丰满熟妇|AV高清无码在线免费观看|另类AV日韩少妇熟女|中文日本大黄一级黄色片|色情在线视频免费|亚洲成人特黄a片|黄片wwwav色图欧美|欧亚乱色一区二区三区

RELATEED CONSULTING
相關(guān)咨詢
選擇下列產(chǎn)品馬上在線溝通
服務(wù)時(shí)間:8:30-17:00
你可能遇到了下面的問題
關(guān)閉右側(cè)工具欄

新聞中心

這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
Linux下查看公有IP具體方法

Linux系統(tǒng)中的IP包括了公有IP和私有IP,查看Linux系統(tǒng)IP大多數(shù)時(shí)候查到的都是私有IP,有時(shí)在解決網(wǎng)絡(luò)問題時(shí)需要查看本機(jī)的公有IP,下面為大家分享一下Linux下查看公有IP具體方法。

img

以下是我們主要使用的兩個命令,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細(xì)節(jié) (挖掘機(jī))

curl ifconfig.me/all

使用 DYDNS (當(dāng)你使用 DYDNS 服務(wù)時(shí)有用)

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

bash 腳本示例:

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

分享名稱:Linux下查看公有IP具體方法
轉(zhuǎn)載來源:http://www.5511xx.com/article/cccisjg.html