微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

linux 查本机公网ip 网站接口 nmap工具

网站接口

# 国内某网站的接口,只返回IP
curl whatismyip.akamai.com

# 更多用法访问ifconfig.co
wget -qO - ifconfig.co
  
curl icanhazip.com
dig +short myip.opendns.com @resolver1.opendns.com
  
curl ident.me
curl v4.ident.me
curl v6.ident.me

#返回IP和地区
curl cip.cc
  
#需要翻x,只返回IP
curl ip.appspot.com
  
# 多网站获取ip接口shell脚本
wget https://raw.githubusercontent.com/rsp/scripts/master/externalip-benchmark
chmod a+x externalip-benchmark
./externalip-benchmark

 

nmap工具

nping是nmap的子命令、子工具

查询自己公网IP

nping --echo-client "public" echo.nmap.org --udp
 

SENT (1.9332s) UDP 192.168.1.106:53 > 45.33.32.156:40125 ttl=64 id=38352 iplen=28 
CAPT (2.0617s) UDP 221.218.209.62:53 > 45.33.32.156:40125 ttl=50 id=38352 iplen=28 
RCVD (2.1899s) ICMP [45.33.32.156 > 192.168.1.106 Port unreachable (type=3/code=3) ] IP [ttl=49 id=542 iplen=56 ]
SENT (2.9411s) UDP 192.168.1.106:53 > 45.33.32.156:40125 ttl=64 id=38352 iplen=28 
CAPT (3.0566s) UDP 221.218.209.62:53 > 45.33.32.156:40125 ttl=50 id=38352 iplen=28 
RCVD (3.1620s) ICMP [45.33.32.156 > 192.168.1.106 Port unreachable (type=3/code=3) ] IP [ttl=49 id=636 iplen=56 ]
SENT (3.9442s) UDP 192.168.1.106:53 > 45.33.32.156:40125 ttl=64 id=38352 iplen=28 
CAPT (4.0713s) UDP 221.218.209.62:53 > 45.33.32.156:40125 ttl=50 id=38352 iplen=28 
RCVD (4.1685s) ICMP [45.33.32.156 > 192.168.1.106 Port unreachable (type=3/code=3) ] IP [ttl=49 id=856 iplen=56 ]
SENT (4.9476s) UDP 192.168.1.106:53 > 45.33.32.156:40125 ttl=64 id=38352 iplen=28


221.218.209.62 就是我们的公网IP
 

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐