网络 - 查看出口ip
子车轻罗 2023/6/18
# 国内出口查询
- 网站:ipw.cn/ (opens new window)、ip138.com/ (opens new window) 、 cip.cc/ (opens new window)、IPIP (opens new window)
lms@LMS:~$ curl cip.cc
IP : 14.xx.xx.xx4
地址 : 中国 广东 广州
运营商 : 电信
数据二 : 广东省广州市 | 电信
数据三 : 中国广东广州 | 电信
URL : http://www.cip.cc/14.xx.xx.xx4
lms@LMS:~$ curl -s myip.ipip.net
当前 IP:14.xx.xx.xx4 来自于:中国 广东 广州 电信
1
2
3
4
5
6
7
8
9
10
11
12
13
14
2
3
4
5
6
7
8
9
10
11
12
13
14
# 国外出口IP查询
- 国外 https://ipinfo.io
lms@LMS:~$ curl ipinfo.io
{
"ip": "103.xxxx.xxxx.97",
"city": "Guangzhou",
"region": "Guangdong",
"country": "CN",
"loc": "2x.xxx7,1xx.xxx0",
"org": "AS137995 Shuangyu Communications Technology Co., Limited",
"timezone": "Asia/Shanghai",
"readme": "https://ipinfo.io/missingauth"
}
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
- 国外 https://ifconfig.me/
lms@LMS:~$ curl ifconfig.me
103.xxxx.xxxx.97
1
2
3
2
3
- 国外:http://ifconfig.io/
lms@LMS:~$ curl ifconfig.io
103.xxxx.xxxx.97
1
2
3
2
3
- 国外:http://httpbin.org/ip
lms@LMS:~$ curl httpbin.org/ip
{
"origin": "103.xxxx.xxxx.97"
}
1
2
3
4
5
2
3
4
5
# 参考
- [1] [MinsonLee's Blog (opens new window)](https://minsonlee.github.io/2021/12/how-to-get-the-trusted-source-for-ip)