在Linux系统中,可以通过多种方法来查看外网IP地址。
curl ifconfig.me
该命令将向ifconfig.me发送请求,并返回您的外网IP地址。
dig +short myip.opendns.com @resolver1.opendns.com
该命令将查询resolver1.opendns.com以获取您的外网IP地址。
wget -qO- http://ipecho.net/plain ; echo
该命令将向ipecho.net发送请求,并返回您的外网IP地址。
ip addr show eth0 | grep inet | awk '{ print $2; }' | sed 's/\/.*$//'
其中,eth0是您的网络接口名称。如果您使用的是无线连接,可能会是wlan0或类似的接口名称。
这些方法中的任何一种都可以用来查看Linux系统上的外网IP地址。