时间:2015-08-24 11:27:15 作者:zhijie 来源:系统之家 1. 扫描二维码随时看资讯 2. 请使用手机浏览器访问: https://m.xitongzhijia.net/xtjc/20150824/56069.html 手机查看 评论 反馈
使用 DYDNS (当你使用 DYDNS 服务时有用)
curl -s ‘https://checkip.dyndns.org’ | sed ‘s/.*Current IP Address: \([0-9\。]*\).*/\1/g’
curl -s https://checkip.dyndns.org/ | grep -o “[[:digit:]。]\+”
使用 Wget 代替 Curl
wget https://ipecho.net/plain -O - -q ; echo
wget https://observebox.com/ip -O - -q ; echo
使用 host 和 dig 命令
如果有的话,你也可以直接使用 host 和 dig 命令。
host -t a dartsclink.com | sed ‘s/.*has address //’
dig +short myip.opendns.com @resolver1.opendns.com
bash 脚本示例:
#!/bin/bash
PUBLIC_IP=`wget https://ipecho.net/plain -O - -q ; echo`
echo $PUBLIC_IP
以上就是Linux终端查看公有IP的方法的全部内容了,得知Linux公有IP对于使用服务器的用户来所有很大的意义,因为服务器下的IP就是公有IP。
发表评论
共0条
评论就这些咯,让大家也知道你的独特见解
立即评论以上留言仅代表用户个人观点,不代表系统之家立场