linux

linux怎么查看自己的公网ip

小亿
576
2024-04-08 14:01:37
栏目: 智能运维

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

  1. 使用curl命令查询公网IP地址:
curl ifconfig.me
  1. 使用dig命令查询公网IP地址:
dig +short myip.opendns.com @resolver1.opendns.com
  1. 使用wget命令查询公网IP地址:
wget -qO- icanhazip.com
  1. 使用nslookup命令查询公网IP地址:
nslookup myip.opendns.com resolver1.opendns.com
  1. 使用ip命令查询公网IP地址:
ip addr show eth0 | grep inet | awk '{print $2}' | cut -d/ -f1

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

0
看了该问题的人还看了