内网IP查询

命令行中使用ifconfig查看的是内网的ip,常见于192.168.xxx.xxx

公网 IP 查询

查询公网IP可以在命令行中使用:

1
curl ifconfig.me  # 125.119.220.22

或者

1
curl ipinfo.io/json

示例

1
2
3
4
5
6
7
8
9
10
11
{
"ip": "125.119.220.220",
"city": "Hangzhou",
"region": "Zhejiang",
"country": "CN",
"loc": "30.2936,120.1614",
"org": "AS4134 CHINANET-BACKBONE",
"postal": "310000",
"timezone": "Asia/Shanghai",
"readme": "https://ipinfo.io/missingauth"
}