在Linux系统中,有多种方法可以查看外网IP地址。下面将介绍5种常用的方法:文章来源地址https://www.toymoban.com/news/detail-760962.html
方法1:使用curl命令
curl ifconfig.me
方法2:使用wget命令
wget -q0- ifconfig.me
方法3:使用dig命令
dig +short myip.opendns.com @resolver1.opendns.com
方法4:使用ip命令
ip addr show eth0 | grep inet | awk '{ print $2; }' | sed 's/\/.*$//'
方法5:使用ifconfig命令
ifconfig eth0 | grep "inet " | awk '{print $2}'
文章来源:https://www.toymoban.com/news/detail-760962.html
到了这里,关于linux查看外网ip的5种方法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!