时间:2015-08-24 11:27:15 作者:zhijie 来源:系统之家 1. 扫描二维码随时看资讯 2. 请使用手机浏览器访问: https://m.xitongzhijia.net/xtjc/20150824/56069.html 手机查看 评论 反馈
Linux系统中的IP包括了公有IP和私有IP,查看Linux系统IP大多数时候查到的都是私有IP,那么Linux终端怎么查看公有IP呢?一起来看一下介绍吧。
Curl 纯文本格式输出:
curl icanhazip.com
curl ifconfig.me
curl curlmyip.com
curl ip.appspot.com
curl ipinfo.io/ip
curl ipecho.net/plaincurl www.trackip.net/i
curl JSON格式输出:
curl ipinfo.io/json
curl ifconfig.me/all.json
curl www.trackip.net/ip?json (有点丑陋)
curl XML格式输出:
curl ifconfig.me/all.xml
curl 得到所有IP细节 (挖掘机)
curl ifconfig.me/all
使用 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条
评论就这些咯,让大家也知道你的独特见解
立即评论以上留言仅代表用户个人观点,不代表系统之家立场