溫馨提示×

linux怎么查看外網(wǎng)ip地址

小億
361
2024-02-05 12:59:29

在Linux系統(tǒng)中,可以通過多種方法來查看外網(wǎng)IP地址。

  1. 使用curl命令:在終端中輸入以下命令,并按下回車鍵。
curl ifconfig.me

該命令將向ifconfig.me發(fā)送請求,并返回您的外網(wǎng)IP地址。

  1. 使用dig命令:在終端中輸入以下命令,并按下回車鍵。
dig +short myip.opendns.com @resolver1.opendns.com

該命令將查詢r(jià)esolver1.opendns.com以獲取您的外網(wǎng)IP地址。

  1. 使用wget命令:在終端中輸入以下命令,并按下回車鍵。
wget -qO- http://ipecho.net/plain ; echo

該命令將向ipecho.net發(fā)送請求,并返回您的外網(wǎng)IP地址。

  1. 使用ip命令:在終端中輸入以下命令,并按下回車鍵。
ip addr show eth0 | grep inet | awk '{ print $2; }' | sed 's/\/.*$//'

其中,eth0是您的網(wǎng)絡(luò)接口名稱。如果您使用的是無線連接,可能會是wlan0或類似的接口名稱。

這些方法中的任何一種都可以用來查看Linux系統(tǒng)上的外網(wǎng)IP地址。

0