博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
几种在Linux下查询外网IP的办法
阅读量:5111 次
发布时间:2019-06-13

本文共 947 字,大约阅读时间需要 3 分钟。

原文地址:http://my.oschina.net/epstar/blog/513186

 

Curl 纯文本格式输出:

curl icanhazip.comcurl ifconfig.mecurl curlmyip.comcurl ip.appspot.comcurl ipinfo.io/ipcurl ipecho.net/plaincurl www.trackip.net/i

 

curl JSON格式输出:

curl ipinfo.io/jsoncurl ifconfig.me/all.jsoncurl www.trackip.net/ip?json (有点丑陋)

 

curl XML格式输出:

curl ifconfig.me/all.xml

 

curl 得到所有IP细节 (挖掘机)

1 curl ifconfig.me/all

 

使用 DYDNS (当你使用 DYDNS 服务时有用)

curl -s 'http://checkip.dyndns.org' | sed 's/.*Current IP Address: \([0-9\.]*\).*/\1/g'curl -s http://checkip.dyndns.org/ | grep -o "[[:digit:].]\+"

 

使用 Wget 代替 Curl

wget http://ipecho.net/plain -O - -q ; echowget http://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/bashPUBLIC_IP=`wget http://ipecho.net/plain -O - -q ; echo`echo $PUBLIC_IP

 

nmap

转载于:https://www.cnblogs.com/lfsblack/p/5501964.html

你可能感兴趣的文章
Unity之fragment shader中如何获得视口空间中的坐标
查看>>
万能的SQLHelper帮助类
查看>>
tmux的简单快捷键
查看>>
[Swift]LeetCode922.按奇偶排序数组 II | Sort Array By Parity II
查看>>
Html5 离线页面缓存
查看>>
《绿色·精简·性感·迷你版》易语言,小到不可想象
查看>>
Android打包key密码丢失找回
查看>>
VC6.0调试技巧(一)(转)
查看>>
类库与框架,强类型与弱类型的闲聊
查看>>
webView添加头视图
查看>>
php match_model的简单使用
查看>>
在NT中直接访问物理内存
查看>>
Intel HEX 文件格式
查看>>
SIP服务器性能测试工具SIPp使用指导(转)
查看>>
php_扑克类
查看>>
回调没用,加上iframe提交表单
查看>>
(安卓)一般安卓开始界面 Loding 跳转 实例 ---亲测!
查看>>
Mysql 索引优化 - 1
查看>>
LeetCode(3) || Median of Two Sorted Arrays
查看>>
大话文本检测经典模型:EAST
查看>>