Skip to content

Xray-android-arm64-v8a v25.5.16与Xray-linux-arm64-v8a v25.5.16在手机上连网问题,前者不通,后者没问题。 #4772

@wansenlyt

Description

@wansenlyt

完整性要求

  • 我保证阅读了文档,了解所有我编写的配置文件项的含义,而不是大量堆砌看似有用的选项或默认值。
  • 我提供了完整的配置文件和日志,而不是出于自己的判断只给出截取的部分。
  • 我搜索了 issues, 没有发现已提出的类似问题。
  • 问题在 Release 最新的版本上可以成功复现

描述

我之前反馈过这个问题,从v25.4.30版就存在,当时说没有提供完整的配置和日志,这次更新到了v25.5.16和最新测试版(https://github.com/XTLS/Xray-core/actions/runs/15265062423)也还是存在这样的问题:手机平台是android16X64 BP31.250502.008,服务端、客户端同样的配置,手机上用Xray-android-arm64-v8a时,测试连网,不能连通;使用Xray-linux-arm64-v8a时,测试连网,可连通。

重现方式

N/A

客户端配置


xray.json配置:
{
"dns": {},
"inbounds": [],
"log": {},
"outbounds": [],
"policy": {},
"routing": {}
}

dns.json配置:
{
"dns": {
"hosts": {
"www.google.cn": "www.google.com",
"googleapis.cn": "googleapis.com"
},
"servers": [
{
"address": "127.0.0.1",
"port": 1053
}
],
"tag": "dns_outbound"
}
}

inbounds.json配置:
{
"inbounds": [
{
"port": 1080, // 监听端口
"listen": "127.0.0.1",
"protocol": "socks", // 入口协议为 SOCKS 5
"settings": {
"udp": true //是否开启 UDP 协议的支持。默认值为 false。 true | false
},
"sniffing": {
"enabled": true,
"destOverride": [
"http",
"tls",
"quic"
],
"routeOnly": true
},
"tag": "socks-in"
}
]
}

log.json配置:
{
"log": {
"access": "/dev/fscklogs/access.log",
"error": "/dev/fscklogs/error.log",
"loglevel": "warning"
}
}

outbounds.json配置:
{
"outbounds": [
{
"protocol": "vless",
"tag": "xhttp-reality",
"settings": {
"vnext": [
{
"address": "xxxxxxxxxxxxxx.com",
"port": 443,
"users": [
{
"id": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"level": 0,
// "flow": "xtls-rprx-vision",
"encryption": "none"
}
]
}
]
},
"streamSettings": {
"network": "xhttp",
"xhttpSettings": {
"mode": "stream-up",
"path": "/xxxxxxxxxxxxxx",
"host": "xxxxxxxxxxxxxx.com",
"scMaxEachPostBytes": "500000-1000000",
"scMaxConcurrentPosts": "30-100",
"scMinPostsIntervalMs": "30-50", // 仅客户端
"xPaddingBytes": "50-1000",
"xmux": { // 仅客户端
"maxConcurrency": 0,
"maxConnections": 128,
"cMaxReuseTimes": "16-64",
"cMaxLifetimeMs": 0
},
"downloadSettings": {
"address": "xxxxxxxxxxxxxx.com",
"port": 443,
"network": "xhttp",
"xhttpSettings": {
"mode": "stream-up",
"path": "/xxxxxxxxxxxxxx",
"host": "xxxxxxxxxxxxxx.com",
"scMaxEachPostBytes": "500000-1000000",
"scMaxConcurrentPosts": "30-100",
"scMinPostsIntervalMs": "30-50", // 仅客户端
"xPaddingBytes": "50-1000",
"xmux": { // 仅客户端
"maxConcurrency": 0,
"maxConnections": 128,
"cMaxReuseTimes": "16-64",
"cMaxLifetimeMs": 0
}
},
"security": "reality",
"realitySettings": {
"show": false, // 选填,若为 true,输出调试信息
"serverName": "xxxxxxxxxxxxxx.com", // 服务端 serverNames 之一
"fingerprint": "chrome", // 必填,使用 uTLS 库模拟客户端 TLS 指纹
"shortId": "xxxxxxxxxxxxxxxxx", // 服务端 shortIds 之一
"publicKey": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", // 服务端私钥对应的公钥
"spiderX": "/" // 爬虫初始路径与参数,建议每个客户端不同
}
}
},
"security": "reality",
"realitySettings": {
"show": false, // 选填,若为 true,输出调试信息
"serverName": "xxxxxxxxxxxxxx.com", // 服务端 serverNames 之一
"fingerprint": "chrome", // 必填,使用 uTLS 库模拟客户端 TLS 指纹
"shortId": "xxxxxxxxxxxxxxxxxxx", // 服务端 shortIds 之一
"publicKey": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", // 服务端私钥对应的公钥
"spiderX": "/" // 爬虫初始路径与参数,建议每个客户端不同
},
"sockopt": {
"mark": 255,
"tcpMptcp": true,
"tcpNoDelay": true,
"tcpMaxSeg": 1440,
"tcpFastOpen": 0,
"tproxy": "off",
"domainStrategy": "AsIs",
"tcpKeepAliveInterval": 15,
"tcpKeepAliveIdle": 10
}
}
},
{
"protocol": "blackhole",
"settings": {
"response": {
"type": "http" // "http" | "none":为"none"(默认值)时,直接关闭连接;为"http"时,会发回一个简单的 HTTP 403 数据包,然后关闭连接。
}
},
"tag": "adblock"
},
{
"protocol": "freedom", // 默认直连,只有路由匹配的域名或IP才转发
"settings": {
"fragment": {
"packets": "tlshello",
"length": "50-200",
"interval": "10-200" // 单位ms
},
"noises":[
{
"type":"rand",
"packet":"50-100",
"delay":"50-500"
}
]
},
"streamSettings": {
"sockopt": {
"mark": 255,
"tcpMptcp": true,
"tcpNoDelay": true
}
},
"tag": "direct"
}
]
}

policy.json配置:
{
"policy": {
"levels": {
"0": {
"handshake": 15, // 在入站代理处理一个新连接时,在握手阶段如果使用的时间超过这个时间,则中断该连接。
"connIdle": 300, // 处理一个连接时,如果在 connIdle 时间内,没有任何数据被传输(包括上行和下行数据),则中断该连接。
"uplinkOnly": 0, // 当连接下行线路关闭后的时间限制。
"downlinkOnly": 0, // 当连接上行线路关闭后的时间限制。
"bufferSize": 512, // 每个连接的内部缓存大小。单位为 kB。
"statsUserUplink": false, // 当值为true时,开启当前等级的所有用户的上行流量统计。
"statsUserDownlink": false // 当值为true时,开启当前等级的所有用户的下行流量统计。
}
},
"system": {
"statsInboundUplink": false, // 当值为true时,开启所有入站代理的上行流量统计。
"statsInboundDownlink": false // 当值为true时,开启所有入站代理的下行流量统计。
}
}
}

routing.json配置:
{
"routing": {
"domainStrategy": "AsIs", // "AsIs": 只使用域名进行路由选择。默认值;"IPIfNonMatch": 当域名没有匹配任何规则时,将域名解析成 IP(A 记录)再次进行匹配;
"domainMatcher": "hybrid",
"rules": [
{
"type": "field",
"domain": [ // 要屏蔽的域名
"ext:h2y.dat:ad"
],
"outboundTag": "adblock"
},
{
"type": "field",
"domain": [ // DNS域名代理
"full:dns.google",
"full:dns.google.com"
],
"outboundTag": "xhttp-reality"
},
{
"type": "field",
"ip": [ // DNS-IP代理
"8.8.8.8",
"8.8.4.4",
"2001:4860:4860::8888",
"2001:4860:4860::8844"
],
"outboundTag": "xhttp-reality"
},
{
"type": "field",
"inboundTag": [ // dokodemo-door
"http-in"
],
"outboundTag": "xhttp-reality"
},
{
"type": "field",
"domain": [ // 要代理的域名
"ext:h2y.dat:gfw"
],
"outboundTag": "xhttp-reality"
},
{
"type": "field",
"port": "8000",// 要直连的端口
"network": "tcp,udp",
"outboundTag": "direct"
},
{
"type": "field",
"domain": ["geosite:cn"],// CN直连的域名
"outboundTag": "direct"
},
{
"type": "field",
"ip": [ // CN直连的IP
"geoip:private",
"geoip:cn"
],
"outboundTag": "direct"
}
]
}
}

服务端配置


{
  "log": {
    "access": "/var/log/xray/access.log",
    "error": "/var/log/xray/error.log",
    "loglevel": "warning"
  },
  "inbounds": [
    {
    "port": 443,
    "protocol": "vless",
    "settings": {
      "clients": [
        {
          "id": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
          // "flow": "xtls-rprx-vision",
          "level": 0
          }
        ],
      "decryption": "none",
      "fallbacks": [
        {
          "dest": "5678",
          "xver": 1
          }
        ]
      },
    "streamSettings": {
      "network": "xhttp",
      "xhttpSettings": {
        "path": "/xxxxxxxxxxxxx",
        "host": "xxxxxxxxxxxxx.com",
        "scMaxEachPostBytes": 1000000,
        "scMaxConcurrentPosts": 100,
        "scStreamUpServerSecs": "20-80", // 服务端每隔这段时间就会发xPaddingBytes个字节以保活
        "noSSEHeader": false, // 仅服务端,不发送 Content-Type: text/event-stream 响应头
        "xPaddingBytes": "50-1000"
        },
      "security": "reality",
      "realitySettings": {
        "show": false, // 选填,若为true,输出调试信息
        "target": "5678", // 服务端配置, 转发给自己选定的目标网站。目标网站使用别人的一般为 xx.yy:443。目标网站最低标准:国外网站,支持TLSv1.3、X25519与H2,域名非跳转用(主域名可能被用于跳转到www)
        "xver": 1, // 选填,默认关闭 PROXY protocol 发送。
        "serverNames": [ // 必填,客户端可用的 serverName 列表,暂不支持 * 通配符。
          "xxxxxxxxxxxxx.com",
          "www.xxxxxxxxxxxxx.com" // Chrome-输入"dest"的网址-F12-安全-F5-主要来源(安全),填证书SAN的值
          ],
        "privateKey": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", // 执行/usr/local/bin/xray x25519生成,填"Privatekey"的值
        "minClientVer": "24.11.11", // 选填,客户端Xray最低版本,格式为x.y.z
        "maxTimeDiff": 180000, // 选填,允许的最大时间差,单位为毫秒
        "shortIds": [// 必填,客户端可用的shortId列表,可用于区分不同的客户端
          "xxxxxxxxxxxxxxxx",
          "xxxxxxxxxxxxxxxx",
          "xxxxxxxxxxxxxxxx" // 0到f,长度为2的倍数,长度上限为16,可留空,或执行/bin/openssl rand -hex 8生成
          ]
        },
      "sockopt": {
        "tcpMaxSeg": 1440,
        "tcpFastOpen": true,
        "tproxy": "off",
        "tcpKeepAliveInterval": 15,
        "tcpKeepAliveIdle": 10
        }
      },
    "sniffing": {
      "enabled": true,
      "destOverride": [
        "http",
        "tls",
        "quic"
        ],
      "routeOnly": true
      },
    "tag": "xhttp-reality"
    }
  ],
  "outbounds": [
    {
    "protocol": "socks",
    "settings": {
      "servers": [
        {
          "address": "127.0.0.1",
          "port": 9050
          }
        ]
      },
    "tag": "out-tor"
    },
    {
    "protocol": "freedom", // 默认直连,只有路由匹配的域名或IP才转发
    "settings": {},
    "tag": "direct"
    },
    {
    "protocol": "blackhole",
    "settings": {},
    "tag": "adblock"
    }
  ],
  "dns": {
    "hosts": {
      "captive.v2ex.co": "23.251.125.131",
      "captive.v2ex.co": "23.251.126.131"
    },
    "servers": [
      "8.8.8.8",
      "8.8.4.4"
    ]
  },
  "policy": {
    "levels": {
      "0": { // 单位为秒。
        "handshake": 15, // 在入站代理处理一个新连接时,在握手阶段如果使用的时间超过这个时间,则中断该连接。
        "connIdle": 300, // 处理一个连接时,如果在 connIdle 时间内,没有任何数据被传输(包括上行和下行数据),则中断该连接。
        "uplinkOnly": 0, // 当连接下行线路关闭后的时间限制。
        "downlinkOnly": 0, // 当连接上行线路关闭后的时间限制。
        "bufferSize": 512 // 每个连接的内部缓存大小。单位为 kB。
      }
    }
  },
  "routing": {
    "domainStrategy": "AsIs", // "AsIs": 只使用域名进行路由选择。默认值;"IPIfNonMatch": 当域名没有匹配任何规则时,将域名解析成 IP(A 记录)再次进行匹配;
    "domainMatcher": "hybrid",
    "rules": [
      {
      "type": "field",
      "domain": [
        "geosite:cn"
        ],
      "outboundTag": "adblock"
      },
      {
      "type": "field",
      "ip": [
        "geoip:cn"
        ],
      "outboundTag": "adblock"
      },
      {
      "type": "field",
      "domain": [
        "regexp:\\.onion$"
        ],
      "outboundTag": "out-tor"
      }
    ]
  }
}

客户端日志


以下是Xray-android-arm64-v8a端运行时的日志:
2025/05/29 07:29:22.881677 from tcp:127.0.0.1:42356 accepted tcp:androidwearcloudsync-pa.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:23.386973 from tcp:127.0.0.1:42362 accepted tcp:play-fe.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:23.422664 from tcp:127.0.0.1:42370 accepted tcp:play-fe.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:23.959568 from tcp:127.0.0.1:42372 accepted tcp:androidwearcloudsync-pa.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:24.089661 from tcp:127.0.0.1:42384 accepted tcp:androidwearcloudsync-pa.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:24.130870 from tcp:127.0.0.1:42396 accepted tcp:androidwearcloudsync-pa.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:25.659045 from tcp:127.0.0.1:42406 accepted tcp:android.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:25.713632 from tcp:127.0.0.1:42414 accepted tcp:android.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:25.901372 from tcp:127.0.0.1:42422 accepted tcp:android.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:25.948863 from tcp:127.0.0.1:42430 accepted tcp:android.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:26.202181 from tcp:127.0.0.1:42432 accepted tcp:android.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:26.299819 from tcp:127.0.0.1:42436 accepted tcp:android.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:27.338060 from tcp:127.0.0.1:42444 accepted tcp:play-fe.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:27.411031 from tcp:127.0.0.1:42456 accepted tcp:play-fe.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:27.532361 from tcp:127.0.0.1:42470 accepted tcp:play-fe.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:27.562909 from tcp:127.0.0.1:42472 accepted tcp:play-fe.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:27.585399 from tcp:127.0.0.1:42486 accepted tcp:play-fe.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:27.616895 from tcp:127.0.0.1:42490 accepted tcp:play-fe.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:28.416685 from tcp:127.0.0.1:42498 accepted tcp:androidwearcloudsync-pa.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:28.468344 from tcp:127.0.0.1:42512 accepted tcp:androidwearcloudsync-pa.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:28.530488 from tcp:127.0.0.1:42518 accepted tcp:androidwearcloudsync-pa.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:28.620101 from tcp:127.0.0.1:42532 accepted tcp:androidwearcloudsync-pa.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:31.682871 from tcp:127.0.0.1:43824 accepted tcp:play-fe.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:31.724256 from tcp:127.0.0.1:43830 accepted tcp:play-fe.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:33.071879 from tcp:127.0.0.1:43846 accepted tcp:www.gstatic.com:80 [socks-in -> xhttp-reality]
2025/05/29 07:29:33.868190 from tcp:127.0.0.1:43856 accepted tcp:androidwearcloudsync-pa.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:33.914573 from tcp:127.0.0.1:43864 accepted tcp:androidwearcloudsync-pa.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:35.754043 from tcp:127.0.0.1:43870 accepted tcp:play-fe.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:35.779990 from tcp:127.0.0.1:43872 accepted tcp:play-fe.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:37.773968 from tcp:127.0.0.1:43880 accepted tcp:android.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:37.836056 from tcp:127.0.0.1:43888 accepted tcp:android.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:37.903414 from tcp:127.0.0.1:43900 accepted tcp:android.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:37.930051 from tcp:127.0.0.1:43904 accepted tcp:android.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:37.983966 from tcp:127.0.0.1:43918 accepted tcp:android.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:38.004633 from tcp:127.0.0.1:43930 accepted tcp:android.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:44.095499 from tcp:127.0.0.1:52586 accepted tcp:androidwearcloudsync-pa.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:44.162809 from tcp:127.0.0.1:52602 accepted tcp:androidwearcloudsync-pa.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:48.412065 from tcp:127.0.0.1:52616 accepted tcp:www.gstatic.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:49.714322 from tcp:127.0.0.1:52626 accepted tcp:www.gstatic.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:53.395610 from tcp:127.0.0.1:58708 accepted tcp:www.gstatic.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:54.074682 from tcp:127.0.0.1:58710 accepted tcp:www.gstatic.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:54.530531 from tcp:127.0.0.1:58726 accepted tcp:www.gstatic.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:54.754630 from tcp:127.0.0.1:58728 accepted tcp:www.gstatic.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:54.946274 from tcp:127.0.0.1:58730 accepted tcp:www.gstatic.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:55.118947 from tcp:127.0.0.1:58738 accepted tcp:www.gstatic.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:55.302608 from tcp:127.0.0.1:58744 accepted tcp:www.gstatic.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:55.492976 from tcp:127.0.0.1:58760 accepted tcp:www.gstatic.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:55.867275 from tcp:127.0.0.1:58774 accepted tcp:www.gstatic.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:56.256040 from tcp:127.0.0.1:58788 accepted tcp:www.gstatic.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:56.437372 from tcp:127.0.0.1:58802 accepted tcp:www.gstatic.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:56.616003 from tcp:127.0.0.1:58810 accepted tcp:www.gstatic.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:57.118137 from tcp:127.0.0.1:58826 accepted tcp:www.gstatic.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:57.549365 from tcp:127.0.0.1:58842 accepted tcp:www.gstatic.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:57.744170 from tcp:127.0.0.1:58858 accepted tcp:www.gstatic.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:29:57.911829 from tcp:127.0.0.1:58860 accepted tcp:www.gstatic.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:30:07.855934 from tcp:127.0.0.1:38272 accepted tcp:androidwearcloudsync-pa.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:30:07.955220 from tcp:127.0.0.1:38286 accepted tcp:androidwearcloudsync-pa.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:30:32.720622 from tcp:127.0.0.1:46370 accepted tcp:play.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:30:32.821627 from tcp:127.0.0.1:46380 accepted tcp:play.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:31:18.197391 from tcp:127.0.0.1:50408 accepted tcp:androidwearcloudsync-pa.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:31:18.337076 from tcp:127.0.0.1:50422 accepted tcp:androidwearcloudsync-pa.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:33:38.611105 from tcp:127.0.0.1:42286 accepted tcp:androidwearcloudsync-pa.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:33:38.719898 from tcp:127.0.0.1:42290 accepted tcp:androidwearcloudsync-pa.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:34:13.336411 from tcp:127.0.0.1:53800 accepted tcp:play.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:34:13.406785 from tcp:127.0.0.1:53818 accepted tcp:play.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:34:33.082448 from tcp:127.0.0.1:43532 accepted tcp:www.gstatic.com:80 [socks-in -> xhttp-reality]

以下是Xray-linux-arm64-v8a运行后的日志:
2025/05/29 07:34:58.905595 from tcp:127.0.0.1:58328 accepted tcp:androidwearcloudsync-pa.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:34:59.618199 from tcp:127.0.0.1:58340 accepted tcp:android.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:35:04.707269 from tcp:127.0.0.1:55762 accepted tcp:www.gstatic.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:35:04.715231 from tcp:127.0.0.1:55774 accepted tcp:play-fe.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:35:05.224179 from tcp:127.0.0.1:55788 accepted tcp:play-fe.googleapis.com:443 [socks-in -> xhttp-reality]
2025/05/29 07:36:22.905232 from tcp:127.0.0.1:33172 accepted tcp:play.googleapis.com:443 [socks-in -> xhttp-reality]

服务端日志


2025/05/28 23:42:26.451670 from 171.113.161.205:50156 accepted tcp:androidwearcloudsync-pa.googleapis.com:443 [xhttp-reality -> direct]
2025/05/28 23:42:27.826483 from 171.113.161.205:50172 accepted tcp:playgateway-pa.googleapis.com:443 [xhttp-reality -> direct]
2025/05/28 23:42:30.523546 from 171.113.161.205:50186 accepted tcp:play-fe.googleapis.com:443 [xhttp-reality -> direct]
2025/05/28 23:42:34.726694 from 171.113.161.205:56974 accepted tcp:play-lh.googleusercontent.com:443 [xhttp-reality -> direct]
2025/05/28 23:42:38.031564 from 171.113.161.205:57028 accepted tcp:play-fe.googleapis.com:443 [xhttp-reality -> direct]
2025/05/28 23:42:43.010371 from 171.113.161.205:38248 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/28 23:42:59.189508 from 171.113.161.205:52120 accepted tcp:i.ytimg.com:443 [xhttp-reality -> direct]
2025/05/28 23:44:04.621563 from 171.113.161.205:56978 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/28 23:44:07.914927 from 171.113.161.205:59472 accepted tcp:i.ytimg.com:443 [xhttp-reality -> direct]
2025/05/28 23:45:43.855875 from 171.113.161.205:54362 accepted tcp:www.gstatic.com:80 [xhttp-reality -> direct]
2025/05/28 23:46:10.885011 from 171.113.161.205:57774 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/28 23:47:14.153323 from 171.113.161.205:48374 accepted tcp:playgateway-pa.googleapis.com:443 [xhttp-reality -> direct]
2025/05/28 23:47:17.142735 from 171.113.161.205:48386 accepted tcp:optimizationguide-pa.googleapis.com:443 [xhttp-reality -> direct]
2025/05/28 23:47:26.153264 from 171.113.161.205:46380 accepted tcp:www.gstatic.com:443 [xhttp-reality -> direct]
2025/05/28 23:50:01.289978 from 171.113.161.205:56056 accepted tcp:playgateway-pa.googleapis.com:443 [xhttp-reality -> direct]
2025/05/28 23:52:29.267781 from 171.113.161.205:36660 accepted tcp:www.gstatic.com:443 [xhttp-reality -> direct]
2025/05/28 23:52:46.786642 from 171.113.161.205:60680 accepted tcp:playgateway-pa.googleapis.com:443 [xhttp-reality -> direct]
2025/05/28 23:52:53.544362 from 171.113.161.205:37740 accepted tcp:i.ytimg.com:443 [xhttp-reality -> direct]
2025/05/28 23:52:53.902727 from 171.113.161.205:37746 accepted tcp:i.ytimg.com:443 [xhttp-reality -> direct]
2025/05/28 23:52:53.902775 from 171.113.161.205:37752 accepted tcp:i.ytimg.com:443 [xhttp-reality -> direct]
2025/05/28 23:52:54.293463 from 171.113.161.205:37790 accepted tcp:rr3---sn-p5qddn7r.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/28 23:52:54.306801 from 171.113.161.205:37802 accepted tcp:rr3---sn-p5qddn7r.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/28 23:52:54.648939 from 171.113.161.205:37816 accepted tcp:rr3---sn-p5qddn7r.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/28 23:52:56.549076 from 171.113.161.205:37834 accepted tcp:rr4---sn-a5msenek.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/28 23:52:58.422698 from 171.113.161.205:37878 accepted tcp:rr2---sn-p5qs7nzr.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/28 23:52:58.425279 from 171.113.161.205:37862 accepted tcp:rr2---sn-p5qs7nzr.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/28 23:52:59.506946 from 171.113.161.205:37870 accepted tcp:rr2---sn-p5qs7nzr.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/28 23:53:00.636089 from 171.113.161.205:37916 accepted tcp:rr3---sn-p5qlsnrr.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/28 23:53:00.654712 from 171.113.161.205:36514 accepted tcp:rr3---sn-p5qlsnrr.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/28 23:53:00.677228 from 171.113.161.205:36530 accepted tcp:rr3---sn-p5qlsnrr.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/28 23:53:17.793023 from 171.113.161.205:40404 accepted tcp:rr3---sn-p5qlsn7s.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/28 23:53:17.808458 from 171.113.161.205:40390 accepted tcp:rr3---sn-p5qlsn7s.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/28 23:53:17.841118 from 171.113.161.205:40406 accepted tcp:rr3---sn-p5qlsn7s.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/28 23:53:18.218285 from 171.113.161.205:40440 accepted tcp:r5---sn-o097znse.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/28 23:53:19.356297 from 171.113.161.205:40462 accepted tcp:rr3---sn-p5qlsndr.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/28 23:53:19.688575 from 171.113.161.205:40478 accepted tcp:rr3---sn-p5qlsndr.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/28 23:53:19.710692 from 171.113.161.205:40458 accepted tcp:rr3---sn-p5qlsndr.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/28 23:53:27.607039 from 171.113.161.205:33346 accepted tcp:r1---sn-o097znz7.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/28 23:54:05.173685 from 171.113.161.205:36660 accepted tcp:rr4---sn-p5qlsn6l.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/28 23:54:05.863524 from 171.113.161.205:38520 accepted tcp:rr4---sn-p5qlsn6l.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/28 23:54:05.878636 from 171.113.161.205:38510 accepted tcp:rr4---sn-p5qlsn6l.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/28 23:54:26.855560 from 171.113.161.205:40390 accepted tcp:rr4---sn-p5qlsn6l.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/28 23:54:28.027905 from 171.113.161.205:37388 accepted tcp:rr4---sn-p5qlsn6l.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/28 23:54:28.127763 from 171.113.161.205:37402 accepted tcp:rr4---sn-p5qlsn6l.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/28 23:54:30.177481 from 171.113.161.205:37878 accepted tcp:rr5---sn-p5qddn7k.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/28 23:54:30.491537 from 171.113.161.205:37428 accepted tcp:rr5---sn-p5qddn7k.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/28 23:54:30.497351 from 171.113.161.205:33416 accepted tcp:rr5---sn-p5qddn7k.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/28 23:54:31.789798 from 171.113.161.205:37802 accepted tcp:rr5---sn-p5qddn7k.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/28 23:54:32.123194 from 171.113.161.205:33420 accepted tcp:rr5---sn-p5qddn7k.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/28 23:54:32.507041 from 171.113.161.205:33428 accepted tcp:rr5---sn-p5qddn7k.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/28 23:54:33.081266 from 171.113.161.205:33456 accepted tcp:i.ytimg.com:443 [xhttp-reality -> direct]
2025/05/28 23:54:35.496005 from 171.113.161.205:33476 accepted tcp:rr4---sn-a5msenle.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/28 23:55:03.513300 from 171.113.161.205:37310 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/28 23:55:06.211527 from 171.113.161.205:37322 accepted tcp:play-fe.googleapis.com:443 [xhttp-reality -> direct]
2025/05/28 23:55:43.389314 from 171.113.161.205:44368 accepted tcp:www.gstatic.com:80 [xhttp-reality -> direct]
2025/05/29 00:02:55.801245 from 171.113.161.205:54566 accepted tcp:androidwearcloudsync-pa.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 00:02:56.146498 from 171.113.161.205:54540 accepted tcp:play-fe.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 00:02:56.344326 from 171.113.161.205:54568 accepted tcp:play-fe.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 00:03:06.260726 from 171.113.161.205:55668 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 00:05:43.870503 from 171.113.161.205:57696 accepted tcp:www.gstatic.com:80 [xhttp-reality -> direct]
2025/05/29 00:14:31.962306 from 171.113.161.205:46946 accepted tcp:play-fe.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 00:14:52.220663 from 171.113.161.205:49300 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 00:15:05.127671 from 171.113.161.205:36750 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 00:15:44.562766 from 171.113.161.205:50534 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 00:15:44.971774 from 171.113.161.205:50550 accepted tcp:www.gstatic.com:80 [xhttp-reality -> direct]
2025/05/29 00:35:18.403058 from 171.113.161.205:41162 accepted tcp:play-fe.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 00:35:18.407842 from 171.113.161.205:41174 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 00:35:18.741782 from 171.113.161.205:41196 accepted tcp:play-fe.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 00:35:19.057861 from 171.113.161.205:41228 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 00:35:20.278173 from 171.113.161.205:41278 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 00:35:24.158156 from 171.113.161.205:57374 accepted tcp:playgateway-pa.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 00:35:33.543556 from 171.113.161.205:51956 accepted tcp:i.ytimg.com:443 [xhttp-reality -> direct]
2025/05/29 00:35:33.552446 from 171.113.161.205:51982 accepted tcp:i.ytimg.com:443 [xhttp-reality -> direct]
2025/05/29 00:35:34.700593 from 171.113.161.205:52032 accepted tcp:rr1---sn-q4fl6nsl.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/29 00:35:34.705299 from 171.113.161.205:52048 accepted tcp:rr1---sn-q4fl6nsl.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/29 00:35:34.726510 from 171.113.161.205:52050 accepted tcp:rr1---sn-q4fl6nsl.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/29 00:35:37.005061 from 171.113.161.205:52080 accepted tcp:rr3---sn-a5msenll.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/29 00:35:38.424881 from 171.113.161.205:41196 accepted tcp:rr2---sn-q4fzenee.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/29 00:35:38.754391 from 171.113.161.205:52114 accepted tcp:rr2---sn-q4fzenee.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/29 00:35:38.980319 from 171.113.161.205:52106 accepted tcp:rr2---sn-q4fzenee.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/29 00:35:40.865972 from 171.113.161.205:57502 accepted tcp:rr5---sn-a5meknds.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/29 00:35:40.875039 from 171.113.161.205:57492 accepted tcp:rr5---sn-a5meknds.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/29 00:35:43.768782 from 171.113.161.205:57530 accepted tcp:www.gstatic.com:80 [xhttp-reality -> direct]
2025/05/29 00:35:45.141688 from 171.113.161.205:57558 accepted tcp:r2---sn-o097znzr.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/29 00:35:46.269001 from 171.113.161.205:57584 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 00:36:15.615885 from 171.113.161.205:50006 accepted tcp:androidwearcloudsync-pa.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 00:39:14.064575 from 171.113.161.205:52106 accepted tcp:r2---sn-o097znzr.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/29 00:40:07.152952 from 171.113.161.205:41176 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 00:40:43.803474 from 171.113.161.205:54432 accepted tcp:www.gstatic.com:80 [xhttp-reality -> direct]
2025/05/29 00:42:02.654756 from 171.113.161.205:41196 accepted tcp:r2---sn-o097znzr.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/29 00:43:30.917949 from 183.95.251.28:49768 accepted tcp:play-fe.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 00:43:31.231446 from 183.95.251.28:49769 accepted tcp:play-fe.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 00:43:34.160433 from 171.113.161.205:57014 accepted tcp:play-fe.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 00:43:38.180203 from 171.113.161.205:57034 accepted tcp:androidwearcloudsync-pa.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 00:43:43.652398 from 171.113.161.205:55440 accepted tcp:r2---sn-o097znzr.googlevideo.com:443 [xhttp-reality -> direct]
2025/05/29 02:03:40.119235 from 61.242.135.2:7912 accepted tcp:play-fe.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:03:42.115902 from 171.113.161.205:56698 accepted tcp:androidwearcloudsync-pa.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:03:42.226862 from 171.113.161.205:56718 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:04:50.696651 from 171.113.161.205:43844 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:05:43.610440 from 171.113.161.205:55106 accepted tcp:www.gstatic.com:80 [xhttp-reality -> direct]
2025/05/29 02:07:25.628472 from 171.113.161.205:34614 accepted tcp:playgateway-pa.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:10:06.953147 from 61.242.135.72:41912 accepted tcp:play-fe.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:10:07.124883 from 61.242.135.72:41913 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:10:07.335239 from 61.242.135.72:42876 accepted tcp:play-fe.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:10:07.337274 from 61.242.135.72:42875 accepted tcp:play-fe.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:10:07.560164 from 61.242.135.72:42877 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:10:08.045290 from 61.242.135.72:42882 accepted tcp:play-fe.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:10:09.880218 from 61.242.135.72:42885 accepted tcp:androidwearcloudsync-pa.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:10:10.096389 from 61.242.135.72:42886 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:10:12.918883 from 61.242.135.72:42891 accepted tcp:play-fe.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:10:14.303619 from 61.242.135.72:42894 accepted tcp:play-fe.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:10:23.657679 from 171.113.161.205:34364 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:10:27.235122 from 171.113.161.205:34376 accepted tcp:play-fe.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:10:39.489549 from 171.113.161.205:44882 accepted tcp:play-fe.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:10:42.121205 from 171.113.161.205:44904 accepted tcp:play-fe.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:10:43.888509 from 171.113.161.205:43614 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:10:44.614308 from 171.113.161.205:43646 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:10:52.656966 from 171.113.161.205:53288 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:11:04.044604 from 171.113.161.205:50388 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:11:04.050884 from 171.113.161.205:50390 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:11:04.592664 from 171.113.161.205:50428 accepted tcp:androidwearcloudsync-pa.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:11:12.264169 from 171.113.161.205:50432 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:11:15.039439 from 171.113.161.205:57676 accepted tcp:androidwearcloudsync-pa.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:11:19.236190 from 171.113.161.205:57692 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:11:19.472154 from 171.113.161.205:57702 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:11:21.005194 from 171.113.161.205:57718 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:11:23.033254 from 171.113.161.205:52034 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:11:26.228917 from 171.113.161.205:52048 accepted tcp:play.googleapis.com:80 [xhttp-reality -> direct]
2025/05/29 02:11:40.205376 from 171.113.161.205:38640 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:11:57.786041 from 171.113.161.205:52690 accepted tcp:i.ytimg.com:443 [xhttp-reality -> direct]
2025/05/29 02:14:01.461390 from 171.113.161.205:59688 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:14:33.922336 from 171.113.161.205:48476 accepted tcp:www.gstatic.com:80 [xhttp-reality -> direct]
2025/05/29 02:14:45.997103 from 171.113.161.205:35926 accepted tcp:play-fe.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:14:54.746704 from 171.113.161.205:52112 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:15:20.622000 from 171.113.161.205:40500 accepted tcp:playgateway-pa.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:16:40.445622 from 171.113.161.205:40184 accepted tcp:i.ytimg.com:443 [xhttp-reality -> direct]
2025/05/29 02:19:24.328270 from 171.113.161.205:41960 accepted tcp:optimizationguide-pa.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:19:24.339541 from 171.113.161.205:41964 accepted tcp:play-fe.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:19:33.577029 from 171.113.161.205:56010 accepted tcp:optimizationguide-pa.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:19:33.849547 from 171.113.161.205:56016 accepted tcp:www.gstatic.com:80 [xhttp-reality -> direct]
2025/05/29 02:19:36.821741 from 171.113.161.205:56088 accepted tcp:play-fe.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:19:36.825951 from 171.113.161.205:56056 accepted tcp:play-lh.googleusercontent.com:443 [xhttp-reality -> direct]
2025/05/29 02:19:36.826619 from 171.113.161.205:56072 accepted tcp:play-lh.googleusercontent.com:443 [xhttp-reality -> direct]
2025/05/29 02:19:36.828278 from 171.113.161.205:56052 accepted tcp:play-lh.googleusercontent.com:443 [xhttp-reality -> direct]
2025/05/29 02:19:43.269021 from 171.113.161.205:54438 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:19:45.883279 from 171.113.161.205:54454 accepted tcp:play-fe.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:20:10.103546 from 171.113.161.205:44520 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:20:44.216419 from 171.113.161.205:34190 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:20:49.009142 from 171.113.161.205:34210 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:20:49.215985 from 171.113.161.205:34216 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:21:15.708323 from 171.113.161.205:45090 accepted tcp:play-fe.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:22:23.422070 from 171.113.161.205:35962 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:22:26.401075 from 171.113.161.205:35972 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:22:44.248812 from 171.113.161.205:47510 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:24:33.880563 from 171.113.161.205:43200 accepted tcp:www.gstatic.com:80 [xhttp-reality -> direct]
2025/05/29 02:29:08.501550 from 171.113.161.205:42520 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:29:33.851377 from 171.113.161.205:37072 accepted tcp:www.gstatic.com:80 [xhttp-reality -> direct]
2025/05/29 02:30:26.441754 from 171.113.161.205:39828 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:31:27.782260 from 171.113.161.205:35686 accepted tcp:androidwearcloudsync-pa.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:34:34.053710 from 171.113.161.205:49354 accepted tcp:www.gstatic.com:80 [xhttp-reality -> direct]
2025/05/29 02:38:26.407242 from 171.113.161.205:47256 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:38:28.346273 from 171.113.161.205:47260 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:39:34.288649 from 171.113.161.205:60992 accepted tcp:www.gstatic.com:80 [xhttp-reality -> direct]
2025/05/29 02:40:50.740719 from 171.113.161.205:43588 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:40:50.742385 from 171.113.161.205:43578 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:44:31.242531 from 171.113.161.205:43108 accepted tcp:androidwearcloudsync-pa.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:44:33.773599 from 171.113.161.205:34628 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:44:34.021103 from 171.113.161.205:34638 accepted tcp:www.gstatic.com:80 [xhttp-reality -> direct]
2025/05/29 02:51:20.643220 from 171.113.161.205:57510 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:59:22.710960 from 61.242.130.163:15450 accepted tcp:play-fe.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:59:23.473087 from 61.242.130.163:15452 accepted tcp:play-fe.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:59:24.491500 from 61.242.130.163:15454 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 02:59:28.286498 from 61.242.130.163:15456 accepted tcp:androidwearcloudsync-pa.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:00:29.328879 from 171.113.161.205:33778 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:01:46.829391 from 171.113.161.205:59892 accepted tcp:playgateway-pa.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:01:52.455856 from 171.113.161.205:59908 accepted tcp:www.gstatic.com:443 [xhttp-reality -> direct]
2025/05/29 03:04:11.621561 from 171.113.161.205:56704 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:04:33.929049 from 171.113.161.205:45502 accepted tcp:www.gstatic.com:80 [xhttp-reality -> direct]
2025/05/29 03:08:33.972448 from 171.113.161.205:38816 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:09:33.946272 from 171.113.161.205:57818 accepted tcp:www.gstatic.com:80 [xhttp-reality -> direct]
2025/05/29 03:17:56.116738 from 171.113.161.205:41608 accepted tcp:androidwearcloudsync-pa.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:17:56.977195 from 171.113.161.205:41626 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:17:57.348554 from 171.113.161.205:41640 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:19:13.766020 from 171.113.161.205:57128 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:19:34.077220 from 171.113.161.205:42044 accepted tcp:www.gstatic.com:80 [xhttp-reality -> direct]
2025/05/29 03:22:19.317074 from 171.113.161.205:54762 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:24:33.871167 from 171.113.161.205:35572 accepted tcp:www.gstatic.com:80 [xhttp-reality -> direct]
2025/05/29 03:24:42.460756 from 171.113.161.205:39752 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:24:45.957790 from 171.113.161.205:39764 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:24:47.544918 from 171.113.161.205:39780 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:24:51.076839 from 171.113.161.205:39798 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:24:52.804565 from 171.113.161.205:35358 accepted tcp:play-fe.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:24:53.015030 from 171.113.161.205:35374 accepted tcp:play-fe.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:24:53.026895 from 171.113.161.205:35386 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:24:54.138621 from 171.113.161.205:35428 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:24:55.304009 from 171.113.161.205:35444 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:24:56.350410 from 171.113.161.205:35454 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:24:58.312346 from 171.113.161.205:35466 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:24:58.471636 from 171.113.161.205:35470 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:25:00.927894 from 171.113.161.205:35502 accepted tcp:optimizationguide-pa.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:25:01.918233 from 171.113.161.205:35532 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:25:02.261866 from 171.113.161.205:35516 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:25:04.790324 from 171.113.161.205:58566 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:25:05.558763 from 171.113.161.205:58578 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:25:07.041842 from 171.113.161.205:58602 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:25:09.014344 from 171.113.161.205:58620 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:25:11.921815 from 171.113.161.205:58636 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:25:12.683042 from 171.113.161.205:59288 accepted tcp:androidplatformbackuprestore-pa.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:25:14.887412 from 171.113.161.205:59316 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:25:19.403741 from 171.113.161.205:59334 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:25:22.725579 from 171.113.161.205:41040 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:25:23.062588 from 171.113.161.205:41058 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:25:25.289659 from 171.113.161.205:41070 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:25:28.159645 from 171.113.161.205:41088 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:25:31.274566 from 171.113.161.205:41110 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:25:33.228269 from 171.113.161.205:55126 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:25:35.616700 from 171.113.161.205:55152 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:25:38.409821 from 171.113.161.205:55180 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:25:41.834477 from 171.113.161.205:55194 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:25:45.199755 from 171.113.161.205:35494 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:25:47.256004 from 171.113.161.205:35520 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:25:50.466464 from 171.113.161.205:35540 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:25:53.354111 from 171.113.161.205:42092 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:25:56.195236 from 171.113.161.205:42118 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:25:59.036032 from 171.113.161.205:42148 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:26:00.862767 from 171.113.161.205:42162 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:26:04.794722 from 171.113.161.205:48028 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:26:07.969726 from 171.113.161.205:48036 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:26:11.061646 from 171.113.161.205:48054 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:34:59.530929 from 171.113.161.205:37646 accepted tcp:androidwearcloudsync-pa.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:35:01.424464 from 171.113.161.205:37666 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:35:05.337257 from 171.113.161.205:56410 accepted tcp:play-fe.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:35:05.354647 from 171.113.161.205:56402 accepted tcp:www.gstatic.com:443 [xhttp-reality -> direct]
2025/05/29 03:36:23.574735 from 171.113.161.205:34430 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:36:38.036243 from 171.113.161.205:50054 accepted tcp:playgateway-pa.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:36:40.224981 from 171.113.161.205:50074 accepted tcp:play-lh.googleusercontent.com:443 [xhttp-reality -> direct]
2025/05/29 03:36:43.455007 from 171.113.161.205:40388 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:37:09.831779 from 171.113.161.205:58470 accepted tcp:play-fe.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:37:12.387973 from 171.113.161.205:58894 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:37:43.923621 from 171.113.161.205:34958 accepted tcp:play-fe.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:37:44.370779 from 171.113.161.205:34972 accepted tcp:play-fe.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:37:44.375064 from 171.113.161.205:34980 accepted tcp:play-fe.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:38:52.137541 from 171.113.161.205:50032 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:39:01.448676 from 171.113.161.205:53056 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:39:34.007299 from 171.113.161.205:39548 accepted tcp:www.gstatic.com:80 [xhttp-reality -> direct]
2025/05/29 03:39:44.658977 from 171.113.161.205:42472 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:43:31.885052 from 171.113.161.205:37576 accepted tcp:android.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:44:07.754669 from 171.113.161.205:59528 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:44:33.739566 from 171.113.161.205:39086 accepted tcp:www.gstatic.com:80 [xhttp-reality -> direct]
2025/05/29 03:44:47.971415 from 171.113.161.205:53702 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:44:49.511016 from 171.113.161.205:53718 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:45:31.185590 from 171.113.161.205:59844 accepted tcp:play.googleapis.com:443 [xhttp-reality -> direct]
2025/05/29 03:49:34.055437 from 171.113.161.205:55358 accepted tcp:www.gstatic.com:80 [xhttp-reality -> direct]

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions