linux下查看外网出口IP

一、

[[email protected] ~]# curl ifconfig.me
124.193.193.25

[[email protected] ~]# curl ifconfig.me/all
ip_addr: 124.193.193.25
remote_host:
user_agent: curl/7.19.7 (x86_64-redhat-linux-gnu) libcurl/7.19.7 NSS/3.16.1 Basic ECC zlib/1.2.3 libidn/1.18 libssh2/1.4.2
port: 46231
lang:
connection:
keep_alive:
encoding:
mime: */*
charset:
via:
forwarded:

二、

[[email protected] ~]# curl ipinfo.io
{
  "ip": "114.243.166.107",
  "hostname": "No Hostname",
  "city": "Beijing",
  "region": "Beijing",
  "country": "CN",
  "loc": "39.9289,116.3883",
  "org": "AS17816 China Unicom  IP network China169 Guangdong province"
}

时间: 2024-10-07 09:50:20

linux下查看外网出口IP的相关文章

查看外网出口IP && Traceroute

一.CentOS 查看外网出口IP 1---------------- # curl ifconfig.me 2----------------# curl icanhazip.com 二.Traceroute最简单的基本用法是:traceroute hostname Traceroute程序的设计是利用ICMP及IP header的TTL(Time To Live)栏位(field).首先,traceroute送出一个TTL是1的IP datagram(其实,每次送出的为3个40字节的包,包括

网站维护:Linux服务器查看外网访问IP指令汇总

一.前言服务器有的时候会被人搞崩,cpu莫名飙升,为了查看哪些IP访问过于频繁,就可以使用netstat.awk等指令进行统计查看. 二.指令对一些常用的指令总结如下: 1.常用指令对连接的IP按连接数量进行排序: Shellnetstat -ntu | awk '{print $5}' | cut -d: -f1 | sort | uniq -c | sort -n1netstat -ntu | awk '{print $5}' | cut -d: -f1 | sort | uniq -c |

linux 下查看外网ip

1. curl ipinfo.io ~/codes/qt_codes/qt-5.4.1-build$ curl ipinfo.io{  "ip": "114.241.210.22",  "hostname": "No Hostname",  "city": "Beijing",  "region": "Beijing Shi",  "co

几种在Linux下查询外网IP的办法。

几种在Linux下查询外网IP的办法. Curl 纯文本格式输出: curl icanhazip.com curl ifconfig.me curl curlmyip.com curl ip.appspot.com curl ipinfo.io/ip curl ipecho.net/plain curl www.trackip.net/i curl JSON格式输出: curl ipinfo.io/json curl ifconfig.me/all.json curl www.trackip.n

java设置Linux外网出口ip

最近爬虫项目中被封,服务器上绑定了多个ip,就想着怎样才能把多个ip都利用起来,想过设置成代理服务器的想法,但是由于某些原因放弃,所以采用动态改变服务器出口ip的方式将多个ip利用起来. 首先获取服务器绑定的ip public static void getLocalIps(){ try {         for (Enumeration<NetworkInterface> en = NetworkInterface.getNetworkInterfaces(); en.hasMoreEle

linux下获取外网IP

使用阿里云或者有多个网卡IP的机器需要取外网IP时,可以用下面这种 wget -qO - ifconfig.co 更多方法参考:https://yq.aliyun.com/ziliao/105999

几种在Linux下查询外网IP的办法(转)

Curl 纯文本格式输出: curl icanhazip.com curl ifconfig.me curl curlmyip.com curl ip.appspot.com curl ipinfo.io/ip curl ipecho.net/plain curl www.trackip.net/i curl JSON格式输出: curl ipinfo.io/json curl ifconfig.me/all.json curl www.trackip.net/ip?json (有点丑陋) cu

几种在Linux下查询外网IP的办法

原文地址:http://my.oschina.net/epstar/blog/513186 Curl 纯文本格式输出: curl icanhazip.com curl ifconfig.me curl curlmyip.com curl ip.appspot.com curl ipinfo.io/ip curl ipecho.net/plain curl www.trackip.net/i curl JSON格式输出: curl ipinfo.io/json curl ifconfig.me/a

linux系统查看外网IP

很简单的一个命令: [[email protected] /]# curl ifconfig.me 120.132.xxx.xxx 就完成了,很方便.