IP 地址查询

您的 IP 地址: 216.73.217.114
网络类型:     IPv4
访问域名:     ip4.qwo.moe
------------------------------------------------------------
使用说明
------------------------------------------------------------
1. 浏览器访问本页时, 显示 IP 与本文说明;
   使用 curl 等命令行工具访问时, 只返回纯文本 IP:

   curl -s https://ip.qwo.moe     -> 216.73.217.114
   curl -s https://ip4.qwo.moe    -> 仅 IPv4
   curl -s https://ip6.qwo.moe    -> 仅 IPv6

2. 强制输出格式 (?text / ?json 对任何客户端均生效):

   curl -s https://ip.qwo.moe/?text  -> 纯文本 IP
   curl -s https://ip.qwo.moe/?json  -> {"ip":"216.73.217.114","type":"IPv4"}

3. 在脚本中直接使用:

   IP=$(curl -s https://ip.qwo.moe/?text)
   echo $IP

4. 域名说明:

   ip.qwo.moe    双栈 (IPv4 / IPv6)
   ip4.qwo.moe   仅 IPv4
   ip6.qwo.moe   仅 IPv6

5. 强制协议 (curl):

   curl -4 -s https://ip.qwo.moe   # 强制走 IPv4
   curl -6 -s https://ip.qwo.moe   # 强制走 IPv6