linux怎么查看自己的公网ip

有多种方法可以查看Linux系统的公网IP地址,以下是其中一些常用的方法:

使用curl命令查询公网IP地址:

curl ifconfig.me

使用dig命令查询公网IP地址:

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

使用wget命令查询公网IP地址:

wget -qO- icanhazip.com

使用nslookup命令查询公网IP地址:

nslookup myip.opendns.com resolver1.opendns.com

使用ip命令查询公网IP地址:

ip addr show eth0 | grep inet | awk '{print $2}' | cut -d/ -f1

以上方法中,eth0是网络接口的名称,你可以根据自己的网络配置修改为实际使用的网络接口名称。

阅读剩余
THE END