Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug] AnyTls在安卓上设置min-idle-session导致断流 #1891

Closed
9 tasks done
KorenKrita opened this issue Mar 10, 2025 · 8 comments
Closed
9 tasks done

[Bug] AnyTls在安卓上设置min-idle-session导致断流 #1891

KorenKrita opened this issue Mar 10, 2025 · 8 comments
Labels
invalid This doesn't seem right not following template

Comments

@KorenKrita
Copy link

验证步骤

  • 我已经阅读了 文档,了解所有我编写的配置文件项的含义,而不是大量堆砌看似有用的选项或默认值。
  • 我仔细看过 文档 并未解决问题
  • 我已在 Issue Tracker 中寻找过我要提出的问题,并且没有找到
  • 我是中文用户,而非其他语言用户
  • 我已经使用最新的 Alpha 分支版本测试过,问题依旧存在
  • 我提供了可以在本地重现该问题的服务器、客户端配置文件与流程,而不是一个脱敏的复杂客户端配置文件。
  • 我提供了可用于重现我报告的错误的最简配置,而不是依赖远程服务器或者堆砌大量对于复现无用的配置等。
  • 我提供了完整的日志,而不是出于对自身智力的自信而仅提供了部分认为有用的部分。
  • 我直接使用 Mihomo 命令行程序重现了错误,而不是使用其他工具或脚本。

操作系统

Android

系统版本

Android15

Mihomo 版本

v1.19.3

配置文件

proxies:
  - { name: '[AnyTls]', type: anytls, server: xx.xx.xx, port: 443, password: password, udp: true, idle-session-check-interval: 30, idle-session-timeout: 30, min-idle-session: 4, skip-cert-verify: false, apln: [h2, http/1.1], client-fingerprint: chrome }

描述

disable-keep-alive在安卓默认为true,anytls的min-idle-session确定了保留的session数但并未考虑其底层tcp连接状态。在手机锁屏后一段时间后,服务端持续未收到keepalive包断开tcp连接,而在tcp上的旧session并未检测连接状态只是按min-idle-session数进行了保留。下次手机解锁后会依然尝试用这些旧session直到经过

for i := 0; i < 3; i++ {
		session, err = c.findSession(ctx)
		if session == nil {
			return nil, fmt.Errorf("failed to create session: %w", err)
		}
		stream, err = session.OpenStream()
		if err != nil {
			_ = session.Close()
			continue
		}
		break
	}

这里的逻辑完全关闭完现存的旧连接。以我min-idle-session: 4的配置来说需要逐一关闭两轮,第一轮抛出一个too many closed session 然后需要下一次尝试建立连接才会再走一次逐一关闭,关闭掉剩下的一个session,创建新的session。而这其实会造成开屏后较长时间的断流不可用。

重现方式

环境安卓 配置anytls协议min-idle-session大于0 最好大于3
待息屏一段时间服务端/运营商断开tcp连接后 开启屏幕会触发一段时间的断流
其他配置了keepalive的系统平台无问题,安卓配置min-idle-session=0无问题

日志

日志中未发现有用信息
10:56:25开屏 持续断流至10:57:28恢复 持续1分钟
10:56:25.276   Debug: [Rule] use default rules
10:56:25.279   Debug: [PKG] 172.19.0.1:55326 --> 91.108.56.163:5222 by 10373[org.telegram.messenger]
10:56:25.279    Info: [TCP] 172.19.0.1:55326(org.telegram.messenger) --> 91.108.56.163:5222 match GeoIP(telegram) using Telegram[[AnyTls]]
10:56:26.571   Debug: Auth success from 127.0.0.1:48212 ->
10:56:26.572   Debug: [Rule] use default rules
10:56:29.206   Debug: [PKG] 172.19.0.1:42966 --> 91.108.56.137:443 by 10373[org.telegram.messenger]
10:56:29.206   Debug: [PKG] 172.19.0.1:57620 --> 91.108.56.148:443 by 10373[org.telegram.messenger]
10:56:29.206    Info: [TCP] 172.19.0.1:42966(org.telegram.messenger) --> 91.108.56.137:443 match GeoIP(telegram) using Telegram[[AnyTls]]
10:56:29.206    Info: [TCP] 172.19.0.1:57620(org.telegram.messenger) --> 91.108.56.148:443 match GeoIP(telegram) using Telegram[[AnyTls]]
10:56:29.514   Debug: [Rule] use default rules
10:56:29.516   Debug: [PKG] 172.19.0.1:55336 --> 91.108.56.163:5222 by 10373[org.telegram.messenger]
10:56:29.517    Info: [TCP] 172.19.0.1:55336(org.telegram.messenger) --> 91.108.56.163:5222 match GeoIP(telegram) using Telegram[[AnyTls]]
10:56:33.530   Debug: [PKG] 172.19.0.1:34306 --> 91.108.56.163:443 by 10373[org.telegram.messenger]
10:56:33.531    Info: [TCP] 172.19.0.1:34306(org.telegram.messenger) --> 91.108.56.163:443 match GeoIP(telegram) using Telegram[[AnyTls]]
10:56:41.546   Debug: [PKG] 172.19.0.1:43094 --> 91.108.56.163:443 by 10373[org.telegram.messenger]
10:56:41.546    Info: [TCP] 172.19.0.1:43094(org.telegram.messenger) --> 91.108.56.163:443 match GeoIP(telegram) using Telegram[[AnyTls]]
10:56:49.583   Debug: [PKG] 172.19.0.1:48648 --> 91.108.56.163:5222 by 10373[org.telegram.messenger]
10:56:49.583    Info: [TCP] 172.19.0.1:48648(org.telegram.messenger) --> 91.108.56.163:5222 match GeoIP(telegram) using Telegram[[AnyTls]]
10:56:51.226   Debug: [PKG] 172.19.0.1:56196 --> 95.161.76.101:443 by 10373[org.telegram.messenger]
10:56:51.227    Info: [TCP] 172.19.0.1:56196(org.telegram.messenger) --> 95.161.76.101:443 match GeoIP(telegram) using Telegram[[AnyTls]]
10:56:54.380   Debug: use specified fingerprint:Chrome
10:56:54.498    Info: [TCP] [fdfe:dcba:9876::1]:57266(org.telegram.messenger) --> [2001:b28:f23f:f005::a]:5222 match GeoIP(telegram) using Telegram[[AnyTls]]
10:56:58.246   Debug: [PKG] 172.19.0.1:57678 --> 91.108.56.163:443 by 10373[org.telegram.messenger]
10:56:58.247    Info: [TCP] 172.19.0.1:57678(org.telegram.messenger) --> 91.108.56.163:443 match GeoIP(telegram) using Telegram[[AnyTls]]
10:56:59.248   Debug: [Rule] use default rules
10:56:59.252   Debug: [PKG] 172.19.0.1:56212 --> 95.161.76.101:443 by 10373[org.telegram.messenger]
10:56:59.253    Info: [TCP] 172.19.0.1:56212(org.telegram.messenger) --> 95.161.76.101:443 match GeoIP(telegram) using Telegram[[AnyTls]]
10:57:03.242   Debug: [Rule] use default rules
10:57:03.243   Debug: [Rule] use default rules
10:57:03.245   Debug: [PKG] 172.19.0.1:53300 --> 91.108.56.148:5222 by 10373[org.telegram.messenger]
10:57:03.246   Debug: [PKG] 172.19.0.1:50148 --> 91.108.56.137:443 by 10373[org.telegram.messenger]
10:57:03.246    Info: [TCP] 172.19.0.1:50148(org.telegram.messenger) --> 91.108.56.137:443 match GeoIP(telegram) using Telegram[[AnyTls]]
10:57:03.246    Info: [TCP] 172.19.0.1:53300(org.telegram.messenger) --> 91.108.56.148:5222 match GeoIP(telegram) using Telegram[[AnyTls]]
10:57:06.262   Debug: [Rule] use default rules
10:57:06.264   Debug: [PKG] [fdfe:dcba:9876::1]:46364 --> [2001:b28:f23f:f005::a]:443 by 10373[org.telegram.messenger]
10:57:06.267    Info: [TCP] [fdfe:dcba:9876::1]:46364(org.telegram.messenger) --> [2001:b28:f23f:f005::a]:443 match GeoIP(telegram) using Telegram[[AnyTls]]
10:57:07.271   Debug: [Rule] use default rules
10:57:07.274   Debug: [PKG] 172.19.0.1:51784 --> 95.161.76.101:443 by 10373[org.telegram.messenger]
10:57:07.275    Info: [TCP] 172.19.0.1:51784(org.telegram.messenger) --> 95.161.76.101:443 match GeoIP(telegram) using Telegram[[AnyTls]]
10:57:14.294   Debug: [PKG] 172.19.0.1:42256 --> 91.108.56.163:5222 by 10373[org.telegram.messenger]
10:57:14.298    Info: [TCP] 172.19.0.1:42256(org.telegram.messenger) --> 91.108.56.163:5222 match GeoIP(telegram) using Telegram[[AnyTls]]
10:57:14.468   Debug: [Rule] use default rules
10:57:14.471   Debug: [PKG] [fdfe:dcba:9876::1]:40316 --> [2001:b28:f23f:f005::a]:5222 by 10373[org.telegram.messenger]
10:57:14.471    Info: [TCP] [fdfe:dcba:9876::1]:40316(org.telegram.messenger) --> [2001:b28:f23f:f005::a]:5222 match GeoIP(telegram) using Telegram[[AnyTls]]
10:57:27.603   Debug: [Rule] use default rules
10:57:27.605   Debug: [PKG] 172.19.0.1:45884 --> 91.108.56.163:443 by 10373[org.telegram.messenger]
10:57:27.608    Info: [TCP] 172.19.0.1:45884(org.telegram.messenger) --> 91.108.56.163:443 match GeoIP(telegram) using Telegram[[AnyTls]]
10:57:28.645   Debug: [Rule] use default rules
10:57:28.650   Debug: [PKG] 172.19.0.1:39690 --> 95.161.76.101:443 by 10373[org.telegram.messenger]
10:57:28.651    Info: [TCP] 172.19.0.1:39690(org.telegram.messenger) --> 95.161.76.101:443 match GeoIP(telegram) using Telegram[[AnyTls]]
@KorenKrita KorenKrita added the bug Something isn't working label Mar 10, 2025
@KorenKrita
Copy link
Author

cc @anytls

@anytls
Copy link

anytls commented Mar 10, 2025

  1. 理论上如果服务器断开了 TCP 连接,客户端收到 TCP RST 之后将使 recvLoop 返回,Client 就会清理掉这个 session。
  2. 你的日志里没有显示”断流“的原因,真的是这里的问题吗?

@KorenKrita
Copy link
Author

KorenKrita commented Mar 10, 2025

  1. 理论上如果服务器断开了 TCP 连接,客户端收到 TCP RST 之后将使 recvLoop 返回,Client 就会清理掉这个 session。
  2. 你的日志里没有显示”断流“的原因,真的是这里的问题吗?

测试在19:17:53客户端进行首次连接,为方便测试仅对tg进行分流,19:18:50息屏,19:29:23开屏打开tg,可以看到19:29:25客户端日志内有请求,服务端未收到,服务端首次收到tg请求是19:29:52,这是客户端开屏后发起的第八次请求,分别是
19:29:25.969 19:29:29.818 19:29:29.822 19:29:30.380 19:29:34.403 19:29:42.419 19:29:50.436 19:29:50.981
但是尽管此时服务端收到了请求,但是tg依然没有接收到消息,此状况一直持续到19:32:05,从客户端日志可见从19:29至19:32一直有发起请求,但服务端均未收到。
服务端系统内核keepalive相关:
net.ipv4.tcp_keepalive_time = 180
net.ipv4.tcp_keepalive_intvl = 15
net.ipv4.tcp_keepalive_probes = 5
客户端配置:{ name: '[AnyTls]', type: anytls, server: xx.xx.xx, port: 443, password: abcde, udp: true, idle-session-check-interval: 20, idle-session-timeout: 45, min-idle-session: 4, skip-cert-verify: false, apln: [h2, http/1.1], client-fingerprint: chrome }
服务端配置:{
"type": "anytls",
"listen": "::",
"listen_port": 443,
"users": [
{
"name": "krita",
"password": "abcde"
}
],
"tls": {
"enabled": true,
"server_name": "xx.xx.xx",
"alpn": [
"h2",
"http/1.1"
],
"certificate_path": "xx.crt",
"key_path": "xx.key"
}
}

附服务端及客户端debug日志:
服务端sing-box-1.12.0-alpha.13

+0800 2025-03-10 19:17:48 INFO network: updated default interface eth0, index 2
+0800 2025-03-10 19:17:48 DEBUG dns: lookup domain time.apple.com
+0800 2025-03-10 19:17:48 DEBUG dns: exchanged time.apple.com NOERROR 1
+0800 2025-03-10 19:17:48 DEBUG dns: exchanged CNAME time.apple.com. 1 IN CNAME time.g.aaplimg.com.
+0800 2025-03-10 19:17:48 DEBUG dns: exchanged A time.g.aaplimg.com. 1 IN A 17.253.84.125
+0800 2025-03-10 19:17:48 DEBUG dns: exchanged A time.g.aaplimg.com. 1 IN A 17.253.84.251
+0800 2025-03-10 19:17:48 DEBUG dns: exchanged A time.g.aaplimg.com. 1 IN A 17.253.116.125
+0800 2025-03-10 19:17:48 DEBUG dns: exchanged OPT OPT PSEUDOSECTION: EDNS: version 0 flags: MBZ: 0x0001, udp: 1232
+0800 2025-03-10 19:17:48 DEBUG dns: exchanged time.apple.com NOERROR 900
+0800 2025-03-10 19:17:48 DEBUG dns: exchanged CNAME time.apple.com. 900 IN CNAME time.g.aaplimg.com.
+0800 2025-03-10 19:17:48 DEBUG dns: exchanged AAAA time.g.aaplimg.com. 900 IN AAAA 2403:300:a0a:3000::1e2
+0800 2025-03-10 19:17:48 DEBUG dns: exchanged AAAA time.g.aaplimg.com. 900 IN AAAA 2403:300:a0a:4000::1f2
+0800 2025-03-10 19:17:48 DEBUG dns: exchanged AAAA time.g.aaplimg.com. 900 IN AAAA 2403:300:a30:4000::1f2
+0800 2025-03-10 19:17:48 DEBUG dns: exchanged OPT OPT PSEUDOSECTION: EDNS: version 0 flags: MBZ: 0x0384, udp: 1232
+0800 2025-03-10 19:17:48 DEBUG dns: lookup succeed for time.apple.com: 17.253.84.125 17.253.84.251 17.253.116.125 2403:300:a0a:3000::1e2 2403:300:a0a:4000::1f2 2403:300:a30:4000::1f2
+0800 2025-03-10 19:17:48 INFO ntp: updated time: 2025-03-10 19:17:51 +0800
+0800 2025-03-10 19:17:48 INFO inbound/anytls[0]: tcp server started at [::]:443
+0800 2025-03-10 19:17:48 INFO sing-box started (0.44s)
+0800 2025-03-10 19:17:48 INFO [2416154964 0ms] inbound/anytls[0]: inbound connection from 103.37.140.23:2543
+0800 2025-03-10 19:17:48 INFO [2416154964 67ms] inbound/anytls[0]: [krita] inbound connection to 149.154.171.5:443
+0800 2025-03-10 19:17:48 DEBUG [2416154964 67ms] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:17:48 INFO [2416154964 67ms] outbound/direct[direct]: outbound connection to 149.154.171.5:443
+0800 2025-03-10 19:17:48 INFO [2754779574 0ms] inbound/anytls[0]: inbound connection from 103.37.140.23:11554
+0800 2025-03-10 19:17:48 INFO [3288892368 0ms] inbound/anytls[0]: inbound connection from 103.37.140.23:7217
+0800 2025-03-10 19:17:48 INFO [3288892368 78ms] inbound/anytls[0]: [krita] inbound connection to 91.108.56.137:80
+0800 2025-03-10 19:17:48 DEBUG [3288892368 78ms] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:17:48 INFO [3288892368 78ms] outbound/direct[direct]: outbound connection to 91.108.56.137:80
+0800 2025-03-10 19:17:48 INFO [2754779574 83ms] inbound/anytls[0]: [krita] inbound connection to 149.154.171.5:443
+0800 2025-03-10 19:17:48 DEBUG [2754779574 83ms] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:17:48 INFO [2754779574 83ms] outbound/direct[direct]: outbound connection to 149.154.171.5:443
+0800 2025-03-10 19:17:48 INFO [3744311784 0ms] inbound/anytls[0]: inbound connection from 103.37.140.23:2547
+0800 2025-03-10 19:17:48 INFO [2877686722 0ms] inbound/anytls[0]: inbound connection from 103.37.140.23:11564
+0800 2025-03-10 19:17:48 INFO [2877686722 74ms] inbound/anytls[0]: [krita] inbound connection to 149.154.171.5:5222
+0800 2025-03-10 19:17:48 DEBUG [2877686722 75ms] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:17:48 INFO [2877686722 75ms] outbound/direct[direct]: outbound connection to 149.154.171.5:5222
+0800 2025-03-10 19:17:49 INFO [3744311784 77ms] inbound/anytls[0]: [krita] inbound connection to 91.108.56.163:80
+0800 2025-03-10 19:17:49 DEBUG [3744311784 77ms] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:17:49 INFO [3744311784 77ms] outbound/direct[direct]: outbound connection to 91.108.56.163:80
+0800 2025-03-10 19:17:49 INFO [3744311784 166ms] inbound/anytls[0]: [krita] inbound connection to 91.108.56.163:5222
+0800 2025-03-10 19:17:49 DEBUG [3744311784 166ms] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:17:49 INFO [3744311784 166ms] outbound/direct[direct]: outbound connection to 91.108.56.163:5222
+0800 2025-03-10 19:17:49 INFO [3744311784 375ms] inbound/anytls[0]: [krita] inbound connection to 91.108.56.137:5222
+0800 2025-03-10 19:17:49 DEBUG [3744311784 375ms] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:17:49 INFO [3744311784 375ms] outbound/direct[direct]: outbound connection to 91.108.56.137:5222
+0800 2025-03-10 19:17:49 INFO [3744311784 547ms] inbound/anytls[0]: [krita] inbound connection to 149.154.171.5:5222
+0800 2025-03-10 19:17:49 DEBUG [3744311784 547ms] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:17:49 INFO [3744311784 547ms] outbound/direct[direct]: outbound connection to 149.154.171.5:5222
+0800 2025-03-10 19:17:49 INFO [3744311784 715ms] inbound/anytls[0]: [krita] inbound connection to 149.154.171.5:80
+0800 2025-03-10 19:17:49 DEBUG [3744311784 716ms] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:17:49 INFO [3744311784 716ms] outbound/direct[direct]: outbound connection to 149.154.171.5:80
+0800 2025-03-10 19:17:49 INFO [3744311784 791ms] inbound/anytls[0]: [krita] inbound connection to 91.108.56.137:443
+0800 2025-03-10 19:17:49 DEBUG [3744311784 791ms] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:17:49 INFO [3744311784 791ms] outbound/direct[direct]: outbound connection to 91.108.56.137:443
+0800 2025-03-10 19:17:49 INFO [2877686722 928ms] inbound/anytls[0]: [krita] inbound connection to 91.108.56.163:443
+0800 2025-03-10 19:17:49 DEBUG [2877686722 928ms] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:17:49 INFO [2877686722 928ms] outbound/direct[direct]: outbound connection to 91.108.56.163:443
+0800 2025-03-10 19:17:49 INFO [2877686722 973ms] inbound/anytls[0]: [krita] inbound connection to 91.108.56.105:443
+0800 2025-03-10 19:17:49 DEBUG [2877686722 973ms] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:17:49 INFO [2877686722 973ms] outbound/direct[direct]: outbound connection to 91.108.56.105:443
+0800 2025-03-10 19:17:50 INFO [353765842 0ms] inbound/anytls[0]: inbound connection from 223.104.40.190:48828
+0800 2025-03-10 19:17:50 INFO [353765842 109ms] inbound/anytls[0]: [krita] inbound connection to cp.cloudflare.com:80
+0800 2025-03-10 19:17:50 DEBUG [353765842 109ms] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:17:50 INFO [353765842 109ms] outbound/direct[direct]: outbound connection to cp.cloudflare.com:80
+0800 2025-03-10 19:17:50 DEBUG [353765842 109ms] dns: lookup domain cp.cloudflare.com
+0800 2025-03-10 19:17:50 DEBUG [353765842 113ms] dns: exchanged cp.cloudflare.com NOERROR 114
+0800 2025-03-10 19:17:50 DEBUG [353765842 113ms] dns: exchanged A cp.cloudflare.com. 114 IN A 104.16.133.229
+0800 2025-03-10 19:17:50 DEBUG [353765842 113ms] dns: exchanged A cp.cloudflare.com. 114 IN A 104.16.132.229
+0800 2025-03-10 19:17:50 DEBUG [353765842 113ms] dns: exchanged OPT OPT PSEUDOSECTION: EDNS: version 0 flags: MBZ: 0x0072, udp: 1232
+0800 2025-03-10 19:17:50 DEBUG [353765842 117ms] dns: exchanged cp.cloudflare.com NOERROR 300
+0800 2025-03-10 19:17:50 DEBUG [353765842 118ms] dns: exchanged AAAA cp.cloudflare.com. 300 IN AAAA 2606:4700::6810:84e5
+0800 2025-03-10 19:17:50 DEBUG [353765842 118ms] dns: exchanged AAAA cp.cloudflare.com. 300 IN AAAA 2606:4700::6810:85e5
+0800 2025-03-10 19:17:50 DEBUG [353765842 118ms] dns: exchanged OPT OPT PSEUDOSECTION: EDNS: version 0 flags: MBZ: 0x012c, udp: 1232
+0800 2025-03-10 19:17:50 DEBUG [353765842 118ms] dns: lookup succeed for cp.cloudflare.com: 104.16.133.229 104.16.132.229 2606:4700::6810:84e5 2606:4700::6810:85e5
+0800 2025-03-10 19:17:53 INFO [2754779574 4.94s] inbound/anytls[0]: [krita] inbound connection to 91.108.56.105:443
+0800 2025-03-10 19:17:53 DEBUG [2754779574 4.94s] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:17:53 INFO [2754779574 4.94s] outbound/direct[direct]: outbound connection to 91.108.56.105:443
+0800 2025-03-10 19:17:53 INFO [3288892368 4.95s] inbound/anytls[0]: [krita] inbound connection to 91.108.56.137:443
+0800 2025-03-10 19:17:53 DEBUG [3288892368 4.95s] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:17:53 INFO [3288892368 4.95s] outbound/direct[direct]: outbound connection to 91.108.56.137:443
+0800 2025-03-10 19:17:53 INFO [353765842 3.13s] inbound/anytls[0]: [krita] inbound connection to 91.108.56.163:443
+0800 2025-03-10 19:17:53 DEBUG [353765842 3.13s] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:17:53 INFO [353765842 3.13s] outbound/direct[direct]: outbound connection to 91.108.56.163:443
+0800 2025-03-10 19:17:54 INFO [3455191438 0ms] inbound/anytls[0]: inbound connection from 223.104.40.190:48829
+0800 2025-03-10 19:17:54 INFO [3455191438 90ms] inbound/anytls[0]: [krita] inbound connection to firebaselogging.googleapis.com:443
+0800 2025-03-10 19:17:54 DEBUG [3455191438 90ms] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:17:54 INFO [3455191438 90ms] outbound/direct[direct]: outbound connection to firebaselogging.googleapis.com:443
+0800 2025-03-10 19:17:54 DEBUG [3455191438 90ms] dns: lookup domain firebaselogging.googleapis.com
+0800 2025-03-10 19:17:54 DEBUG [3455191438 93ms] dns: exchanged firebaselogging.googleapis.com NOERROR 202
+0800 2025-03-10 19:17:54 DEBUG [3455191438 93ms] dns: exchanged AAAA firebaselogging.googleapis.com. 202 IN AAAA 2404:6800:4005:81e::200a
+0800 2025-03-10 19:17:54 DEBUG [3455191438 93ms] dns: exchanged AAAA firebaselogging.googleapis.com. 202 IN AAAA 2404:6800:4005:812::200a
+0800 2025-03-10 19:17:54 DEBUG [3455191438 93ms] dns: exchanged AAAA firebaselogging.googleapis.com. 202 IN AAAA 2404:6800:4005:81f::200a
+0800 2025-03-10 19:17:54 DEBUG [3455191438 93ms] dns: exchanged AAAA firebaselogging.googleapis.com. 202 IN AAAA 2404:6800:4005:821::200a
+0800 2025-03-10 19:17:54 DEBUG [3455191438 93ms] dns: exchanged OPT OPT PSEUDOSECTION: EDNS: version 0 flags: MBZ: 0x00ca, udp: 1232
+0800 2025-03-10 19:17:54 DEBUG [3455191438 108ms] dns: exchanged firebaselogging.googleapis.com NOERROR 300
+0800 2025-03-10 19:17:54 DEBUG [3455191438 108ms] dns: exchanged A firebaselogging.googleapis.com. 300 IN A 142.250.76.10
+0800 2025-03-10 19:17:54 DEBUG [3455191438 108ms] dns: exchanged A firebaselogging.googleapis.com. 300 IN A 142.250.76.234
+0800 2025-03-10 19:17:54 DEBUG [3455191438 108ms] dns: exchanged A firebaselogging.googleapis.com. 300 IN A 142.250.71.170
+0800 2025-03-10 19:17:54 DEBUG [3455191438 108ms] dns: exchanged A firebaselogging.googleapis.com. 300 IN A 142.250.71.234
+0800 2025-03-10 19:17:54 DEBUG [3455191438 108ms] dns: exchanged A firebaselogging.googleapis.com. 300 IN A 142.250.198.170
+0800 2025-03-10 19:17:54 DEBUG [3455191438 108ms] dns: exchanged A firebaselogging.googleapis.com. 300 IN A 142.250.199.234
+0800 2025-03-10 19:17:54 DEBUG [3455191438 108ms] dns: exchanged A firebaselogging.googleapis.com. 300 IN A 142.250.71.138
+0800 2025-03-10 19:17:54 DEBUG [3455191438 108ms] dns: exchanged A firebaselogging.googleapis.com. 300 IN A 142.250.198.234
+0800 2025-03-10 19:17:54 DEBUG [3455191438 108ms] dns: exchanged A firebaselogging.googleapis.com. 300 IN A 142.250.71.202
+0800 2025-03-10 19:17:54 DEBUG [3455191438 108ms] dns: exchanged A firebaselogging.googleapis.com. 300 IN A 142.250.66.42
+0800 2025-03-10 19:17:54 DEBUG [3455191438 108ms] dns: exchanged A firebaselogging.googleapis.com. 300 IN A 142.250.198.202
+0800 2025-03-10 19:17:54 DEBUG [3455191438 108ms] dns: exchanged A firebaselogging.googleapis.com. 300 IN A 142.250.198.42
+0800 2025-03-10 19:17:54 DEBUG [3455191438 108ms] dns: exchanged A firebaselogging.googleapis.com. 300 IN A 142.250.199.202
+0800 2025-03-10 19:17:54 DEBUG [3455191438 108ms] dns: exchanged A firebaselogging.googleapis.com. 300 IN A 142.250.199.74
+0800 2025-03-10 19:17:54 DEBUG [3455191438 108ms] dns: exchanged A firebaselogging.googleapis.com. 300 IN A 142.250.198.138
+0800 2025-03-10 19:17:54 DEBUG [3455191438 108ms] dns: exchanged A firebaselogging.googleapis.com. 300 IN A 142.250.198.106
+0800 2025-03-10 19:17:54 DEBUG [3455191438 108ms] dns: exchanged OPT OPT PSEUDOSECTION: EDNS: version 0 flags: MBZ: 0x012c, udp: 1232
+0800 2025-03-10 19:17:54 DEBUG [3455191438 108ms] dns: lookup succeed for firebaselogging.googleapis.com: 142.250.76.10 142.250.76.234 142.250.71.170 142.250.71.234 142.250.198.170 142.250.199.234 142.250.71.138 142.250.198.234 142.250.71.202 142.250.66.42 142.250.198.202 142.250.198.42 142.250.199.202 142.250.199.74 142.250.198.138 142.250.198.106 2404:6800:4005:81e::200a 2404:6800:4005:812::200a 2404:6800:4005:81f::200a 2404:6800:4005:821::200a
+0800 2025-03-10 19:17:54 INFO [1897723283 0ms] inbound/anytls[0]: inbound connection from 223.104.40.190:48832
+0800 2025-03-10 19:17:54 INFO [1402208492 0ms] inbound/anytls[0]: inbound connection from 223.104.40.190:48830
+0800 2025-03-10 19:17:54 INFO [2704777359 0ms] inbound/anytls[0]: inbound connection from 223.104.40.190:48831
+0800 2025-03-10 19:17:54 INFO [1897723283 119ms] inbound/anytls[0]: [krita] inbound connection to 91.108.56.137:5222
+0800 2025-03-10 19:17:54 DEBUG [1897723283 119ms] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:17:54 INFO [1897723283 119ms] outbound/direct[direct]: outbound connection to 91.108.56.137:5222
+0800 2025-03-10 19:17:54 INFO [1402208492 104ms] inbound/anytls[0]: [krita] inbound connection to 91.108.56.163:443
+0800 2025-03-10 19:17:54 DEBUG [1402208492 104ms] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:17:54 INFO [1402208492 104ms] outbound/direct[direct]: outbound connection to 91.108.56.163:443
+0800 2025-03-10 19:17:54 INFO [2704777359 105ms] inbound/anytls[0]: [krita] inbound connection to 91.108.56.148:443
+0800 2025-03-10 19:17:54 DEBUG [2704777359 105ms] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:17:54 INFO [2704777359 105ms] outbound/direct[direct]: outbound connection to 91.108.56.148:443
+0800 2025-03-10 19:17:58 INFO [1821464013 0ms] inbound/anytls[0]: inbound connection from 223.104.40.190:29014
+0800 2025-03-10 19:17:58 INFO [2793060301 0ms] inbound/anytls[0]: inbound connection from 223.104.40.190:29015
+0800 2025-03-10 19:17:58 INFO [1821464013 120ms] inbound/anytls[0]: [krita] inbound connection to 149.154.171.255:443
+0800 2025-03-10 19:17:58 DEBUG [1821464013 120ms] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:17:58 INFO [1821464013 120ms] outbound/direct[direct]: outbound connection to 149.154.171.255:443
+0800 2025-03-10 19:17:58 INFO [2793060301 119ms] inbound/anytls[0]: [krita] inbound connection to 149.154.171.255:443
+0800 2025-03-10 19:17:58 DEBUG [2793060301 120ms] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:17:58 INFO [2793060301 120ms] outbound/direct[direct]: outbound connection to 149.154.171.255:443
+0800 2025-03-10 19:18:01 INFO [2416154964 12.50s] inbound/anytls[0]: [krita] inbound connection to 95.161.76.101:443
+0800 2025-03-10 19:18:01 DEBUG [2416154964 12.50s] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:18:01 INFO [2416154964 12.50s] outbound/direct[direct]: outbound connection to 95.161.76.101:443
+0800 2025-03-10 19:18:01 INFO [1557331036 0ms] inbound/anytls[0]: inbound connection from 103.37.140.23:34105
+0800 2025-03-10 19:18:01 INFO [1557331036 59ms] inbound/anytls[0]: [krita] inbound connection to 95.161.76.101:443
+0800 2025-03-10 19:18:01 DEBUG [1557331036 59ms] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:18:01 INFO [1557331036 59ms] outbound/direct[direct]: outbound connection to 95.161.76.101:443
+0800 2025-03-10 19:18:02 INFO [3744311784 13.25s] inbound/anytls[0]: [krita] inbound connection to 91.108.56.105:443
+0800 2025-03-10 19:18:02 DEBUG [3744311784 13.25s] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:18:02 INFO [3744311784 13.25s] outbound/direct[direct]: outbound connection to 91.108.56.105:443
+0800 2025-03-10 19:18:02 INFO [3288892368 13.38s] inbound/anytls[0]: [krita] inbound connection to 91.108.56.105:443
+0800 2025-03-10 19:18:02 DEBUG [3288892368 13.38s] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:18:02 INFO [3288892368 13.38s] outbound/direct[direct]: outbound connection to 91.108.56.105:443
+0800 2025-03-10 19:18:02 INFO [1557331036 1.67s] inbound/anytls[0]: [krita] inbound connection to 91.108.56.105:443
+0800 2025-03-10 19:18:02 DEBUG [1557331036 1.67s] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:18:02 INFO [1557331036 1.67s] outbound/direct[direct]: outbound connection to 91.108.56.105:443
+0800 2025-03-10 19:18:02 INFO [2877686722 14.4s] inbound/anytls[0]: [krita] inbound connection to 91.108.56.105:443
+0800 2025-03-10 19:18:02 DEBUG [2877686722 14.4s] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:18:02 INFO [2877686722 14.4s] outbound/direct[direct]: outbound connection to 91.108.56.105:443
+0800 2025-03-10 19:18:24 INFO [2793060301 25.90s] inbound/anytls[0]: [krita] inbound connection to 91.108.56.163:443
+0800 2025-03-10 19:18:24 DEBUG [2793060301 25.90s] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:18:24 INFO [2793060301 25.90s] outbound/direct[direct]: outbound connection to 91.108.56.163:443
+0800 2025-03-10 19:18:28 INFO [1821464013 29.46s] inbound/anytls[0]: [krita] inbound connection to 149.154.171.255:443
+0800 2025-03-10 19:18:28 DEBUG [1821464013 29.46s] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:18:28 INFO [1821464013 29.46s] outbound/direct[direct]: outbound connection to 149.154.171.255:443
+0800 2025-03-10 19:18:28 INFO [2704777359 33.66s] inbound/anytls[0]: [krita] inbound connection to 149.154.175.211:443
+0800 2025-03-10 19:18:28 DEBUG [2704777359 33.66s] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:18:28 INFO [2704777359 33.66s] outbound/direct[direct]: outbound connection to 149.154.175.211:443
+0800 2025-03-10 19:18:28 INFO [3455191438 34.50s] inbound/anytls[0]: [krita] inbound connection to 91.108.56.148:443
+0800 2025-03-10 19:18:28 DEBUG [3455191438 34.50s] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:18:28 INFO [3455191438 34.50s] outbound/direct[direct]: outbound connection to 91.108.56.148:443
+0800 2025-03-10 19:18:28 INFO [1897723283 33.91s] inbound/anytls[0]: [krita] inbound connection to 91.108.56.137:5222
+0800 2025-03-10 19:18:28 DEBUG [1897723283 33.91s] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:18:28 INFO [1897723283 33.91s] outbound/direct[direct]: outbound connection to 91.108.56.137:5222
+0800 2025-03-10 19:18:28 INFO [1402208492 33.89s] inbound/anytls[0]: [krita] inbound connection to 91.108.56.163:443
+0800 2025-03-10 19:18:28 DEBUG [1402208492 33.89s] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:18:28 INFO [1402208492 33.89s] outbound/direct[direct]: outbound connection to 91.108.56.163:443
+0800 2025-03-10 19:18:29 INFO [353765842 38.19s] inbound/anytls[0]: [krita] inbound connection to 149.154.167.255:443
+0800 2025-03-10 19:18:29 DEBUG [353765842 38.19s] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:18:29 INFO [353765842 38.19s] outbound/direct[direct]: outbound connection to 149.154.167.255:443
+0800 2025-03-10 19:18:50 INFO [2793060301 51.53s] inbound/anytls[0]: [krita] inbound connection to cp.cloudflare.com:80
+0800 2025-03-10 19:18:50 DEBUG [2793060301 51.53s] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:18:50 INFO [2793060301 51.53s] outbound/direct[direct]: outbound connection to cp.cloudflare.com:80
+0800 2025-03-10 19:29:50 INFO [3019809406 0ms] inbound/anytls[0]: inbound connection from 223.104.40.190:29953
+0800 2025-03-10 19:29:50 INFO [3019809406 119ms] inbound/anytls[0]: [krita] inbound connection to cp.cloudflare.com:80
+0800 2025-03-10 19:29:50 DEBUG [3019809406 120ms] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:29:50 INFO [3019809406 120ms] outbound/direct[direct]: outbound connection to cp.cloudflare.com:80
+0800 2025-03-10 19:29:50 DEBUG [3019809406 120ms] dns: lookup domain cp.cloudflare.com
+0800 2025-03-10 19:29:50 DEBUG [3019809406 123ms] dns: exchanged cp.cloudflare.com NOERROR 202
+0800 2025-03-10 19:29:50 DEBUG [3019809406 123ms] dns: exchanged AAAA cp.cloudflare.com. 202 IN AAAA 2606:4700::6810:84e5
+0800 2025-03-10 19:29:50 DEBUG [3019809406 123ms] dns: exchanged AAAA cp.cloudflare.com. 202 IN AAAA 2606:4700::6810:85e5
+0800 2025-03-10 19:29:50 DEBUG [3019809406 123ms] dns: exchanged OPT OPT PSEUDOSECTION: EDNS: version 0 flags: MBZ: 0x00ca, udp: 1232
+0800 2025-03-10 19:29:50 DEBUG [3019809406 125ms] dns: exchanged cp.cloudflare.com NOERROR 125
+0800 2025-03-10 19:29:50 DEBUG [3019809406 125ms] dns: exchanged A cp.cloudflare.com. 125 IN A 104.16.132.229
+0800 2025-03-10 19:29:50 DEBUG [3019809406 125ms] dns: exchanged A cp.cloudflare.com. 125 IN A 104.16.133.229
+0800 2025-03-10 19:29:50 DEBUG [3019809406 125ms] dns: exchanged OPT OPT PSEUDOSECTION: EDNS: version 0 flags: MBZ: 0x007d, udp: 1232
+0800 2025-03-10 19:29:50 DEBUG [3019809406 125ms] dns: lookup succeed for cp.cloudflare.com: 104.16.132.229 104.16.133.229 2606:4700::6810:84e5 2606:4700::6810:85e5
+0800 2025-03-10 19:29:52 INFO [3019809406 2.48s] inbound/anytls[0]: [krita] inbound connection to 91.108.56.163:443
+0800 2025-03-10 19:29:52 DEBUG [3019809406 2.48s] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:29:52 INFO [3019809406 2.48s] outbound/direct[direct]: outbound connection to 91.108.56.163:443
+0800 2025-03-10 19:32:02 INFO [985139035 0ms] inbound/anytls[0]: inbound connection from 223.104.40.190:48844
+0800 2025-03-10 19:32:02 INFO [985139035 115ms] inbound/anytls[0]: [krita] inbound connection to [2001:b28:f23f:f005::a]:443
+0800 2025-03-10 19:32:02 DEBUG [985139035 115ms] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:32:02 INFO [985139035 115ms] outbound/direct[direct]: outbound connection to [2001:b28:f23f:f005::a]:443
+0800 2025-03-10 19:32:02 INFO [1094696978 0ms] inbound/anytls[0]: inbound connection from 223.104.40.190:48845
+0800 2025-03-10 19:32:02 INFO [4088184935 0ms] inbound/anytls[0]: inbound connection from 223.104.40.190:48846
+0800 2025-03-10 19:32:02 INFO [4088184935 105ms] inbound/anytls[0]: [krita] inbound connection to [2001:b28:f23f:f005::7]:443
+0800 2025-03-10 19:32:02 DEBUG [4088184935 105ms] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:32:02 INFO [4088184935 105ms] outbound/direct[direct]: outbound connection to [2001:b28:f23f:f005::7]:443
+0800 2025-03-10 19:32:03 INFO [1094696978 499ms] inbound/anytls[0]: [krita] inbound connection to [2001:b28:f23f:f005::7]:443
+0800 2025-03-10 19:32:03 DEBUG [1094696978 499ms] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:32:03 INFO [1094696978 499ms] outbound/direct[direct]: outbound connection to [2001:b28:f23f:f005::7]:443
+0800 2025-03-10 19:32:05 INFO [2423667618 0ms] inbound/anytls[0]: inbound connection from 223.104.40.190:48847
+0800 2025-03-10 19:32:05 INFO [1181881338 0ms] inbound/anytls[0]: inbound connection from 223.104.40.190:48848
+0800 2025-03-10 19:32:05 INFO [2423667618 124ms] inbound/anytls[0]: [krita] inbound connection to 91.108.56.137:5222
+0800 2025-03-10 19:32:05 DEBUG [2423667618 124ms] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:32:05 INFO [2423667618 124ms] outbound/direct[direct]: outbound connection to 91.108.56.137:5222
+0800 2025-03-10 19:32:05 INFO [1181881338 120ms] inbound/anytls[0]: [krita] inbound connection to [2001:b28:f23f:f005::a]:443
+0800 2025-03-10 19:32:05 DEBUG [1181881338 120ms] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:32:05 INFO [1181881338 120ms] outbound/direct[direct]: outbound connection to [2001:b28:f23f:f005::a]:443
+0800 2025-03-10 19:32:11 INFO [1456076148 0ms] inbound/anytls[0]: inbound connection from 223.104.40.190:48849
+0800 2025-03-10 19:32:11 INFO [1456076148 99ms] inbound/anytls[0]: [krita] inbound connection to 95.161.76.101:443
+0800 2025-03-10 19:32:11 DEBUG [1456076148 99ms] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:32:11 INFO [1456076148 99ms] outbound/direct[direct]: outbound connection to 95.161.76.101:443
+0800 2025-03-10 19:32:32 INFO [1456076148 21.13s] inbound/anytls[0]: [krita] inbound connection to 91.108.56.163:443
+0800 2025-03-10 19:32:32 DEBUG [1456076148 21.13s] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:32:32 INFO [1456076148 21.13s] outbound/direct[direct]: outbound connection to 91.108.56.163:443
+0800 2025-03-10 19:32:32 INFO [2423667618 27.43s] inbound/anytls[0]: [krita] inbound connection to 149.154.171.255:443
+0800 2025-03-10 19:32:32 DEBUG [2423667618 27.44s] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:32:32 INFO [2423667618 27.44s] outbound/direct[direct]: outbound connection to 149.154.171.255:443
+0800 2025-03-10 19:32:34 INFO [1181881338 29.46s] inbound/anytls[0]: [krita] inbound connection to 91.108.56.163:443
+0800 2025-03-10 19:32:34 DEBUG [1181881338 29.46s] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:32:34 INFO [1181881338 29.46s] outbound/direct[direct]: outbound connection to 91.108.56.163:443
+0800 2025-03-10 19:32:34 INFO [1094696978 32.2s] inbound/anytls[0]: [krita] inbound connection to 91.108.56.163:443
+0800 2025-03-10 19:32:34 DEBUG [1094696978 32.2s] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:32:34 INFO [1094696978 32.2s] outbound/direct[direct]: outbound connection to 91.108.56.163:443
+0800 2025-03-10 19:32:34 INFO [4088184935 32.0s] inbound/anytls[0]: [krita] inbound connection to 91.108.56.163:443
+0800 2025-03-10 19:32:34 DEBUG [4088184935 32.0s] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:32:34 INFO [4088184935 32.0s] outbound/direct[direct]: outbound connection to 91.108.56.163:443
+0800 2025-03-10 19:32:36 INFO [985139035 34.40s] inbound/anytls[0]: [krita] inbound connection to [2001:b28:f23f:f005::a]:5222
+0800 2025-03-10 19:32:36 DEBUG [985139035 34.41s] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:32:36 INFO [985139035 34.41s] outbound/direct[direct]: outbound connection to [2001:b28:f23f:f005::a]:5222
+0800 2025-03-10 19:32:36 INFO [3019809406 2m46s] inbound/anytls[0]: [krita] inbound connection to [2001:b28:f23f:f005::a]:443
+0800 2025-03-10 19:32:36 DEBUG [3019809406 2m46s] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:32:36 INFO [3019809406 2m46s] outbound/direct[direct]: outbound connection to [2001:b28:f23f:f005::a]:443
+0800 2025-03-10 19:32:36 INFO [1750419504 0ms] inbound/anytls[0]: inbound connection from 223.104.40.190:48850
+0800 2025-03-10 19:32:36 INFO [1750419504 119ms] inbound/anytls[0]: [krita] inbound connection to 91.108.56.163:443
+0800 2025-03-10 19:32:36 DEBUG [1750419504 119ms] router: match[2] network=[udp tcp] => route(direct)
+0800 2025-03-10 19:32:36 INFO [1750419504 119ms] outbound/direct[direct]: outbound connection to 91.108.56.163:443

客户端clashmetaforandroid 内核版本1.19.3

# Capture on 2025-03-10 19:17:47.185
19:17:47.190    Info: [APP] Logcat level: info
19:17:52.304    Info: Start initial configuration in progress
19:17:52.307    Info: Geodata Loader mode: memconservative
19:17:52.308    Info: Geosite Matcher implementation: succinct
19:17:52.321    Info: Initial configuration complete, total time: 3ms
19:17:52.321    Info: Sniffer is closed
19:17:52.351    Info: Start initial Compatible provider default
19:17:52.408    Info: dns:
19:17:52.409    Info:   enable: true
19:17:52.409    Info:   prefer-h3: true
19:17:52.409    Info:   ipv6: true
19:17:52.409    Info:   ipv6-timeout: 100
19:17:52.409    Info:   use-hosts: true
19:17:52.409    Info:   use-system-hosts: true
19:17:52.409    Info:   respect-rules: false
19:17:52.409    Info:   nameserver:
19:17:52.409    Info:       - https://8.8.8.8/dns-query#DNS
19:17:52.410    Info:       - https://1.1.1.1/dns-query#DNS
19:17:52.410    Info:   fallback: []
19:17:52.410    Info:   fallback-filter:
19:17:52.410    Info:       geoip: true
19:17:52.411    Info:       geoip-code: CN
19:17:52.411    Info:       ipcidr: []
19:17:52.411    Info:       domain: []
19:17:52.411    Info:       geosite: []
19:17:52.411    Info:   listen: 0.0.0.0:53
19:17:52.411    Info:   enhanced-mode: fake-ip
19:17:52.411    Info:   fake-ip-range: 198.18.0.1/16
19:17:52.412    Info:   fake-ip-filter:
19:17:52.412    Info:       - '*.lan'
19:17:52.412    Info:       - '*.linksys.com'
19:17:52.412    Info:       - '*.linksyssmartwifi.com'
19:17:52.412    Info:       - swscan.apple.com
19:17:52.412    Info:       - mesu.apple.com
19:17:52.412    Info:       - '*.msftconnecttest.com'
19:17:52.412    Info:       - '*.msftncsi.com'
19:17:52.412    Info:       - time.*.com
19:17:52.412    Info:       - time.*.gov
19:17:52.412    Info:       - time.*.edu.cn
19:17:52.412    Info:       - time.*.apple.com
19:17:52.412    Info:       - time1.*.com
19:17:52.412    Info:       - time2.*.com
19:17:52.414    Info:       - '*.xiami.com'
19:17:52.415    Info:       - localhost.ptlogin2.qq.com
19:17:52.415    Info:       - speed.neu6.edu.cn
19:17:52.416    Info:       - quic://223.5.5.5:853
19:17:52.417    Info:           - https://223.5.5.5/dns-query
19:17:52.422    Info: Start initial configuration in progress
19:17:52.434    Info: Geodata Loader mode: memconservative
19:17:52.434    Info: Geosite Matcher implementation: succinct
19:17:52.435    Info: Finished initial GeoIP rule private => 直连, records: 18
19:17:52.436    Info: Finished initial GeoSite rule cn => , records: 96708
19:17:52.437    Info: Finished initial GeoSite rule category-ntp => 直连, records: 52
19:17:52.437    Info: Finished initial GeoSite rule telegram => Telegram, records: 19
19:17:52.437    Info: Finished initial GeoSite rule steam@cn => 直连, records: 16
19:17:52.438    Info: Finished initial GeoSite rule category-games@cn => 直连, records: 154
19:17:52.438    Info: Finished initial GeoSite rule steam => Steam, records: 49
19:17:52.438    Info: Finished initial GeoSite rule youtube => Youtube, records: 176
19:17:52.438    Info: Finished initial GeoSite rule google => Google, records: 1137
19:17:52.438    Info: Finished initial GeoSite rule google-cn => Google, records: 190
19:17:52.438    Info: Finished initial GeoSite rule facebook => Facebook, records: 395
19:17:52.438    Info: Finished initial GeoSite rule oculus => Facebook, records: 17
19:17:52.438    Info: Finished initial GeoSite rule icloud => 直连, records: 51
19:17:52.438    Info: Finished initial GeoSite rule apple-cn => 直连, records: 174
19:17:52.438    Info: Finished initial GeoSite rule apple => 直连, records: 1774
19:17:52.438    Info: Finished initial GeoSite rule tld-cn => 直连, records: 36
19:17:52.440    Info: Finished initial GeoSite rule cn => 直连, records: 96708
19:17:52.457    Info: Initial configuration complete, total time: 47ms
19:17:52.457    Info: Sniffer is closed
19:17:52.457    Info: Use tcp concurrent
19:17:52.457    Info: Mixed(http+socks) proxy listening at: [::]:7890
19:17:52.457    Info: RESTful API listening at: 127.0.0.1:9090
19:17:52.457   Error: Start DNS server(UDP) error: listen udp 0.0.0.0:53: bind: permission denied
19:17:52.458   Error: Start DNS server(TCP) error: listen tcp 0.0.0.0:53: bind: permission denied
19:17:52.495    Info: Start initial provider speedtest_domain
19:17:52.496    Info: Start initial provider speedtest
19:17:52.496    Info: Start initial provider facebook
19:17:52.496    Info: Start initial provider applications
19:17:52.496    Info: Start initial provider anti-ip-attribution
19:17:52.587   Debug: probing TLS: opening TLS connection: tls: either ServerName or InsecureSkipVerify must be specified in the tls.Config
19:17:52.587   Debug: [https://dns.alidns.com:443/dns-query] using HTTP/3 for this upstream: QUIC was faster
19:17:52.603   Debug: probing TLS: opening TLS connection: tls: either ServerName or InsecureSkipVerify must be specified in the tls.Config
19:17:52.603   Debug: [https://223.5.5.5:443/dns-query] using HTTP/3 for this upstream: QUIC was faster
19:17:52.610   Debug: elapsed on establishing a QUIC connection: 103.857916ms
19:17:52.624    Info: Start initial Compatible provider 中转
19:17:52.624    Info: Start initial Compatible provider 自动
19:17:52.624    Info: Start initial Compatible provider Youtube
19:17:52.624    Info: Start initial Compatible provider default
19:17:52.625    Info: Start initial Compatible provider 直连
19:17:52.625    Info: Start initial Compatible provider Google TV
19:17:52.625    Info: Start initial Compatible provider Google
19:17:52.625    Info: Start initial Compatible provider 屏蔽
19:17:52.625    Info: Start initial Compatible provider Facebook
19:17:52.625    Info: Start initial Compatible provider DNS
19:17:52.625    Info: Start initial Compatible provider Speedtest
19:17:52.633    Info: Start initial Compatible provider 自选节点
19:17:52.633    Info: Start initial Compatible provider IP归属地
19:17:52.633    Info: Start initial Compatible provider Steam
19:17:52.633    Info: Start initial Compatible provider 代理
19:17:52.633    Info: Start initial Compatible provider Telegram
19:17:52.635    Info: UI already exists, skip downloading
19:17:52.635   Debug: Start New Health Checking {40425210-3778-4ff2-88c8-b1e418d22ec3}
19:17:52.636   Debug: Health Checking, proxy: [AnyTls], url: http://cp.cloudflare.com/generate_204, id: {40425210-3778-4ff2-88c8-b1e418d22ec3}
19:17:52.636   Debug: [DNS] resolve xx.xx.xx A from tls://dot.pub:853
19:17:52.636   Debug: Health Checking, proxy: 专线回落, url: http://cp.cloudflare.com/generate_204, id: {40425210-3778-4ff2-88c8-b1e418d22ec3}
19:17:52.641   Debug: [DNS] resolve xx.xx.xx AAAA from tls://dot.pub:853
19:17:52.641   Debug: [DNS] resolve xx.xx.xx A from https://223.5.5.5:443/dns-query
19:17:52.641   Debug: [DNS] resolve xx.xx.xx A from https://dns.alidns.com:443/dns-query
19:17:52.641   Debug: [DNS] resolve xx.xx.xx A from 223.5.5.5:853
19:17:52.641   Debug: [DNS] resolve xx.xx.xx AAAA from https://223.5.5.5:443/dns-query
19:17:52.641   Debug: [DNS] resolve xx.xx.xx AAAA from https://dns.alidns.com:443/dns-query
19:17:52.641   Debug: [DNS] resolve xx.xx.xx AAAA from 223.5.5.5:853
19:17:52.657   Debug: creating a new http client
19:17:52.658   Debug: re-creating the QUIC connection and retrying due to reading response from 223.5.5.5:853: Application error 0x0 (local)
19:17:52.658   Debug: re-creating the QUIC connection and retrying due to reading response from 223.5.5.5:853: Application error 0x0 (local)
19:17:52.674    Info: Patch selector Telegram -> [AnyTls]
19:17:52.684   Debug: probing TLS: opening TLS connection: tls: either ServerName or InsecureSkipVerify must be specified in the tls.Config
19:17:52.685   Debug: [https://223.5.5.5:443/dns-query] using HTTP/3 for this upstream: QUIC was faster
19:17:52.690   Debug: [DNS] hijack udp:172.19.0.2:53 from 172.19.0.1:4588
19:17:52.694   Debug: [DNS] hijack udp:172.19.0.2:53 from 172.19.0.1:41991
19:17:52.750   Debug: [DNS] xx.xx.xx --> [] AAAA from https://223.5.5.5:443/dns-query
19:17:52.750   Debug: [DNS] xx.xx.xx --> [a.b.c.d] A from https://223.5.5.5:443/dns-query
19:17:52.934   Debug: use specified fingerprint:Chrome
19:17:52.971   Debug: [DNS] hijack udp:172.19.0.2:53 from 172.19.0.1:60070
19:17:52.972   Debug: [DNS] resolve _sips._tcp.sipbad08.hbq.r.10086.cn SRV from tls://dot.pub:853
19:17:52.972   Debug: [DNS] resolve _sips._tcp.sipbad08.hbq.r.10086.cn SRV from 223.5.5.5:853
19:17:52.973   Debug: [DNS] resolve _sips._tcp.sipbad08.hbq.r.10086.cn SRV from https://dns.alidns.com:443/dns-query
19:17:52.973   Debug: [DNS] resolve _sips._tcp.sipbad08.hbq.r.10086.cn SRV from https://223.5.5.5:443/dns-query
19:17:52.976   Debug: creating a new http client
19:17:53.009   Debug: [DNS] _sips._tcp.sipbad08.hbq.r.10086.cn --> [] SRV from https://223.5.5.5:443/dns-query
19:17:53.011   Debug: [https://dns.alidns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
19:17:53.045   Debug: [Rule] use default rules
19:17:53.049   Debug: [PKG] 172.19.0.1:48707 --> sipbad08.hbq.r.10086.cn:5260 by 10246[com.android.mms]
19:17:53.054   Debug: [DNS] resolve sipbad08.hbq.r.10086.cn A from tls://dot.pub:853
19:17:53.054   Debug: [DNS] resolve sipbad08.hbq.r.10086.cn A from https://223.5.5.5:443/dns-query
19:17:53.054   Debug: [DNS] resolve sipbad08.hbq.r.10086.cn AAAA from https://223.5.5.5:443/dns-query
19:17:53.054   Debug: [DNS] resolve sipbad08.hbq.r.10086.cn A from https://dns.alidns.com:443/dns-query
19:17:53.054   Debug: [DNS] resolve sipbad08.hbq.r.10086.cn A from 223.5.5.5:853
19:17:53.054   Debug: [DNS] resolve sipbad08.hbq.r.10086.cn AAAA from tls://dot.pub:853
19:17:53.054   Debug: [DNS] resolve sipbad08.hbq.r.10086.cn AAAA from 223.5.5.5:853
19:17:53.054   Debug: [DNS] resolve sipbad08.hbq.r.10086.cn AAAA from https://dns.alidns.com:443/dns-query
19:17:53.092   Debug: [DNS] sipbad08.hbq.r.10086.cn --> [111.63.86.28] A from https://223.5.5.5:443/dns-query
19:17:53.092   Debug: [DNS] sipbad08.hbq.r.10086.cn --> [2409:8004:801:100:1:2012:0:1] AAAA from https://223.5.5.5:443/dns-query
19:17:53.105   Debug: Entering hop loop ...
19:17:53.121    Info: [TCP] 172.19.0.1:48707(com.android.mms) --> sipbad08.hbq.r.10086.cn:5260 match GeoSite(tld-cn) using 直连[DIRECT]
19:17:53.122    Info: [Update padding succeed] 4c1237a3c17e4e7f366692da87aa3001
19:17:53.228   Debug: Health Checked, proxy: [AnyTls], url: http://cp.cloudflare.com/generate_204, alive: true, delay: 90 ms uid: {40425210-3778-4ff2-88c8-b1e418d22ec3}
19:17:53.230   Debug: Finish A Health Checking {40425210-3778-4ff2-88c8-b1e418d22ec3}
19:17:55.289   Debug: Auth success from 127.0.0.1:58024 ->
19:17:55.290   Debug: [Rule] use default rules
19:17:55.291   Debug: [PKG] 127.0.0.1:58024 --> weather-server.allawntech.com:443 by 10170[com.coloros.weather.service]
19:17:55.294   Debug: [DNS] resolve weather-server.allawntech.com A from tls://dot.pub:853
19:17:55.295   Debug: [DNS] resolve weather-server.allawntech.com A from https://223.5.5.5:443/dns-query
19:17:55.295   Debug: [DNS] resolve weather-server.allawntech.com AAAA from tls://dot.pub:853
19:17:55.295   Debug: [DNS] resolve weather-server.allawntech.com AAAA from https://223.5.5.5:443/dns-query
19:17:55.295   Debug: [DNS] resolve weather-server.allawntech.com AAAA from https://dns.alidns.com:443/dns-query
19:17:55.295   Debug: [DNS] resolve weather-server.allawntech.com AAAA from 223.5.5.5:853
19:17:55.295   Debug: [DNS] resolve weather-server.allawntech.com A from 223.5.5.5:853
19:17:55.295   Debug: [DNS] resolve weather-server.allawntech.com A from https://dns.alidns.com:443/dns-query
19:17:55.370   Debug: [DNS] weather-server.allawntech.com --> [117.133.185.102] A from https://223.5.5.5:443/dns-query
19:17:55.371   Debug: [DNS] weather-server.allawntech.com --> [] AAAA from https://223.5.5.5:443/dns-query
19:17:55.571   Debug: [DNS] weather-server.allawntech.com --> [] AAAA from https://dns.alidns.com:443/dns-query
19:17:55.588   Debug: [DNS] weather-server.allawntech.com --> [117.133.185.102] A from 223.5.5.5:853
19:17:55.592   Debug: [DNS] weather-server.allawntech.com --> [] AAAA from 223.5.5.5:853
19:17:55.661   Debug: [DNS] weather-server.allawntech.com --> [] AAAA from tls://dot.pub:853
19:17:56.054   Debug: [Rule] use default rules
19:17:56.058   Debug: [PKG] 172.19.0.1:38796 --> 91.108.56.163:443 by 10373[org.telegram.messenger]
19:17:56.059    Info: [TCP] 172.19.0.1:38796(org.telegram.messenger) --> 91.108.56.163:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:17:56.160   Debug: Auth success from 127.0.0.1:58028 ->
19:17:56.160   Debug: [Rule] use default rules
19:17:56.164   Debug: [PKG] 127.0.0.1:58028 --> firebaselogging.googleapis.com:443 by 10373[org.telegram.messenger]
19:17:56.165   Debug: [DNS] cache hit xx.xx.xx --> [a.b.c.d] A, expire at 2025-03-10 19:17:53
19:17:56.165   Debug: [DNS] cache hit xx.xx.xx --> [] AAAA, expire at 2025-03-10 19:17:54
19:17:56.165   Debug: [DNS] resolve xx.xx.xx AAAA from tls://dot.pub:853
19:17:56.165   Debug: [DNS] resolve xx.xx.xx AAAA from 223.5.5.5:853
19:17:56.165   Debug: [DNS] resolve xx.xx.xx AAAA from https://223.5.5.5:443/dns-query
19:17:56.165   Debug: [DNS] resolve xx.xx.xx AAAA from https://dns.alidns.com:443/dns-query
19:17:56.166   Debug: [DNS] resolve xx.xx.xx A from tls://dot.pub:853
19:17:56.166   Debug: [DNS] resolve xx.xx.xx A from 223.5.5.5:853
19:17:56.166   Debug: [DNS] resolve xx.xx.xx A from https://223.5.5.5:443/dns-query
19:17:56.166   Debug: [DNS] resolve xx.xx.xx A from https://dns.alidns.com:443/dns-query
19:17:56.193   Debug: [DNS] xx.xx.xx --> [a.b.c.d] A from https://223.5.5.5:443/dns-query
19:17:56.193   Debug: [DNS] xx.xx.xx --> [] AAAA from https://223.5.5.5:443/dns-query
19:17:56.239   Debug: use specified fingerprint:Chrome
19:17:56.330    Info: [TCP] 127.0.0.1:58028(org.telegram.messenger) --> firebaselogging.googleapis.com:443 match GeoSite(google) using Google[[AnyTls]]
19:17:56.736   Debug: [DNS] xx.xx.xx --> [a.b.c.d] A from 223.5.5.5:853
19:17:56.738   Debug: [DNS] xx.xx.xx --> [] AAAA from 223.5.5.5:853
19:17:56.767   Debug: [Rule] use default rules
19:17:56.768   Debug: [Rule] use default rules
19:17:56.768   Debug: [Rule] use default rules
19:17:56.768   Debug: [PKG] 172.19.0.1:52558 --> 91.108.56.137:5222 by 10373[org.telegram.messenger]
19:17:56.768   Debug: [PKG] 172.19.0.1:38792 --> 91.108.56.163:443 by 10373[org.telegram.messenger]
19:17:56.768   Debug: [PKG] 172.19.0.1:54474 --> 91.108.56.148:443 by 10373[org.telegram.messenger]
19:17:56.768   Debug: [DNS] cache hit xx.xx.xx --> [a.b.c.d] A, expire at 2025-03-10 19:22:53
19:17:56.768   Debug: [DNS] cache hit xx.xx.xx --> [a.b.c.d] A, expire at 2025-03-10 19:22:53
19:17:56.768   Debug: [DNS] cache hit xx.xx.xx --> [] AAAA, expire at 2025-03-10 19:17:54
19:17:56.768   Debug: [DNS] cache hit xx.xx.xx --> [a.b.c.d] A, expire at 2025-03-10 19:22:53
19:17:56.768   Debug: [DNS] cache hit xx.xx.xx --> [] AAAA, expire at 2025-03-10 19:17:54
19:17:56.769   Debug: [DNS] cache hit xx.xx.xx --> [] AAAA, expire at 2025-03-10 19:17:54
19:17:56.819   Debug: [DNS] xx.xx.xx --> [] AAAA from https://dns.alidns.com:443/dns-query
19:17:56.828   Debug: use specified fingerprint:Chrome
19:17:56.840   Debug: use specified fingerprint:Chrome
19:17:56.842   Debug: use specified fingerprint:Chrome
19:17:56.927    Info: [TCP] 172.19.0.1:52558(org.telegram.messenger) --> 91.108.56.137:5222 match GeoIP(telegram) using Telegram[[AnyTls]]
19:17:56.931    Info: [TCP] 172.19.0.1:38792(org.telegram.messenger) --> 91.108.56.163:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:17:56.935    Info: [TCP] 172.19.0.1:54474(org.telegram.messenger) --> 91.108.56.148:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:17:57.182   Debug: [DNS] xx.xx.xx --> [] AAAA from tls://dot.pub:853
19:18:00.295 Warning: [TCP] dial 直连 (match GeoSite/cn) 127.0.0.1:58024(com.coloros.weather.service) --> weather-server.allawntech.com:443 error: dial tcp 117.133.185.102:443: i/o timeout
19:18:00.313   Debug: Auth success from 127.0.0.1:56704 ->
19:18:00.317   Debug: [Rule] use default rules
19:18:00.317   Debug: [PKG] 127.0.0.1:56704 --> weather-server.allawntech.com:443 by 10170[com.coloros.weather.service]
19:18:00.317   Debug: [DNS] cache hit weather-server.allawntech.com --> [117.133.185.102] A, expire at 2025-03-10 19:21:52
19:18:00.317   Debug: [DNS] cache hit weather-server.allawntech.com --> [] AAAA, expire at 2025-03-10 19:20:55
19:18:00.781   Debug: [Rule] use default rules
19:18:00.781   Debug: [Rule] use default rules
19:18:00.782   Debug: [PKG] 172.19.0.1:50042 --> 149.154.171.255:443 by 10373[org.telegram.messenger]
19:18:00.782   Debug: [DNS] cache hit xx.xx.xx --> [a.b.c.d] A, expire at 2025-03-10 19:22:53
19:18:00.782   Debug: [DNS] cache hit xx.xx.xx --> [] AAAA, expire at 2025-03-10 19:27:57
19:18:00.784   Debug: [PKG] 172.19.0.1:50036 --> 149.154.171.255:443 by 10373[org.telegram.messenger]
19:18:00.785   Debug: [DNS] cache hit xx.xx.xx --> [a.b.c.d] A, expire at 2025-03-10 19:22:53
19:18:00.785   Debug: [DNS] cache hit xx.xx.xx --> [] AAAA, expire at 2025-03-10 19:27:57
19:18:00.934   Debug: use specified fingerprint:Chrome
19:18:00.937   Debug: use specified fingerprint:Chrome
19:18:01.039    Info: [TCP] 172.19.0.1:50036(org.telegram.messenger) --> 149.154.171.255:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:18:01.047    Info: [TCP] 172.19.0.1:50042(org.telegram.messenger) --> 149.154.171.255:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:18:05.318 Warning: [TCP] dial 直连 (match GeoSite/cn) 127.0.0.1:56704(com.coloros.weather.service) --> weather-server.allawntech.com:443 error: dial tcp 117.133.185.102:443: i/o timeout
19:18:07.334   Debug: Auth success from 127.0.0.1:56706 ->
19:18:07.336   Debug: [Rule] use default rules
19:18:07.342   Debug: [PKG] 127.0.0.1:56706 --> weather-server.allawntech.com:443 by 10170[com.coloros.weather.service]
19:18:07.342   Debug: [DNS] cache hit weather-server.allawntech.com --> [117.133.185.102] A, expire at 2025-03-10 19:21:52
19:18:07.343   Debug: [DNS] cache hit weather-server.allawntech.com --> [] AAAA, expire at 2025-03-10 19:20:55
19:18:08.377    Info: [TCP] 127.0.0.1:56706(com.coloros.weather.service) --> weather-server.allawntech.com:443 match GeoSite(cn) using 直连[DIRECT]
19:18:09.958   Debug: Auth success from 127.0.0.1:36848 ->
19:18:09.959   Debug: [Rule] use default rules
19:18:10.146   Debug: Auth success from 127.0.0.1:36860 ->
19:18:10.147   Debug: [Rule] use default rules
19:18:10.468   Debug: Auth success from 127.0.0.1:36918 ->
19:18:10.468   Debug: [Rule] use default rules
19:18:16.451   Debug: [DNS] hijack udp:172.19.0.2:53 from 172.19.0.1:44578
19:18:16.452   Debug: [DNS] hijack udp:172.19.0.2:53 from 172.19.0.1:49867
19:18:16.490   Debug: [DNS] resolve udpolimenew.baidu.com A from tls://dot.pub:853
19:18:16.491   Debug: [DNS] resolve udpolimenew.baidu.com A from https://dns.alidns.com:443/dns-query
19:18:16.494   Debug: [DNS] resolve udpolimenew.baidu.com AAAA from tls://dot.pub:853
19:18:16.494   Debug: [DNS] resolve udpolimenew.baidu.com A from https://223.5.5.5:443/dns-query
19:18:16.494   Debug: [DNS] resolve udpolimenew.baidu.com AAAA from https://223.5.5.5:443/dns-query
19:18:16.494   Debug: [DNS] resolve udpolimenew.baidu.com AAAA from https://dns.alidns.com:443/dns-query
19:18:16.495   Debug: [DNS] resolve udpolimenew.baidu.com AAAA from 223.5.5.5:853
19:18:16.495   Debug: [DNS] resolve udpolimenew.baidu.com A from 223.5.5.5:853
19:18:16.567   Debug: [DNS] udpolimenew.baidu.com --> [] AAAA from https://223.5.5.5:443/dns-query
19:18:16.568   Debug: [DNS] udpolimenew.baidu.com --> [] AAAA from 223.5.5.5:853
19:18:16.574   Debug: [DNS] udpolimenew.baidu.com --> [112.34.112.120] A from https://223.5.5.5:443/dns-query
19:18:16.574   Debug: [DNS] udpolimenew.baidu.com --> [112.34.112.120] A from 223.5.5.5:853
19:18:16.577   Debug: [DNS] udpolimenew.baidu.com --> [] AAAA from https://dns.alidns.com:443/dns-query
19:18:16.684   Debug: [Rule] use default rules
19:18:16.688   Debug: [PKG] 172.19.0.1:51483 --> udpolimenew.baidu.com:4040 by 10428[com.baidu.input_mi]
19:18:16.690    Info: [UDP] 172.19.0.1:51483(com.baidu.input_mi) --> udpolimenew.baidu.com:4040 match GeoSite(cn) using 直连[DIRECT]
19:18:16.818   Debug: [DNS] udpolimenew.baidu.com --> [] AAAA from tls://dot.pub:853
19:18:26.819   Debug: [Rule] use default rules
19:18:26.825   Debug: [PKG] 172.19.0.1:35764 --> 91.108.56.163:443 by 10373[org.telegram.messenger]
19:18:26.825    Info: [TCP] 172.19.0.1:35764(org.telegram.messenger) --> 91.108.56.163:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:18:30.388   Debug: [Rule] use default rules
19:18:30.391   Debug: [PKG] 172.19.0.1:44998 --> 149.154.171.255:443 by 10373[org.telegram.messenger]
19:18:30.391    Info: [TCP] 172.19.0.1:44998(org.telegram.messenger) --> 149.154.171.255:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:18:30.479   Debug: [Rule] use default rules
19:18:30.482   Debug: [PKG] 172.19.0.1:48542 --> 149.154.175.211:443 by 10373[org.telegram.messenger]
19:18:30.483    Info: [TCP] 172.19.0.1:48542(org.telegram.messenger) --> 149.154.175.211:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:18:30.725   Debug: [Rule] use default rules
19:18:30.729   Debug: [Rule] use default rules
19:18:30.733   Debug: [PKG] 172.19.0.1:52572 --> 91.108.56.163:443 by 10373[org.telegram.messenger]
19:18:30.733    Info: [TCP] 172.19.0.1:52572(org.telegram.messenger) --> 91.108.56.163:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:18:30.733   Debug: [Rule] use default rules
19:18:30.733   Debug: [PKG] 172.19.0.1:53812 --> 91.108.56.137:5222 by 10373[org.telegram.messenger]
19:18:30.734    Info: [TCP] 172.19.0.1:53812(org.telegram.messenger) --> 91.108.56.137:5222 match GeoIP(telegram) using Telegram[[AnyTls]]
19:18:30.734   Debug: [PKG] 172.19.0.1:43186 --> 91.108.56.148:443 by 10373[org.telegram.messenger]
19:18:30.737    Info: [TCP] 172.19.0.1:43186(org.telegram.messenger) --> 91.108.56.148:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:18:31.071   Debug: Auth success from 127.0.0.1:44236 ->
19:18:31.071   Debug: [Rule] use default rules
19:18:31.074   Debug: [PKG] 127.0.0.1:44236 --> kit.gotokeep.com:443 by 10575[com.gotokeep.keep]
19:18:31.074   Debug: [DNS] resolve kit.gotokeep.com A from tls://dot.pub:853
19:18:31.074   Debug: [DNS] resolve kit.gotokeep.com AAAA from tls://dot.pub:853
19:18:31.077   Debug: [DNS] resolve kit.gotokeep.com A from https://223.5.5.5:443/dns-query
19:18:31.077   Debug: [DNS] resolve kit.gotokeep.com A from https://dns.alidns.com:443/dns-query
19:18:31.077   Debug: [DNS] resolve kit.gotokeep.com A from 223.5.5.5:853
19:18:31.077   Debug: [DNS] resolve kit.gotokeep.com AAAA from https://223.5.5.5:443/dns-query
19:18:31.077   Debug: [DNS] resolve kit.gotokeep.com AAAA from https://dns.alidns.com:443/dns-query
19:18:31.077   Debug: [DNS] resolve kit.gotokeep.com AAAA from 223.5.5.5:853
19:18:31.117   Debug: [DNS] kit.gotokeep.com --> [42.187.199.248] A from https://dns.alidns.com:443/dns-query
19:18:31.118   Debug: [DNS] kit.gotokeep.com --> [2402:4e00:1900:1806:0:96b4:5056:934b] AAAA from 223.5.5.5:853
19:18:31.127   Debug: [DNS] kit.gotokeep.com --> [42.187.199.248] A from 223.5.5.5:853
19:18:31.132   Debug: [Rule] use default rules
19:18:31.135   Debug: [PKG] 172.19.0.1:40152 --> 149.154.167.255:443 by 10373[org.telegram.messenger]
19:18:31.135    Info: [TCP] 172.19.0.1:40152(org.telegram.messenger) --> 149.154.167.255:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:18:31.155    Info: [TCP] 127.0.0.1:44236(com.gotokeep.keep) --> kit.gotokeep.com:443 match GeoSite(cn) using 直连[DIRECT]
19:18:31.561   Debug: Auth success from 127.0.0.1:44250 ->
19:18:31.562   Debug: [Rule] use default rules
19:18:31.564   Debug: [PKG] 127.0.0.1:44250 --> lbs.map.qq.com:443 by 10575[com.gotokeep.keep]
19:18:31.565   Debug: [DNS] resolve lbs.map.qq.com A from tls://dot.pub:853
19:18:31.565   Debug: [DNS] resolve lbs.map.qq.com A from https://223.5.5.5:443/dns-query
19:18:31.565   Debug: [DNS] resolve lbs.map.qq.com AAAA from tls://dot.pub:853
19:18:31.565   Debug: [DNS] resolve lbs.map.qq.com AAAA from https://dns.alidns.com:443/dns-query
19:18:31.565   Debug: [DNS] resolve lbs.map.qq.com AAAA from https://223.5.5.5:443/dns-query
19:18:31.567   Debug: [DNS] resolve lbs.map.qq.com AAAA from 223.5.5.5:853
19:18:31.567   Debug: [DNS] resolve lbs.map.qq.com A from https://dns.alidns.com:443/dns-query
19:18:31.567   Debug: [DNS] resolve lbs.map.qq.com A from 223.5.5.5:853
19:18:31.692   Debug: [DNS] lbs.map.qq.com --> [2409:8c02:248:101::2b 2409:8c02:248:101::2c] AAAA from tls://dot.pub:853
19:18:31.770   Debug: [DNS] lbs.map.qq.com --> [111.31.3.61 111.31.2.178] A from https://dns.alidns.com:443/dns-query
19:18:31.844   Debug: [DNS] lbs.map.qq.com --> [111.31.3.61 111.31.2.178] A from 223.5.5.5:853
19:18:31.846   Debug: [DNS] lbs.map.qq.com --> [2409:8c02:248:101::2b 2409:8c02:248:101::2c] AAAA from 223.5.5.5:853
19:18:31.877    Info: [TCP] 127.0.0.1:44250(com.gotokeep.keep) --> lbs.map.qq.com:443 match GeoSite(cn) using 直连[DIRECT]
19:18:34.352   Debug: Auth success from 127.0.0.1:44262 ->
19:18:34.352   Debug: [Rule] use default rules
19:18:34.361   Debug: [PKG] 127.0.0.1:44262 --> app-apm.gotokeep.com:443 by 10575[com.gotokeep.keep]
19:18:34.361   Debug: [DNS] resolve app-apm.gotokeep.com A from tls://dot.pub:853
19:18:34.361   Debug: [DNS] resolve app-apm.gotokeep.com A from https://dns.alidns.com:443/dns-query
19:18:34.362   Debug: [DNS] resolve app-apm.gotokeep.com AAAA from tls://dot.pub:853
19:18:34.362   Debug: [DNS] resolve app-apm.gotokeep.com AAAA from https://223.5.5.5:443/dns-query
19:18:34.362   Debug: [DNS] resolve app-apm.gotokeep.com A from https://223.5.5.5:443/dns-query
19:18:34.362   Debug: [DNS] resolve app-apm.gotokeep.com A from 223.5.5.5:853
19:18:34.362   Debug: [DNS] resolve app-apm.gotokeep.com AAAA from https://dns.alidns.com:443/dns-query
19:18:34.362   Debug: [DNS] resolve app-apm.gotokeep.com AAAA from 223.5.5.5:853
19:18:34.409   Debug: [DNS] app-apm.gotokeep.com --> [111.13.145.160] A from https://dns.alidns.com:443/dns-query
19:18:34.411   Debug: [DNS] app-apm.gotokeep.com --> [2409:8c00:7821:1a:8000:0:d00:19] AAAA from https://dns.alidns.com:443/dns-query
19:18:34.411   Debug: [DNS] app-apm.gotokeep.com --> [2409:8c00:7821:1a:8000:0:d00:19] AAAA from https://223.5.5.5:443/dns-query
19:18:34.415   Debug: [DNS] app-apm.gotokeep.com --> [111.13.145.160] A from 223.5.5.5:853
19:18:34.415   Debug: [DNS] app-apm.gotokeep.com --> [2409:8c00:7821:1a:8000:0:d00:19] AAAA from 223.5.5.5:853
19:18:34.438    Info: [TCP] 127.0.0.1:44262(com.gotokeep.keep) --> app-apm.gotokeep.com:443 match GeoSite(cn) using 直连[DIRECT]
19:18:38.306   Debug: Auth success from 127.0.0.1:56284 ->
19:18:38.306   Debug: [Rule] use default rules
19:18:38.308   Debug: [PKG] 127.0.0.1:56284 --> app-measurement.com:443 by 10236[com.google.uid.shared]
19:18:43.131   Debug: [PKG] 127.0.0.1:56296 --> tepoch.finzfin.com:443 by 10287[com.finshell.wallet]
19:18:43.132   Debug: [DNS] resolve tepoch.finzfin.com A from tls://dot.pub:853
19:18:43.133   Debug: [DNS] resolve tepoch.finzfin.com A from https://dns.alidns.com:443/dns-query
19:18:43.133   Debug: [DNS] resolve tepoch.finzfin.com AAAA from tls://dot.pub:853
19:18:43.133   Debug: [DNS] resolve tepoch.finzfin.com A from https://223.5.5.5:443/dns-query
19:18:43.133   Debug: [DNS] resolve tepoch.finzfin.com AAAA from https://223.5.5.5:443/dns-query
19:18:43.133   Debug: [DNS] resolve tepoch.finzfin.com AAAA from https://dns.alidns.com:443/dns-query
19:18:43.133   Debug: [DNS] resolve tepoch.finzfin.com AAAA from 223.5.5.5:853
19:18:43.134   Debug: [DNS] resolve tepoch.finzfin.com A from 223.5.5.5:853
19:18:43.209   Debug: [DNS] tepoch.finzfin.com --> [117.133.187.206] A from https://223.5.5.5:443/dns-query
19:18:43.209   Debug: [DNS] tepoch.finzfin.com --> [] AAAA from https://223.5.5.5:443/dns-query
19:18:43.273   Debug: [DNS] tepoch.finzfin.com --> [117.133.187.206] A from 223.5.5.5:853
19:18:43.317   Debug: [DNS] tepoch.finzfin.com --> [] AAAA from tls://dot.pub:853
19:18:43.360   Debug: [DNS] hijack udp:172.19.0.2:53 from 172.19.0.1:33944
19:18:43.361   Debug: [DNS] hijack udp:172.19.0.2:53 from 172.19.0.1:63851
19:18:43.395    Info: [TCP] 127.0.0.1:56296(com.finshell.wallet) --> tepoch.finzfin.com:443 match GeoSite(cn) using 直连[DIRECT]
19:18:43.533   Debug: [DNS] tepoch.finzfin.com --> [] AAAA from https://dns.alidns.com:443/dns-query
19:18:43.538   Debug: [DNS] tepoch.finzfin.com --> [] AAAA from 223.5.5.5:853
19:18:45.496   Debug: [DNS] hijack udp:172.19.0.2:53 from 172.19.0.1:6247
19:18:45.500   Debug: [DNS] hijack udp:172.19.0.2:53 from 172.19.0.1:61015
19:18:45.530   Debug: [Rule] use default rules
19:18:45.535   Debug: [PKG] 172.19.0.1:57364 --> link123.yunxinfw.com:80 by 10575[com.gotokeep.keep]
19:18:45.538   Debug: [DNS] resolve link123.yunxinfw.com A from tls://dot.pub:853
19:18:45.538   Debug: [DNS] resolve link123.yunxinfw.com A from https://223.5.5.5:443/dns-query
19:18:45.538   Debug: [DNS] resolve link123.yunxinfw.com A from https://dns.alidns.com:443/dns-query
19:18:45.538   Debug: [DNS] resolve link123.yunxinfw.com A from 223.5.5.5:853
19:18:45.538   Debug: [DNS] resolve link123.yunxinfw.com AAAA from tls://dot.pub:853
19:18:45.539   Debug: [DNS] resolve link123.yunxinfw.com AAAA from 223.5.5.5:853
19:18:45.539   Debug: [DNS] resolve link123.yunxinfw.com AAAA from https://223.5.5.5:443/dns-query
19:18:45.539   Debug: [DNS] resolve link123.yunxinfw.com AAAA from https://dns.alidns.com:443/dns-query
19:18:45.606   Debug: [DNS] link123.yunxinfw.com --> [117.187.22.74] A from 223.5.5.5:853
19:18:45.613   Debug: [DNS] link123.yunxinfw.com --> [] AAAA from https://dns.alidns.com:443/dns-query
19:18:45.614   Debug: [DNS] link123.yunxinfw.com --> [] AAAA from 223.5.5.5:853
19:18:45.645   Debug: [DNS] link123.yunxinfw.com --> [] AAAA from https://223.5.5.5:443/dns-query
19:18:45.765    Info: [TCP] 172.19.0.1:57364(com.gotokeep.keep) --> link123.yunxinfw.com:80 match GeoSite(cn) using 直连[DIRECT]
19:18:45.820   Debug: [DNS] link123.yunxinfw.com --> [] AAAA from tls://dot.pub:853
19:18:46.847   Debug: Exiting hop loop ...
19:18:52.429   Debug: Start New Health Checking {0a73557c-5511-42f2-9e8f-bc7a8c85a63a}
19:18:52.430   Debug: Health Checking, proxy: [AnyTls], url: http://cp.cloudflare.com/generate_204, id: {0a73557c-5511-42f2-9e8f-bc7a8c85a63a}
19:18:52.633   Debug: Health Checked, proxy: [AnyTls], url: http://cp.cloudflare.com/generate_204, alive: true, delay: 77 ms uid: {0a73557c-5511-42f2-9e8f-bc7a8c85a63a}
19:18:52.634   Debug: Finish A Health Checking {0a73557c-5511-42f2-9e8f-bc7a8c85a63a}
19:18:58.562   Debug: Auth success from 127.0.0.1:57652 ->
19:18:58.564   Debug: [Rule] use default rules
19:18:58.569   Debug: [PKG] 127.0.0.1:57652 --> apm.gotokeep.com:443 by 10575[com.gotokeep.keep]
19:18:58.570   Debug: [DNS] resolve apm.gotokeep.com A from tls://dot.pub:853
19:18:58.570   Debug: [DNS] resolve apm.gotokeep.com A from https://223.5.5.5:443/dns-query
19:18:58.571   Debug: [DNS] resolve apm.gotokeep.com A from https://dns.alidns.com:443/dns-query
19:18:58.571   Debug: [DNS] resolve apm.gotokeep.com A from 223.5.5.5:853
19:18:58.571   Debug: [DNS] resolve apm.gotokeep.com AAAA from https://dns.alidns.com:443/dns-query
19:18:58.571   Debug: [DNS] resolve apm.gotokeep.com AAAA from tls://dot.pub:853
19:18:58.571   Debug: [DNS] resolve apm.gotokeep.com AAAA from https://223.5.5.5:443/dns-query
19:18:58.572   Debug: [DNS] resolve apm.gotokeep.com AAAA from 223.5.5.5:853
19:18:58.701   Debug: [DNS] apm.gotokeep.com --> [2402:4e00:1207:9d03:0:9c0f:c400:dcb9] AAAA from 223.5.5.5:853
19:18:58.701   Debug: [DNS] apm.gotokeep.com --> [101.42.124.219] A from 223.5.5.5:853
19:18:58.703   Debug: [DNS] apm.gotokeep.com --> [101.42.124.219] A from https://dns.alidns.com:443/dns-query
19:18:58.737    Info: [TCP] 127.0.0.1:57652(com.gotokeep.keep) --> apm.gotokeep.com:443 match GeoSite(cn) using 直连[DIRECT]
19:19:29.262   Debug: Auth success from 127.0.0.1:57186 ->
19:19:29.263   Debug: [Rule] use default rules
19:19:29.265   Debug: Auth success from 127.0.0.1:57202 ->
19:19:29.266   Debug: [Rule] use default rules
19:19:29.269   Debug: Auth success from 127.0.0.1:57216 ->
19:19:29.270   Debug: [Rule] use default rules
19:19:29.270   Debug: [PKG] 127.0.0.1:57202 --> static1-2.keepcdn.com:443 by 10575[com.gotokeep.keep]
19:19:29.273   Debug: [DNS] resolve static1-2.keepcdn.com A from tls://dot.pub:853
19:19:29.276   Debug: [PKG] 127.0.0.1:57186 --> static1-1.keepcdn.com:443 by 10575[com.gotokeep.keep]
19:19:29.277   Debug: [DNS] resolve static1-2.keepcdn.com A from https://223.5.5.5:443/dns-query
19:19:29.278   Debug: [DNS] resolve static1-2.keepcdn.com A from 223.5.5.5:853
19:19:29.278   Debug: [DNS] resolve static1-2.keepcdn.com A from https://dns.alidns.com:443/dns-query
19:19:29.278   Debug: [DNS] resolve static1-2.keepcdn.com AAAA from tls://dot.pub:853
19:19:29.278   Debug: [DNS] resolve static1-1.keepcdn.com A from tls://dot.pub:853
19:19:29.282   Debug: [DNS] resolve static1-1.keepcdn.com A from https://223.5.5.5:443/dns-query
19:19:29.282   Debug: [DNS] resolve static1-1.keepcdn.com AAAA from tls://dot.pub:853
19:19:29.282   Debug: [DNS] resolve static1-1.keepcdn.com AAAA from https://223.5.5.5:443/dns-query
19:19:29.282   Debug: [DNS] resolve static1-1.keepcdn.com AAAA from https://dns.alidns.com:443/dns-query
19:19:29.282   Debug: [DNS] resolve static1-1.keepcdn.com AAAA from 223.5.5.5:853
19:19:29.282   Debug: [DNS] resolve static1-1.keepcdn.com A from https://dns.alidns.com:443/dns-query
19:19:29.282   Debug: [DNS] resolve static1-2.keepcdn.com AAAA from 223.5.5.5:853
19:19:29.282   Debug: [DNS] resolve static1-2.keepcdn.com AAAA from https://223.5.5.5:443/dns-query
19:19:29.282   Debug: [DNS] resolve static1-2.keepcdn.com AAAA from https://dns.alidns.com:443/dns-query
19:19:29.284   Debug: [DNS] resolve static1-1.keepcdn.com A from 223.5.5.5:853
19:19:29.287   Debug: Auth success from 127.0.0.1:57232 ->
19:19:29.287   Debug: [Rule] use default rules
19:19:29.287   Debug: [PKG] 127.0.0.1:57232 --> v1-1.keepcdn.com:443 by 10575[com.gotokeep.keep]
19:19:29.287   Debug: [DNS] resolve v1-1.keepcdn.com A from tls://dot.pub:853
19:19:29.288   Debug: [DNS] resolve v1-1.keepcdn.com AAAA from tls://dot.pub:853
19:19:29.288   Debug: [DNS] resolve v1-1.keepcdn.com A from https://223.5.5.5:443/dns-query
19:19:29.289   Debug: [DNS] resolve v1-1.keepcdn.com A from https://dns.alidns.com:443/dns-query
19:19:29.290   Debug: [DNS] resolve v1-1.keepcdn.com A from 223.5.5.5:853
19:19:29.290   Debug: [DNS] resolve v1-1.keepcdn.com AAAA from https://223.5.5.5:443/dns-query
19:19:29.290   Debug: [DNS] resolve v1-1.keepcdn.com AAAA from https://dns.alidns.com:443/dns-query
19:19:29.290   Debug: [DNS] resolve v1-1.keepcdn.com AAAA from 223.5.5.5:853
19:19:29.291   Debug: [PKG] 127.0.0.1:57216 --> static1.keepcdn.com:443 by 10575[com.gotokeep.keep]
19:19:29.291   Debug: [DNS] resolve static1.keepcdn.com A from tls://dot.pub:853
19:19:29.291   Debug: Auth success from 127.0.0.1:57244 ->
19:19:29.291   Debug: [DNS] resolve static1.keepcdn.com AAAA from tls://dot.pub:853
19:19:29.291   Debug: [DNS] resolve static1.keepcdn.com A from https://223.5.5.5:443/dns-query
19:19:29.291   Debug: [DNS] resolve static1.keepcdn.com A from https://dns.alidns.com:443/dns-query
19:19:29.292   Debug: [DNS] resolve static1.keepcdn.com A from 223.5.5.5:853
19:19:29.292   Debug: [DNS] resolve static1.keepcdn.com AAAA from https://223.5.5.5:443/dns-query
19:19:29.292   Debug: [DNS] resolve static1.keepcdn.com AAAA from https://dns.alidns.com:443/dns-query
19:19:29.292   Debug: [DNS] resolve static1.keepcdn.com AAAA from 223.5.5.5:853
19:19:29.292   Debug: [Rule] use default rules
19:19:29.292   Debug: Auth success from 127.0.0.1:57240 ->
19:19:29.292   Debug: [Rule] use default rules
19:19:29.292   Debug: [PKG] 127.0.0.1:57244 --> v1-2.keepcdn.com:443 by 10575[com.gotokeep.keep]
19:19:29.293   Debug: [DNS] resolve v1-2.keepcdn.com A from tls://dot.pub:853
19:19:29.293   Debug: [DNS] resolve v1-2.keepcdn.com A from https://223.5.5.5:443/dns-query
19:19:29.293   Debug: [DNS] resolve v1-2.keepcdn.com A from https://dns.alidns.com:443/dns-query
19:19:29.293   Debug: [DNS] resolve v1-2.keepcdn.com A from 223.5.5.5:853
19:19:29.293   Debug: [DNS] resolve v1-2.keepcdn.com AAAA from tls://dot.pub:853
19:19:29.293   Debug: [PKG] 127.0.0.1:57240 --> v1.keepcdn.com:443 by 10575[com.gotokeep.keep]
19:19:29.293   Debug: [DNS] resolve v1-2.keepcdn.com AAAA from https://dns.alidns.com:443/dns-query
19:19:29.293   Debug: [DNS] resolve v1-2.keepcdn.com AAAA from https://223.5.5.5:443/dns-query
19:19:29.293   Debug: [DNS] resolve v1-2.keepcdn.com AAAA from 223.5.5.5:853
19:19:29.293   Debug: [DNS] resolve v1.keepcdn.com A from tls://dot.pub:853
19:19:29.293   Debug: [DNS] resolve v1.keepcdn.com AAAA from tls://dot.pub:853
19:19:29.293   Debug: [DNS] resolve v1.keepcdn.com A from https://223.5.5.5:443/dns-query
19:19:29.293   Debug: [DNS] resolve v1.keepcdn.com A from https://dns.alidns.com:443/dns-query
19:19:29.293   Debug: [DNS] resolve v1.keepcdn.com A from 223.5.5.5:853
19:19:29.293   Debug: [DNS] resolve v1.keepcdn.com AAAA from https://223.5.5.5:443/dns-query
19:19:29.293   Debug: [DNS] resolve v1.keepcdn.com AAAA from https://dns.alidns.com:443/dns-query
19:19:29.293   Debug: [DNS] resolve v1.keepcdn.com AAAA from 223.5.5.5:853
19:19:29.307   Debug: [DNS] static1-1.keepcdn.com --> [2409:8c44:b00:ff4a:3a::52 2409:8702:489c:0:70::24] AAAA from https://223.5.5.5:443/dns-query
19:19:29.307   Debug: [DNS] v1.keepcdn.com --> [111.32.209.229 111.32.209.230 111.32.209.232 111.32.209.231 111.32.209.228 111.32.209.234 111.32.209.227 111.32.209.233] A from https://223.5.5.5:443/dns-query
19:19:29.307   Debug: [DNS] static1.keepcdn.com --> [111.32.160.6 111.14.190.68 111.14.190.66 111.32.160.3 111.31.112.84 111.14.190.67 111.14.190.70] A from https://223.5.5.5:443/dns-query
19:19:29.307   Debug: [DNS] static1-1.keepcdn.com --> [111.31.107.115 111.31.107.92 183.204.73.186] A from https://223.5.5.5:443/dns-query
19:19:29.307   Debug: [DNS] static1-2.keepcdn.com --> [223.100.33.210 223.100.33.212 183.204.149.125 111.132.34.17 120.201.120.235 111.132.34.21 111.132.34.20 111.132.34.14 183.204.37.213 111.132.34.16 223.100.35.197 111.132.34.18 111.132.34.19 223.100.35.199 111.132.34.15 221.180.218.236] A from https://223.5.5.5:443/dns-query
19:19:29.308   Debug: [DNS] static1-2.keepcdn.com --> [] AAAA from https://223.5.5.5:443/dns-query
19:19:29.309   Debug: [DNS] v1-1.keepcdn.com --> [2409:8c44:2:140::86] AAAA from https://223.5.5.5:443/dns-query
19:19:29.309   Debug: [DNS] v1-2.keepcdn.com --> [111.132.34.16 120.201.120.236 223.100.35.201 111.132.34.15 223.100.33.212 111.132.34.20 183.204.149.127 183.204.37.207 111.132.34.17 111.132.34.21 223.100.35.200 111.132.34.19 111.132.34.18 221.180.218.240 111.132.34.14 223.100.33.207] A from https://223.5.5.5:443/dns-query
19:19:29.309   Debug: [DNS] v1.keepcdn.com --> [2409:8c02:11c:cf:8000:0:b00:11 2409:8c02:11c:cf:8000:0:b00:12] AAAA from https://223.5.5.5:443/dns-query
19:19:29.309   Debug: [DNS] static1.keepcdn.com --> [] AAAA from https://223.5.5.5:443/dns-query
19:19:29.309   Debug: [DNS] v1-2.keepcdn.com --> [] AAAA from https://223.5.5.5:443/dns-query
19:19:29.312   Debug: [DNS] v1-1.keepcdn.com --> [183.204.64.99] A from https://223.5.5.5:443/dns-query
19:19:29.314   Debug: [DNS] v1-1.keepcdn.com --> [2409:8c44:2:140::86] AAAA from 223.5.5.5:853
19:19:29.314   Debug: [DNS] static1.keepcdn.com --> [2409:8c14:f13:1204:3::3f5 2409:8c14:f05:1202:3::7fc 2409:801a:3000:3:3::3f2 2409:8c14:f05:1202:3::7fb] AAAA from 223.5.5.5:853
19:19:29.318   Debug: [DNS] v1.keepcdn.com --> [2409:8c02:11c:cf:8000:0:b00:12 2409:8c02:11c:cf:8000:0:b00:11] AAAA from 223.5.5.5:853
19:19:29.318   Debug: [DNS] v1.keepcdn.com --> [111.32.209.227 111.32.209.230 111.32.209.234 111.32.209.228 111.32.209.229 111.32.209.233 111.32.209.231 111.32.209.232] A from 223.5.5.5:853
19:19:29.318   Debug: [DNS] static1.keepcdn.com --> [2409:8c14:f05:1202:3::7fb 2409:8c14:f13:1204:3::3f5 2409:8c14:f05:1202:3::7fc 2409:801a:3000:3:3::3f2] AAAA from https://dns.alidns.com:443/dns-query
19:19:29.318   Debug: [DNS] v1-2.keepcdn.com --> [] AAAA from https://dns.alidns.com:443/dns-query
19:19:29.318   Debug: [DNS] v1-2.keepcdn.com --> [] AAAA from 223.5.5.5:853
19:19:29.318   Debug: [DNS] static1.keepcdn.com --> [111.32.209.229 111.32.209.231 111.32.209.233 111.32.209.227 111.32.209.228 111.32.209.234 111.32.209.230 111.32.209.232] A from 223.5.5.5:853
19:19:29.318   Debug: [DNS] v1-1.keepcdn.com --> [183.201.112.57 120.222.231.126 111.6.166.91 183.204.64.99 183.201.114.250 111.13.143.220 120.220.82.100] A from 223.5.5.5:853
19:19:29.318   Debug: [DNS] static1-1.keepcdn.com --> [2409:8702:489c:0:70::24 2409:8c44:b00:ff4a:3a::52] AAAA from 223.5.5.5:853
19:19:29.318   Debug: [DNS] static1-2.keepcdn.com --> [] AAAA from 223.5.5.5:853
19:19:29.319   Debug: [DNS] static1-1.keepcdn.com --> [111.31.107.115 111.31.107.92 183.204.73.186] A from 223.5.5.5:853
19:19:29.319   Debug: [DNS] static1-2.keepcdn.com --> [111.132.34.21 120.201.120.235 221.180.218.237 183.204.37.209 111.132.34.14 223.100.35.197 223.100.33.210 183.204.149.122 111.132.34.15 223.100.35.198 223.100.33.211 111.132.34.16 111.132.34.17 111.132.34.18 111.132.34.19 111.132.34.20] A from 223.5.5.5:853
19:19:29.319   Debug: [DNS] v1-2.keepcdn.com --> [223.100.35.202 223.100.33.208 111.132.34.20 111.132.34.21 111.132.34.14 111.132.34.15 111.132.34.16 111.132.34.17 120.201.120.235 221.180.218.240 183.204.37.210 111.132.34.18 223.100.35.201 223.100.33.207 183.204.149.121 111.132.34.19] A from 223.5.5.5:853
19:19:29.333   Debug: [DNS] static1-2.keepcdn.com --> [] AAAA from https://dns.alidns.com:443/dns-query
19:19:29.337    Info: [TCP] 127.0.0.1:57240(com.gotokeep.keep) --> v1.keepcdn.com:443 match GeoSite(cn) using 直连[DIRECT]
19:19:29.347    Info: [TCP] 127.0.0.1:57232(com.gotokeep.keep) --> v1-1.keepcdn.com:443 match GeoSite(cn) using 直连[DIRECT]
19:19:29.349    Info: [TCP] 127.0.0.1:57216(com.gotokeep.keep) --> static1.keepcdn.com:443 match GeoSite(cn) using 直连[DIRECT]
19:19:29.367    Info: [TCP] 127.0.0.1:57186(com.gotokeep.keep) --> static1-1.keepcdn.com:443 match GeoSite(cn) using 直连[DIRECT]
19:19:29.414   Debug: [DNS] static1-2.keepcdn.com --> [] AAAA from tls://dot.pub:853
19:19:29.424   Debug: [DNS] v1-2.keepcdn.com --> [] AAAA from tls://dot.pub:853
19:19:29.542    Info: [TCP] 127.0.0.1:57202(com.gotokeep.keep) --> static1-2.keepcdn.com:443 match GeoSite(cn) using 直连[DIRECT]
19:19:29.545    Info: [TCP] 127.0.0.1:57244(com.gotokeep.keep) --> v1-2.keepcdn.com:443 match GeoSite(cn) using 直连[DIRECT]
19:20:34.558   Debug: Auth success from 127.0.0.1:40564 ->
19:20:34.558   Debug: [Rule] use default rules
19:20:34.561   Debug: [PKG] 127.0.0.1:40564 --> app-apm.gotokeep.com:443 by 10575[com.gotokeep.keep]
19:20:34.562   Debug: [DNS] cache hit app-apm.gotokeep.com --> [111.13.145.160] A, expire at 2025-03-10 19:18:59
19:20:34.562   Debug: [DNS] cache hit app-apm.gotokeep.com --> [2409:8c00:7821:1a:8000:0:d00:19] AAAA, expire at 2025-03-10 19:19:23
19:20:34.563   Debug: [DNS] resolve app-apm.gotokeep.com A from tls://dot.pub:853
19:20:34.563   Debug: [DNS] resolve app-apm.gotokeep.com AAAA from tls://dot.pub:853
19:20:34.563   Debug: [DNS] resolve app-apm.gotokeep.com A from 223.5.5.5:853
19:20:34.564   Debug: [DNS] resolve app-apm.gotokeep.com A from https://223.5.5.5:443/dns-query
19:20:34.564   Debug: [DNS] resolve app-apm.gotokeep.com A from https://dns.alidns.com:443/dns-query
19:20:34.564   Debug: [DNS] resolve app-apm.gotokeep.com AAAA from https://dns.alidns.com:443/dns-query
19:20:34.564   Debug: [DNS] resolve app-apm.gotokeep.com AAAA from https://223.5.5.5:443/dns-query
19:20:34.564   Debug: [DNS] resolve app-apm.gotokeep.com AAAA from 223.5.5.5:853
19:20:34.588    Info: [TCP] 127.0.0.1:40564(com.gotokeep.keep) --> app-apm.gotokeep.com:443 match GeoSite(cn) using 直连[DIRECT]
19:20:34.604   Debug: [DNS] app-apm.gotokeep.com --> [111.13.145.160] A from 223.5.5.5:853
19:20:34.604   Debug: [DNS] app-apm.gotokeep.com --> [2409:8c00:7821:1a:8000:0:d00:19] AAAA from 223.5.5.5:853
19:21:11.627   Debug: [Rule] use default rules
19:21:11.631   Debug: [PKG] 127.0.0.1:45232 --> sdk.e.qq.com:443 by 10575[com.gotokeep.keep]
19:21:11.634   Debug: [DNS] resolve sdk.e.qq.com A from tls://dot.pub:853
19:21:11.634   Debug: [DNS] resolve sdk.e.qq.com A from https://223.5.5.5:443/dns-query
19:21:11.634   Debug: [DNS] resolve sdk.e.qq.com AAAA from tls://dot.pub:853
19:21:11.635   Debug: [DNS] resolve sdk.e.qq.com AAAA from https://223.5.5.5:443/dns-query
19:21:11.637   Debug: [DNS] resolve sdk.e.qq.com AAAA from https://dns.alidns.com:443/dns-query
19:21:11.638   Debug: [DNS] resolve sdk.e.qq.com AAAA from 223.5.5.5:853
19:21:11.638   Debug: [DNS] resolve sdk.e.qq.com A from 223.5.5.5:853
19:21:11.638   Debug: [DNS] resolve sdk.e.qq.com A from https://dns.alidns.com:443/dns-query
19:21:11.748   Debug: [DNS] sdk.e.qq.com --> [2409:8702:4860:10::62] AAAA from 223.5.5.5:853
19:21:11.753   Debug: [DNS] sdk.e.qq.com --> [111.33.167.62] A from https://dns.alidns.com:443/dns-query
19:21:11.754   Debug: [DNS] sdk.e.qq.com --> [111.33.167.62] A from https://223.5.5.5:443/dns-query
19:21:11.755   Debug: [DNS] sdk.e.qq.com --> [111.33.167.62] A from 223.5.5.5:853
19:21:11.790    Info: [TCP] 127.0.0.1:45232(com.gotokeep.keep) --> sdk.e.qq.com:443 match GeoSite(cn) using 直连[DIRECT]
19:21:29.705   Debug: Auth success from 127.0.0.1:34666 ->
19:21:29.707   Debug: [Rule] use default rules
19:21:29.710   Debug: [PKG] 127.0.0.1:34666 --> static1.keepcdn.com:443 by 10575[com.gotokeep.keep]
19:21:29.711   Debug: [DNS] cache hit static1.keepcdn.com --> [111.32.160.6 111.14.190.68 111.14.190.66 111.32.160.3 111.31.112.84 111.14.190.67 111.14.190.70] A, expire at 2025-03-10 19:19:52
19:21:29.715   Debug: [DNS] resolve static1.keepcdn.com A from tls://dot.pub:853
19:21:29.720   Debug: [DNS] cache hit static1.keepcdn.com --> [2409:8c14:f05:1202:3::7fb 2409:8c14:f13:1204:3::3f5 2409:8c14:f05:1202:3::7fc 2409:801a:3000:3:3::3f2] AAAA, expire at 2025-03-10 19:19:59
19:21:29.720   Debug: [DNS] resolve static1.keepcdn.com A from https://dns.alidns.com:443/dns-query
19:21:29.720   Debug: [DNS] resolve static1.keepcdn.com A from https://223.5.5.5:443/dns-query
19:21:29.720   Debug: [DNS] resolve static1.keepcdn.com A from 223.5.5.5:853
19:21:29.721   Debug: [DNS] resolve static1.keepcdn.com AAAA from tls://dot.pub:853
19:21:29.721   Debug: [DNS] resolve static1.keepcdn.com AAAA from https://223.5.5.5:443/dns-query
19:21:29.721   Debug: [DNS] resolve static1.keepcdn.com AAAA from https://dns.alidns.com:443/dns-query
19:21:29.721   Debug: [DNS] resolve static1.keepcdn.com AAAA from 223.5.5.5:853
19:21:29.729   Debug: Auth success from 127.0.0.1:34694 ->
19:21:29.730   Debug: [Rule] use default rules
19:21:29.730   Debug: [PKG] 127.0.0.1:34694 --> v1-1.keepcdn.com:443 by 10575[com.gotokeep.keep]
19:21:29.730   Debug: Auth success from 127.0.0.1:34678 ->
19:21:29.731   Debug: [DNS] cache hit v1-1.keepcdn.com --> [183.204.64.99] A, expire at 2025-03-10 19:19:30
19:21:29.731   Debug: [DNS] cache hit v1-1.keepcdn.com --> [2409:8c44:2:140::86] AAAA, expire at 2025-03-10 19:19:58
19:21:29.732   Debug: [DNS] resolve v1-1.keepcdn.com AAAA from tls://dot.pub:853
19:21:29.732   Debug: [DNS] resolve v1-1.keepcdn.com AAAA from https://dns.alidns.com:443/dns-query
19:21:29.732   Debug: [DNS] resolve v1-1.keepcdn.com AAAA from https://223.5.5.5:443/dns-query
19:21:29.732   Debug: [DNS] resolve v1-1.keepcdn.com AAAA from 223.5.5.5:853
19:21:29.732   Debug: [Rule] use default rules
19:21:29.732   Debug: [DNS] resolve v1-1.keepcdn.com A from tls://dot.pub:853
19:21:29.734   Debug: [DNS] resolve v1-1.keepcdn.com A from https://223.5.5.5:443/dns-query
19:21:29.734   Debug: [DNS] resolve v1-1.keepcdn.com A from https://dns.alidns.com:443/dns-query
19:21:29.734   Debug: [DNS] resolve v1-1.keepcdn.com A from 223.5.5.5:853
19:21:29.735   Debug: Auth success from 127.0.0.1:34710 ->
19:21:29.735   Debug: [Rule] use default rules
19:21:29.735   Debug: [PKG] 127.0.0.1:34678 --> v1-2.keepcdn.com:443 by 10575[com.gotokeep.keep]
19:21:29.736   Debug: [DNS] cache hit v1-2.keepcdn.com --> [111.132.34.16 120.201.120.236 223.100.35.201 111.132.34.15 223.100.33.212 111.132.34.20 183.204.149.127 183.204.37.207 111.132.34.17 111.132.34.21 223.100.35.200 111.132.34.19 111.132.34.18 221.180.218.240 111.132.34.14 223.100.33.207] A, expire at 2025-03-10 19:20:05
19:21:29.736   Debug: [DNS] cache hit v1-2.keepcdn.com --> [] AAAA, expire at 2025-03-10 19:20:29
19:21:29.736   Debug: [DNS] resolve v1-2.keepcdn.com A from tls://dot.pub:853
19:21:29.736   Debug: [DNS] resolve v1-2.keepcdn.com A from https://223.5.5.5:443/dns-query
19:21:29.736   Debug: [DNS] resolve v1-2.keepcdn.com A from https://dns.alidns.com:443/dns-query
19:21:29.737   Debug: [DNS] resolve v1-2.keepcdn.com A from 223.5.5.5:853
19:21:29.737   Debug: [DNS] resolve v1-2.keepcdn.com AAAA from tls://dot.pub:853
19:21:29.737   Debug: [DNS] resolve v1-2.keepcdn.com AAAA from https://223.5.5.5:443/dns-query
19:21:29.737   Debug: [DNS] resolve v1-2.keepcdn.com AAAA from https://dns.alidns.com:443/dns-query
19:21:29.737   Debug: [DNS] resolve v1-2.keepcdn.com AAAA from 223.5.5.5:853
19:21:29.738   Debug: [PKG] 127.0.0.1:34710 --> v1.keepcdn.com:443 by 10575[com.gotokeep.keep]
19:21:29.742   Debug: [DNS] cache hit v1.keepcdn.com --> [111.32.209.229 111.32.209.230 111.32.209.232 111.32.209.231 111.32.209.228 111.32.209.234 111.32.209.227 111.32.209.233] A, expire at 2025-03-10 19:19:36
19:21:29.743   Debug: [DNS] cache hit v1.keepcdn.com --> [2409:8c02:11c:cf:8000:0:b00:11 2409:8c02:11c:cf:8000:0:b00:12] AAAA, expire at 2025-03-10 19:19:58
19:21:29.743   Debug: [DNS] resolve v1.keepcdn.com AAAA from tls://dot.pub:853
19:21:29.743   Debug: [DNS] resolve v1.keepcdn.com AAAA from https://dns.alidns.com:443/dns-query
19:21:29.743   Debug: [DNS] resolve v1.keepcdn.com AAAA from https://223.5.5.5:443/dns-query
19:21:29.743   Debug: [DNS] resolve v1.keepcdn.com AAAA from 223.5.5.5:853
19:21:29.743   Debug: [DNS] resolve v1.keepcdn.com A from tls://dot.pub:853
19:21:29.744   Debug: [DNS] resolve v1.keepcdn.com A from https://dns.alidns.com:443/dns-query
19:21:29.744   Debug: [DNS] resolve v1.keepcdn.com A from 223.5.5.5:853
19:21:29.744   Debug: [DNS] resolve v1.keepcdn.com A from https://223.5.5.5:443/dns-query
19:21:29.752   Debug: [DNS] static1.keepcdn.com --> [111.32.209.233 111.32.209.232 111.32.209.229 111.32.209.231 111.32.209.234 111.32.209.230 111.32.209.228 111.32.209.227] A from https://dns.alidns.com:443/dns-query
19:21:29.752    Info: [TCP] 127.0.0.1:34666(com.gotokeep.keep) --> static1.keepcdn.com:443 match GeoSite(cn) using 直连[DIRECT]
19:21:29.753   Debug: [DNS] static1.keepcdn.com --> [111.32.209.227 111.32.209.228 111.32.209.229 111.32.209.230 111.32.209.231 111.32.209.232 111.32.209.233 111.32.209.234] A from 223.5.5.5:853
19:21:29.759    Info: [TCP] 127.0.0.1:34694(com.gotokeep.keep) --> v1-1.keepcdn.com:443 match GeoSite(cn) using 直连[DIRECT]
19:21:29.759   Debug: Auth success from 127.0.0.1:34724 ->
19:21:29.759   Debug: [Rule] use default rules
19:21:29.760   Debug: [PKG] 127.0.0.1:34724 --> static1-2.keepcdn.com:443 by 10575[com.gotokeep.keep]
19:21:29.760   Debug: [DNS] cache hit static1-2.keepcdn.com --> [223.100.33.210 223.100.33.212 183.204.149.125 111.132.34.17 120.201.120.235 111.132.34.21 111.132.34.20 111.132.34.14 183.204.37.213 111.132.34.16 223.100.35.197 111.132.34.18 111.132.34.19 223.100.35.199 111.132.34.15 221.180.218.236] A, expire at 2025-03-10 19:19:45
19:21:29.760   Debug: [DNS] resolve static1-2.keepcdn.com A from tls://dot.pub:853
19:21:29.760   Debug: [DNS] cache hit static1-2.keepcdn.com --> [] AAAA, expire at 2025-03-10 19:21:16
19:21:29.761   Debug: [DNS] resolve static1-2.keepcdn.com AAAA from tls://dot.pub:853
19:21:29.761   Debug: [DNS] resolve static1-2.keepcdn.com A from https://223.5.5.5:443/dns-query
19:21:29.761   Debug: [DNS] resolve static1-2.keepcdn.com A from https://dns.alidns.com:443/dns-query
19:21:29.761   Debug: [DNS] resolve static1-2.keepcdn.com A from 223.5.5.5:853
19:21:29.761   Debug: [DNS] resolve static1-2.keepcdn.com AAAA from https://223.5.5.5:443/dns-query
19:21:29.762   Debug: [DNS] resolve static1-2.keepcdn.com AAAA from https://dns.alidns.com:443/dns-query
19:21:29.762   Debug: [DNS] resolve static1-2.keepcdn.com AAAA from 223.5.5.5:853
19:21:29.763    Info: [TCP] 127.0.0.1:34678(com.gotokeep.keep) --> v1-2.keepcdn.com:443 match GeoSite(cn) using 直连[DIRECT]
19:21:29.766    Info: [TCP] 127.0.0.1:34710(com.gotokeep.keep) --> v1.keepcdn.com:443 match GeoSite(cn) using 直连[DIRECT]
19:21:29.767   Debug: [DNS] static1.keepcdn.com --> [2409:8c02:11c:cf:8000:0:b00:11 2409:8c02:11c:cf:8000:0:b00:12] AAAA from 223.5.5.5:853
19:21:29.773   Debug: [DNS] v1-1.keepcdn.com --> [2409:8c44:2:140::86] AAAA from https://dns.alidns.com:443/dns-query
19:21:29.773   Debug: [DNS] v1-1.keepcdn.com --> [120.220.82.100 183.204.224.102 120.222.231.126] A from 223.5.5.5:853
19:21:29.773   Debug: [DNS] v1-2.keepcdn.com --> [] AAAA from https://dns.alidns.com:443/dns-query
19:21:29.773   Debug: [DNS] v1-2.keepcdn.com --> [120.201.120.241 111.132.34.15 111.132.34.20 111.132.34.16 111.132.34.19 223.100.33.208 183.204.37.209 221.180.218.238 223.100.35.204 111.132.34.14 223.100.35.203 223.100.33.212 111.132.34.17 183.204.149.126 111.132.34.18 111.132.34.21] A from https://dns.alidns.com:443/dns-query
19:21:29.773   Debug: [DNS] v1-1.keepcdn.com --> [2409:8c44:2:140::86] AAAA from 223.5.5.5:853
19:21:29.773   Debug: [DNS] v1-2.keepcdn.com --> [223.100.33.210 183.204.149.121 111.132.34.15 223.100.35.198 223.100.33.211 111.132.34.16 111.132.34.17 111.132.34.18 111.132.34.19 111.132.34.20 111.132.34.21 120.201.120.235 221.180.218.237 183.204.37.211 111.132.34.14 223.100.35.197] A from 223.5.5.5:853
19:21:29.774   Debug: [DNS] v1-2.keepcdn.com --> [] AAAA from 223.5.5.5:853
19:21:29.774   Debug: [DNS] v1-1.keepcdn.com --> [183.204.64.99 183.201.114.250 111.13.143.220 183.201.112.57 120.220.82.100 120.222.231.126 111.6.166.91] A from https://dns.alidns.com:443/dns-query
19:21:29.779    Info: [TCP] 127.0.0.1:34724(com.gotokeep.keep) --> static1-2.keepcdn.com:443 match GeoSite(cn) using 直连[DIRECT]
19:21:29.783   Debug: [DNS] v1.keepcdn.com --> [2409:8c14:f05:1202:3::7fb 2409:801a:3000:3:3::3f2 2409:8c14:f05:1202:3::7fc 2409:8c14:f13:1204:3::3f5] AAAA from 223.5.5.5:853
19:21:29.783   Debug: [DNS] v1.keepcdn.com --> [111.32.209.228 111.32.209.231 111.32.209.232 111.32.209.233 111.32.209.227 111.32.209.230 111.32.209.234 111.32.209.229] A from 223.5.5.5:853
19:21:29.784   Debug: [DNS] v1.keepcdn.com --> [183.201.202.191 183.201.202.189] A from https://dns.alidns.com:443/dns-query
19:21:29.798   Debug: [DNS] static1-2.keepcdn.com --> [111.132.34.19 223.100.35.197 223.100.33.207 183.204.149.125 120.201.120.235 221.180.218.239 111.132.34.20 223.100.35.198 223.100.33.208 111.132.34.21 111.132.34.14 111.132.34.15 111.132.34.16 111.132.34.17 111.132.34.18 183.204.37.207] A from https://dns.alidns.com:443/dns-query
19:21:29.800   Debug: [DNS] static1-2.keepcdn.com --> [] AAAA from 223.5.5.5:853
19:21:29.800   Debug: [DNS] static1-2.keepcdn.com --> [111.132.34.15 111.132.34.17 111.132.34.19 223.100.35.199 223.100.33.207 221.180.218.241 120.201.120.238 223.100.33.214 183.204.149.123 183.204.37.214 223.100.35.201 111.132.34.14 111.132.34.18 111.132.34.16 111.132.34.21 111.132.34.20] A from 223.5.5.5:853
19:21:29.801   Debug: [DNS] static1-2.keepcdn.com --> [] AAAA from https://dns.alidns.com:443/dns-query
19:21:29.874   Debug: [DNS] v1-2.keepcdn.com --> [] AAAA from https://223.5.5.5:443/dns-query
19:21:29.888   Debug: [DNS] static1-2.keepcdn.com --> [] AAAA from https://223.5.5.5:443/dns-query
19:21:29.896   Debug: [DNS] static1-2.keepcdn.com --> [] AAAA from tls://dot.pub:853
19:21:29.900   Debug: [DNS] v1-2.keepcdn.com --> [] AAAA from tls://dot.pub:853
19:21:34.714   Debug: Auth success from 127.0.0.1:34728 ->
19:21:34.716   Debug: [Rule] use default rules
19:21:34.719   Debug: [PKG] 127.0.0.1:34728 --> app-apm.gotokeep.com:443 by 10575[com.gotokeep.keep]
19:21:34.721   Debug: [DNS] cache hit app-apm.gotokeep.com --> [2409:8c00:7821:1a:8000:0:d00:19] AAAA, expire at 2025-03-10 19:20:50
19:21:34.721   Debug: [DNS] resolve app-apm.gotokeep.com AAAA from tls://dot.pub:853
19:21:34.723   Debug: [DNS] cache hit app-apm.gotokeep.com --> [111.13.145.160] A, expire at 2025-03-10 19:20:52
19:21:34.724   Debug: [DNS] resolve app-apm.gotokeep.com AAAA from https://223.5.5.5:443/dns-query
19:21:34.724   Debug: [DNS] resolve app-apm.gotokeep.com AAAA from https://dns.alidns.com:443/dns-query
19:21:34.724   Debug: [DNS] resolve app-apm.gotokeep.com AAAA from 223.5.5.5:853
19:21:34.727   Debug: [DNS] resolve app-apm.gotokeep.com A from tls://dot.pub:853
19:21:34.727   Debug: [DNS] resolve app-apm.gotokeep.com A from https://223.5.5.5:443/dns-query
19:21:34.727   Debug: [DNS] resolve app-apm.gotokeep.com A from https://dns.alidns.com:443/dns-query
19:21:34.729   Debug: [DNS] resolve app-apm.gotokeep.com A from 223.5.5.5:853
19:21:34.803    Info: [TCP] 127.0.0.1:34728(com.gotokeep.keep) --> app-apm.gotokeep.com:443 match GeoSite(cn) using 直连[DIRECT]
19:21:34.813   Debug: [DNS] app-apm.gotokeep.com --> [2409:8c00:7821:1a:8000:0:d00:19] AAAA from https://223.5.5.5:443/dns-query
19:21:34.814   Debug: [DNS] app-apm.gotokeep.com --> [111.13.145.160] A from https://223.5.5.5:443/dns-query
19:21:34.814   Debug: [DNS] app-apm.gotokeep.com --> [2409:8c00:7821:1a:8000:0:d00:19] AAAA from 223.5.5.5:853
19:21:34.816   Debug: [DNS] app-apm.gotokeep.com --> [111.13.145.160] A from 223.5.5.5:853
19:21:52.034   Debug: [DNS] hijack udp:172.19.0.2:53 from 172.19.0.1:44443
19:21:52.066   Debug: [DNS] hijack udp:172.19.0.2:53 from 172.19.0.1:58954
19:22:01.828   Debug: [Rule] use default rules
19:22:01.833   Debug: [PKG] [fdfe:dcba:9876::1]:39958 --> [2409:8c1e:75b0:4e::37]:443 by 10323[com.xunmeng.pinduoduo]
19:22:01.946    Info: [TCP] [fdfe:dcba:9876::1]:39958(com.xunmeng.pinduoduo) --> [2409:8c1e:75b0:4e::37]:443 match GeoIP(cn) using 直连[DIRECT]
19:22:18.902   Debug: [Rule] use default rules
19:22:18.904   Debug: [PKG] [fdfe:dcba:9876::1]:51798 --> [2409:8c20:818:3002::c]:80 by 10361[com.tencent.mm]
19:22:18.940   Debug: [Rule] use default rules
19:22:18.942   Debug: [PKG] 172.19.0.1:45410 --> 111.31.201.194:80 by 10361[com.tencent.mm]
19:22:18.979    Info: [TCP] 172.19.0.1:45410(com.tencent.mm) --> 111.31.201.194:80 match GeoIP(cn) using 直连[DIRECT]
19:22:18.989    Info: [TCP] [fdfe:dcba:9876::1]:51798(com.tencent.mm) --> [2409:8c20:818:3002::c]:80 match GeoIP(cn) using 直连[DIRECT]
19:22:24.014   Debug: Auth success from 127.0.0.1:43720 ->
19:22:24.014   Debug: [Rule] use default rules
19:22:24.017   Debug: [PKG] 127.0.0.1:43720 --> kit-device-log-1252363965.cos.ap-beijing.myqcloud.com:443 by 10575[com.gotokeep.keep]
19:22:24.021   Debug: [DNS] resolve kit-device-log-1252363965.cos.ap-beijing.myqcloud.com A from tls://dot.pub:853
19:22:24.022   Debug: [DNS] resolve kit-device-log-1252363965.cos.ap-beijing.myqcloud.com A from https://dns.alidns.com:443/dns-query
19:22:24.022   Debug: [DNS] resolve kit-device-log-1252363965.cos.ap-beijing.myqcloud.com A from 223.5.5.5:853
19:22:24.022   Debug: [DNS] resolve kit-device-log-1252363965.cos.ap-beijing.myqcloud.com AAAA from tls://dot.pub:853
19:22:24.022   Debug: [DNS] resolve kit-device-log-1252363965.cos.ap-beijing.myqcloud.com AAAA from https://223.5.5.5:443/dns-query
19:22:24.023   Debug: [DNS] resolve kit-device-log-1252363965.cos.ap-beijing.myqcloud.com AAAA from https://dns.alidns.com:443/dns-query
19:22:24.023   Debug: [DNS] resolve kit-device-log-1252363965.cos.ap-beijing.myqcloud.com AAAA from 223.5.5.5:853
19:22:24.023   Debug: [DNS] resolve kit-device-log-1252363965.cos.ap-beijing.myqcloud.com A from https://223.5.5.5:443/dns-query
19:22:24.092   Debug: [DNS] kit-device-log-1252363965.cos.ap-beijing.myqcloud.com --> [111.62.151.63 120.221.170.30 120.221.170.18 120.221.169.153 120.221.169.150 111.62.152.82] A from 223.5.5.5:853
19:22:24.095   Debug: [DNS] kit-device-log-1252363965.cos.ap-beijing.myqcloud.com --> [] AAAA from 223.5.5.5:853
19:22:24.096   Debug: [DNS] kit-device-log-1252363965.cos.ap-beijing.myqcloud.com --> [] AAAA from https://dns.alidns.com:443/dns-query
19:22:24.225    Info: [TCP] 127.0.0.1:43720(com.gotokeep.keep) --> kit-device-log-1252363965.cos.ap-beijing.myqcloud.com:443 match GeoSite(cn) using 直连[DIRECT]
19:22:24.336   Debug: [DNS] kit-device-log-1252363965.cos.ap-beijing.myqcloud.com --> [] AAAA from tls://dot.pub:853
19:22:24.426   Debug: [DNS] kit-device-log-1252363965.cos.ap-beijing.myqcloud.com --> [] AAAA from https://223.5.5.5:443/dns-query
19:22:24.590   Debug: [DNS] hijack udp:172.19.0.2:53 from 172.19.0.1:49051
19:22:24.591   Debug: [DNS] resolve 175.151.94.127.in-addr.arpa PTR from tls://dot.pub:853
19:22:24.594   Debug: [DNS] resolve 175.151.94.127.in-addr.arpa PTR from 223.5.5.5:853
19:22:24.596   Debug: [DNS] resolve 175.151.94.127.in-addr.arpa PTR from https://223.5.5.5:443/dns-query
19:22:24.596   Debug: [DNS] resolve 175.151.94.127.in-addr.arpa PTR from https://dns.alidns.com:443/dns-query
19:22:24.618   Debug: [DNS] 175.151.94.127.in-addr.arpa --> [] PTR from https://dns.alidns.com:443/dns-query
19:22:24.618   Debug: [DNS] 175.151.94.127.in-addr.arpa --> [] PTR from 223.5.5.5:853
19:22:34.926   Debug: Auth success from 127.0.0.1:33018 ->
19:22:34.926   Debug: [Rule] use default rules
19:22:34.929   Debug: [PKG] 127.0.0.1:33018 --> app-apm.gotokeep.com:443 by 10575[com.gotokeep.keep]
19:22:34.930   Debug: [DNS] cache hit app-apm.gotokeep.com --> [111.13.145.160] A, expire at 2025-03-10 19:21:35
19:22:34.930   Debug: [DNS] resolve app-apm.gotokeep.com A from tls://dot.pub:853
19:22:34.930   Debug: [DNS] cache hit app-apm.gotokeep.com --> [2409:8c00:7821:1a:8000:0:d00:19] AAAA, expire at 2025-03-10 19:21:35
19:22:34.931   Debug: [DNS] resolve app-apm.gotokeep.com A from https://dns.alidns.com:443/dns-query
19:22:34.932   Debug: [DNS] resolve app-apm.gotokeep.com AAAA from tls://dot.pub:853
19:22:34.932   Debug: [DNS] resolve app-apm.gotokeep.com AAAA from 223.5.5.5:853
19:22:34.932   Debug: [DNS] resolve app-apm.gotokeep.com AAAA from https://dns.alidns.com:443/dns-query
19:22:34.932   Debug: [DNS] resolve app-apm.gotokeep.com A from https://223.5.5.5:443/dns-query
19:22:34.932   Debug: [DNS] resolve app-apm.gotokeep.com AAAA from https://223.5.5.5:443/dns-query
19:22:34.933   Debug: [DNS] resolve app-apm.gotokeep.com A from 223.5.5.5:853
19:22:34.952    Info: [TCP] 127.0.0.1:33018(com.gotokeep.keep) --> app-apm.gotokeep.com:443 match GeoSite(cn) using 直连[DIRECT]
19:22:34.967   Debug: [DNS] app-apm.gotokeep.com --> [111.13.145.160] A from https://223.5.5.5:443/dns-query
19:22:34.968   Debug: [DNS] app-apm.gotokeep.com --> [2409:8c00:7821:1a:8000:0:d00:19] AAAA from 223.5.5.5:853
19:22:34.968   Debug: [DNS] app-apm.gotokeep.com --> [111.13.145.160] A from 223.5.5.5:853
19:22:34.968   Debug: [DNS] app-apm.gotokeep.com --> [2409:8c00:7821:1a:8000:0:d00:19] AAAA from https://223.5.5.5:443/dns-query
19:23:29.895   Debug: Auth success from 127.0.0.1:57480 ->
19:23:29.896   Debug: Auth success from 127.0.0.1:57466 ->
19:23:29.896   Debug: Auth success from 127.0.0.1:57456 ->
19:23:29.896   Debug: [Rule] use default rules
19:23:29.897   Debug: [Rule] use default rules
19:23:29.899   Debug: [PKG] 127.0.0.1:57480 --> static1.keepcdn.com:443 by 10575[com.gotokeep.keep]
19:23:29.900   Debug: [PKG] 127.0.0.1:57466 --> static1-1.keepcdn.com:443 by 10575[com.gotokeep.keep]
19:23:29.900   Debug: [DNS] cache hit static1.keepcdn.com --> [2409:8c02:11c:cf:8000:0:b00:11 2409:8c02:11c:cf:8000:0:b00:12] AAAA, expire at 2025-03-10 19:21:37
19:23:29.907   Debug: [DNS] resolve static1.keepcdn.com AAAA from tls://dot.pub:853
19:23:29.907   Debug: [DNS] cache hit static1.keepcdn.com --> [111.32.209.233 111.32.209.232 111.32.209.229 111.32.209.231 111.32.209.234 111.32.209.230 111.32.209.228 111.32.209.227] A, expire at 2025-03-10 19:21:52
19:23:29.907   Debug: [DNS] resolve static1.keepcdn.com AAAA from https://dns.alidns.com:443/dns-query
19:23:29.907   Debug: [DNS] resolve static1.keepcdn.com AAAA from 223.5.5.5:853
19:23:29.907   Debug: [DNS] cache hit static1-1.keepcdn.com --> [111.31.107.115 111.31.107.92 183.204.73.186] A, expire at 2025-03-10 19:19:30
19:23:29.907   Debug: [DNS] resolve static1-1.keepcdn.com A from tls://dot.pub:853
19:23:29.907   Debug: [DNS] resolve static1.keepcdn.com AAAA from https://223.5.5.5:443/dns-query
19:23:29.908   Debug: [DNS] cache hit static1-1.keepcdn.com --> [2409:8c44:b00:ff4a:3a::52 2409:8702:489c:0:70::24] AAAA, expire at 2025-03-10 19:19:36
19:23:29.908   Debug: [Rule] use default rules
19:23:29.908   Debug: [DNS] resolve static1-1.keepcdn.com A from https://223.5.5.5:443/dns-query
19:23:29.908   Debug: [DNS] resolve static1-1.keepcdn.com A from https://dns.alidns.com:443/dns-query
19:23:29.908   Debug: [DNS] resolve static1-1.keepcdn.com A from 223.5.5.5:853
19:23:29.908   Debug: [PKG] 127.0.0.1:57456 --> static1-2.keepcdn.com:443 by 10575[com.gotokeep.keep]
19:23:29.909   Debug: [DNS] cache hit static1-2.keepcdn.com --> [111.132.34.19 223.100.35.197 223.100.33.207 183.204.149.125 120.201.120.235 221.180.218.239 111.132.34.20 223.100.35.198 223.100.33.208 111.132.34.21 111.132.34.14 111.132.34.15 111.132.34.16 111.132.34.17 111.132.34.18 183.204.37.207] A, expire at 2025-03-10 19:22:14
19:23:29.909   Debug: [DNS] resolve static1-2.keepcdn.com A from tls://dot.pub:853
19:23:29.909   Debug: [DNS] cache hit static1-2.keepcdn.com --> [] AAAA, expire at 2025-03-10 19:23:28
19:23:29.909   Debug: [DNS] resolve static1-1.keepcdn.com AAAA from tls://dot.pub:853
19:23:29.910   Debug: Auth success from 127.0.0.1:57484 ->
19:23:29.910   Debug: [DNS] resolve static1-1.keepcdn.com AAAA from https://223.5.5.5:443/dns-query
19:23:29.910   Debug: [DNS] resolve static1-2.keepcdn.com A from https://223.5.5.5:443/dns-query
19:23:29.910   Debug: [DNS] resolve static1-2.keepcdn.com A from https://dns.alidns.com:443/dns-query
19:23:29.910   Debug: [DNS] resolve static1-2.keepcdn.com A from 223.5.5.5:853
19:23:29.910   Debug: [Rule] use default rules
19:23:29.910   Debug: [DNS] resolve static1.keepcdn.com A from tls://dot.pub:853
19:23:29.910   Debug: [DNS] resolve static1-1.keepcdn.com AAAA from https://dns.alidns.com:443/dns-query
19:23:29.910   Debug: [DNS] resolve static1.keepcdn.com A from https://223.5.5.5:443/dns-query
19:23:29.910   Debug: [DNS] resolve static1.keepcdn.com A from https://dns.alidns.com:443/dns-query
19:23:29.911   Debug: [DNS] resolve static1.keepcdn.com A from 223.5.5.5:853
19:23:29.911   Debug: [DNS] resolve static1-1.keepcdn.com AAAA from 223.5.5.5:853
19:23:29.914   Debug: Auth success from 127.0.0.1:57500 ->
19:23:29.914   Debug: [Rule] use default rules
19:23:29.915   Debug: [PKG] 127.0.0.1:57484 --> v1.keepcdn.com:443 by 10575[com.gotokeep.keep]
19:23:29.916   Debug: [DNS] cache hit v1.keepcdn.com --> [111.32.209.228 111.32.209.231 111.32.209.232 111.32.209.233 111.32.209.227 111.32.209.230 111.32.209.234 111.32.209.229] A, expire at 2025-03-10 19:21:50
19:23:29.917   Debug: [DNS] resolve v1.keepcdn.com AAAA from tls://dot.pub:853
19:23:29.917   Debug: [DNS] resolve v1.keepcdn.com AAAA from https://223.5.5.5:443/dns-query
19:23:29.917   Debug: [DNS] resolve v1.keepcdn.com AAAA from https://dns.alidns.com:443/dns-query
19:23:29.917   Debug: [DNS] resolve v1.keepcdn.com AAAA from 223.5.5.5:853
19:23:29.919   Debug: [PKG] 127.0.0.1:57488 --> v1-2.keepcdn.com:443 by 10575[com.gotokeep.keep]
19:23:29.920   Debug: [DNS] cache hit v1-2.keepcdn.com --> [120.201.120.241 111.132.34.15 111.132.34.20 111.132.34.16 111.132.34.19 223.100.33.208 183.204.37.209 221.180.218.238 223.100.35.204 111.132.34.14 223.100.35.203 223.100.33.212 111.132.34.17 183.204.149.126 111.132.34.18 111.132.34.21] A, expire at 2025-03-10 19:21:58
19:23:29.920   Debug: [DNS] cache hit v1-2.keepcdn.com --> [] AAAA, expire at 2025-03-10 19:24:29
19:23:29.921   Debug: [PKG] 127.0.0.1:57500 --> v1-1.keepcdn.com:443 by 10575[com.gotokeep.keep]
19:23:29.921   Debug: [DNS] cache hit v1-1.keepcdn.com --> [120.220.82.100 183.204.224.102 120.222.231.126] A, expire at 2025-03-10 19:22:29
19:23:29.921   Debug: [DNS] cache hit v1-1.keepcdn.com --> [2409:8c44:2:140::86] AAAA, expire at 2025-03-10 19:21:47
19:23:29.924   Debug: [DNS] resolve v1-2.keepcdn.com A from tls://dot.pub:853
19:23:29.925   Debug: [DNS] resolve v1-2.keepcdn.com A from 223.5.5.5:853
19:23:29.926   Debug: [DNS] resolve v1-1.keepcdn.com A from https://223.5.5.5:443/dns-query
19:23:29.926   Debug: [DNS] resolve v1-1.keepcdn.com AAAA from tls://dot.pub:853
19:23:29.926   Debug: [DNS] resolve v1-1.keepcdn.com A from https://dns.alidns.com:443/dns-query
19:23:29.931    Info: [TCP] 127.0.0.1:57480(com.gotokeep.keep) --> static1.keepcdn.com:443 match GeoSite(cn) using 直连[DIRECT]
19:23:29.931    Info: [TCP] 127.0.0.1:57466(com.gotokeep.keep) --> static1-1.keepcdn.com:443 match GeoSite(cn) using 直连[DIRECT]
19:23:29.931    Info: [TCP] 127.0.0.1:57456(com.gotokeep.keep) --> static1-2.keepcdn.com:443 match GeoSite(cn) using 直连[DIRECT]
19:23:29.940   Debug: [DNS] static1-1.keepcdn.com --> [120.220.158.75 111.31.238.112 111.62.172.114 111.31.107.115 111.31.107.92 111.13.143.221] A from https://223.5.5.5:443/dns-query
19:23:29.943   Debug: [DNS] static1.keepcdn.com --> [] AAAA from https://223.5.5.5:443/dns-query
19:23:29.943   Debug: [DNS] static1-1.keepcdn.com --> [2409:8702:489c:0:70::24 2409:8c04:1003:135:37::19] AAAA from https://dns.alidns.com:443/dns-query
19:23:29.943   Debug: [DNS] static1.keepcdn.com --> [111.14.190.66 111.31.112.84 111.32.160.3 111.14.190.68 111.14.190.70 111.32.160.6 111.14.190.67] A from https://223.5.5.5:443/dns-query
19:23:29.943   Debug: [DNS] static1-2.keepcdn.com --> [223.100.35.202 111.132.34.20 183.204.149.126 223.100.33.213 111.132.34.21 183.204.37.207 120.201.120.240 111.132.34.15 221.180.218.241 111.132.34.14 111.132.34.19 223.100.35.197 111.132.34.18 111.132.34.16 223.100.33.207 111.132.34.17] A from https://223.5.5.5:443/dns-query
19:23:29.943   Debug: [DNS] static1-2.keepcdn.com --> [] AAAA from https://223.5.5.5:443/dns-query
19:23:29.943   Debug: [DNS] static1.keepcdn.com --> [111.14.190.68 111.14.190.66 111.32.160.3 111.31.112.84 111.14.190.67 111.14.190.70 111.32.160.6] A from https://dns.alidns.com:443/dns-query
19:23:29.943   Debug: [DNS] static1.keepcdn.com --> [2409:801a:3000:3:3::3f1 2409:8c14:f05:1202:3::7fb 2409:8c14:f13:1204:3::3f6 2409:8c14:f13:1204:3::3f5 2409:8c14:f05:1202:3::7fc 2409:801a:3000:3:3::3f2] AAAA from https://dns.alidns.com:443/dns-query
19:23:29.943   Debug: [DNS] static1-2.keepcdn.com --> [] AAAA from https://dns.alidns.com:443/dns-query
19:23:29.944   Debug: [DNS] static1.keepcdn.com --> [2409:8c14:f13:1204:3::3f5 2409:8c14:f05:1202:3::7fc 2409:8c14:f05:1202:3::7fb 2409:801a:3000:3:3::3f2] AAAA from 223.5.5.5:853
19:23:29.944   Debug: [DNS] static1.keepcdn.com --> [111.32.160.3 111.14.190.68 111.32.160.6 111.14.190.66 111.14.190.67 111.31.112.84 111.14.190.70] A from 223.5.5.5:853
19:23:29.944   Debug: [DNS] static1-1.keepcdn.com --> [2409:8702:489c:0:70::24 2409:8c04:1003:135:37::19] AAAA from 223.5.5.5:853
19:23:29.944   Debug: [DNS] static1-1.keepcdn.com --> [111.31.107.115 111.31.107.92 111.13.143.221 120.220.158.75 111.31.238.112 111.62.172.114] A from 223.5.5.5:853
19:23:29.944   Debug: [DNS] static1-2.keepcdn.com --> [] AAAA from 223.5.5.5:853
19:23:29.947    Info: [TCP] 127.0.0.1:57488(com.gotokeep.keep) --> v1-2.keepcdn.com:443 match GeoSite(cn) using 直连[DIRECT]
19:23:29.951    Info: [TCP] 127.0.0.1:57484(com.gotokeep.keep) --> v1.keepcdn.com:443 match GeoSite(cn) using 直连[DIRECT]
19:23:29.953   Debug: [DNS] static1-2.keepcdn.com --> [221.180.218.238 120.201.120.235 183.204.149.123 111.132.34.16 223.100.33.207 223.100.35.202 111.132.34.17 223.100.33.208 223.100.35.203 111.132.34.18 111.132.34.19 111.132.34.20 111.132.34.21 111.132.34.14 111.132.34.15 183.204.37.210] A from 223.5.5.5:853
19:23:29.956    Info: [TCP] 127.0.0.1:57500(com.gotokeep.keep) --> v1-1.keepcdn.com:443 match GeoSite(cn) using 直连[DIRECT]
19:23:29.957   Debug: [DNS] v1.keepcdn.com --> [111.32.209.230 111.32.209.229 111.32.209.232 111.32.209.231 111.32.209.228 111.32.209.227 111.32.209.233 111.32.209.234] A from https://223.5.5.5:443/dns-query
19:23:29.957   Debug: [DNS] v1-1.keepcdn.com --> [2409:8c44:2:140::86] AAAA from 223.5.5.5:853
19:23:29.958   Debug: [DNS] v1.keepcdn.com --> [2409:8c14:f05:1202:3::7fc 2409:8c14:f13:1204:3::3f5 2409:8c14:f05:1202:3::7fb 2409:801a:3000:3:3::3f2] AAAA from 223.5.5.5:853
19:23:29.958   Debug: [DNS] v1-2.keepcdn.com --> [223.100.35.197 223.100.35.198 111.132.34.14 183.204.37.212 223.100.33.208 111.132.34.16 111.132.34.15 111.132.34.18 221.180.218.236 111.132.34.21 183.204.149.125 111.132.34.20 111.132.34.19 120.201.120.235 223.100.33.207 111.132.34.17] A from 223.5.5.5:853
19:23:29.958   Debug: [DNS] v1.keepcdn.com --> [111.32.209.229 111.32.209.230 111.32.209.234 111.32.209.227 111.32.209.232 111.32.209.228 111.32.209.231 111.32.209.233] A from 223.5.5.5:853
19:23:29.958   Debug: [DNS] v1.keepcdn.com --> [2409:8c14:f05:1202:3::7fb 2409:8c14:f05:1202:3::7fc 2409:801a:3000:3:3::3f2 2409:8c14:f13:1204:3::3f5] AAAA from https://dns.alidns.com:443/dns-query
19:23:29.958   Debug: [DNS] v1-2.keepcdn.com --> [111.132.34.18 111.132.34.20 223.100.35.200 183.204.37.208 221.180.218.239 120.201.120.239 183.204.149.125 223.100.35.204 111.132.34.21 223.100.33.213 223.100.33.208 111.132.34.17 111.132.34.14 111.132.34.15 111.132.34.16 111.132.34.19] A from https://dns.alidns.com:443/dns-query
19:23:29.976   Debug: [DNS] v1-1.keepcdn.com --> [120.222.231.126 120.220.82.100 183.204.224.102] A from https://dns.alidns.com:443/dns-query
19:23:29.977   Debug: [DNS] v1-1.keepcdn.com --> [120.220.82.100 183.204.224.102 120.222.231.126] A from 223.5.5.5:853
19:23:30.312   Debug: [DNS] static1-2.keepcdn.com --> [] AAAA from tls://dot.pub:853
19:23:33.393   Debug: Auth success from 127.0.0.1:57514 ->
19:23:33.393   Debug: [Rule] use default rules
19:23:33.398   Debug: [PKG] 127.0.0.1:57514 --> tepoch.finzfin.com:443 by 10287[com.finshell.wallet]
19:23:33.399   Debug: [DNS] cache hit tepoch.finzfin.com --> [117.133.187.206] A, expire at 2025-03-10 19:18:44
19:23:33.399   Debug: [DNS] resolve tepoch.finzfin.com A from tls://dot.pub:853
19:23:33.399   Debug: [DNS] cache hit tepoch.finzfin.com --> [] AAAA, expire at 2025-03-10 19:18:44
19:23:33.400   Debug: [DNS] resolve tepoch.finzfin.com A from https://223.5.5.5:443/dns-query
19:23:33.400   Debug: [DNS] resolve tepoch.finzfin.com A from 223.5.5.5:853
19:23:33.400   Debug: [DNS] resolve tepoch.finzfin.com A from https://dns.alidns.com:443/dns-query
19:23:33.400   Debug: [DNS] resolve tepoch.finzfin.com AAAA from tls://dot.pub:853
19:23:33.400   Debug: [DNS] resolve tepoch.finzfin.com AAAA from https://223.5.5.5:443/dns-query
19:23:33.400   Debug: [DNS] resolve tepoch.finzfin.com AAAA from https://dns.alidns.com:443/dns-query
19:23:33.400   Debug: [DNS] resolve tepoch.finzfin.com AAAA from 223.5.5.5:853
19:23:33.453   Debug: [DNS] tepoch.finzfin.com --> [] AAAA from https://223.5.5.5:443/dns-query
19:23:33.458   Debug: [DNS] tepoch.finzfin.com --> [117.133.187.206] A from https://dns.alidns.com:443/dns-query
19:23:33.458   Debug: [DNS] tepoch.finzfin.com --> [] AAAA from https://dns.alidns.com:443/dns-query
19:23:33.459   Debug: [DNS] tepoch.finzfin.com --> [117.133.187.206] A from https://223.5.5.5:443/dns-query
19:23:33.459    Info: [TCP] 127.0.0.1:57514(com.finshell.wallet) --> tepoch.finzfin.com:443 match GeoSite(cn) using 直连[DIRECT]
19:23:33.502   Debug: [DNS] tepoch.finzfin.com --> [] AAAA from 223.5.5.5:853
19:23:33.545   Debug: [DNS] tepoch.finzfin.com --> [117.133.187.206] A from 223.5.5.5:853
19:23:33.744   Debug: [DNS] tepoch.finzfin.com --> [] AAAA from tls://dot.pub:853
19:24:35.066   Debug: [Rule] use default rules
19:24:35.069   Debug: [PKG] 127.0.0.1:34764 --> app-apm.gotokeep.com:443 by 10575[com.gotokeep.keep]
19:24:35.070   Debug: [DNS] cache hit app-apm.gotokeep.com --> [111.13.145.160] A, expire at 2025-03-10 19:22:39
19:24:35.074   Debug: [DNS] cache hit app-apm.gotokeep.com --> [2409:8c00:7821:1a:8000:0:d00:19] AAAA, expire at 2025-03-10 19:22:35
19:24:35.078   Debug: [DNS] resolve app-apm.gotokeep.com A from tls://dot.pub:853
19:24:35.078   Debug: [DNS] resolve app-apm.gotokeep.com A from https://223.5.5.5:443/dns-query
19:24:35.079   Debug: [DNS] resolve app-apm.gotokeep.com A from https://dns.alidns.com:443/dns-query
19:24:35.079   Debug: [DNS] resolve app-apm.gotokeep.com AAAA from tls://dot.pub:853
19:24:35.079   Debug: [DNS] resolve app-apm.gotokeep.com A from 223.5.5.5:853
19:24:35.079   Debug: [DNS] resolve app-apm.gotokeep.com AAAA from 223.5.5.5:853
19:24:35.079   Debug: [DNS] resolve app-apm.gotokeep.com AAAA from https://223.5.5.5:443/dns-query
19:24:35.079   Debug: [DNS] resolve app-apm.gotokeep.com AAAA from https://dns.alidns.com:443/dns-query
19:24:35.124    Info: [TCP] 127.0.0.1:34764(com.gotokeep.keep) --> app-apm.gotokeep.com:443 match GeoSite(cn) using 直连[DIRECT]
19:24:35.124   Debug: [DNS] app-apm.gotokeep.com --> [111.13.145.160] A from https://223.5.5.5:443/dns-query
19:24:35.125   Debug: [DNS] app-apm.gotokeep.com --> [2409:8c00:7821:1a:8000:0:d00:19] AAAA from https://223.5.5.5:443/dns-query
19:24:35.129   Debug: [DNS] app-apm.gotokeep.com --> [111.13.145.160] A from 223.5.5.5:853
19:24:35.129   Debug: [DNS] app-apm.gotokeep.com --> [2409:8c00:7821:1a:8000:0:d00:19] AAAA from 223.5.5.5:853
19:24:52.060   Debug: [DNS] hijack udp:172.19.0.2:53 from 172.19.0.1:13877
19:24:52.061   Debug: [DNS] hijack udp:172.19.0.2:53 from 172.19.0.1:41596
19:25:30.093   Debug: Auth success from 127.0.0.1:39758 ->
19:25:30.094   Debug: [Rule] use default rules
19:25:30.098   Debug: [PKG] 127.0.0.1:39758 --> static1-2.keepcdn.com:443 by 10575[com.gotokeep.keep]
19:25:30.098   Debug: [DNS] cache hit static1-2.keepcdn.com --> [223.100.35.202 111.132.34.20 183.204.149.126 223.100.33.213 111.132.34.21 183.204.37.207 120.201.120.240 111.132.34.15 221.180.218.241 111.132.34.14 111.132.34.19 223.100.35.197 111.132.34.18 111.132.34.16 223.100.33.207 111.132.34.17] A, expire at 2025-03-10 19:23:36
19:25:30.098   Debug: [DNS] cache hit static1-2.keepcdn.com --> [] AAAA, expire at 2025-03-10 19:28:30
19:25:30.100   Debug: [DNS] resolve static1-2.keepcdn.com A from tls://dot.pub:853
19:25:30.101   Debug: [DNS] resolve static1-2.keepcdn.com A from https://dns.alidns.com:443/dns-query
19:25:30.102   Debug: [DNS] resolve static1-2.keepcdn.com A from 223.5.5.5:853
19:25:30.102   Debug: Auth success from 127.0.0.1:39768 ->
19:25:30.103   Debug: [DNS] resolve static1-2.keepcdn.com A from https://223.5.5.5:443/dns-query
19:25:30.103   Debug: [Rule] use default rules
19:25:30.108   Debug: [PKG] 127.0.0.1:39768 --> static1.keepcdn.com:443 by 10575[com.gotokeep.keep]
19:25:30.109   Debug: [DNS] cache hit static1.keepcdn.com --> [2409:801a:3000:3:3::3f1 2409:8c14:f05:1202:3::7fb 2409:8c14:f13:1204:3::3f6 2409:8c14:f13:1204:3::3f5 2409:8c14:f05:1202:3::7fc 2409:801a:3000:3:3::3f2] AAAA, expire at 2025-03-10 19:23:30
19:25:30.110   Debug: [DNS] resolve static1.keepcdn.com AAAA from tls://dot.pub:853
19:25:30.110   Debug: [DNS] resolve static1.keepcdn.com AAAA from https://223.5.5.5:443/dns-query
19:25:30.112   Debug: [DNS] resolve static1.keepcdn.com AAAA from https://dns.alidns.com:443/dns-query
19:25:30.114   Debug: [DNS] resolve static1.keepcdn.com AAAA from 223.5.5.5:853
19:25:30.116   Debug: [DNS] cache hit static1.keepcdn.com --> [111.14.190.66 111.31.112.84 111.32.160.3 111.14.190.68 111.14.190.70 111.32.160.6 111.14.190.67] A, expire at 2025-03-10 19:23:41
19:25:30.117   Debug: [DNS] resolve static1.keepcdn.com A from tls://dot.pub:853
19:25:30.117   Debug: [DNS] resolve static1.keepcdn.com A from https://dns.alidns.com:443/dns-query
19:25:30.117   Debug: [DNS] resolve static1.keepcdn.com A from https://223.5.5.5:443/dns-query
19:25:30.117   Debug: [DNS] resolve static1.keepcdn.com A from 223.5.5.5:853
19:25:30.118   Debug: Auth success from 127.0.0.1:39782 ->
19:25:30.119   Debug: [Rule] use default rules
19:25:30.119   Debug: Auth success from 127.0.0.1:39784 ->
19:25:30.120   Debug: [PKG] 127.0.0.1:39782 --> v1.keepcdn.com:443 by 10575[com.gotokeep.keep]
19:25:30.121   Debug: Auth success from 127.0.0.1:39792 ->
19:25:30.121   Debug: [DNS] cache hit v1.keepcdn.com --> [111.32.209.230 111.32.209.229 111.32.209.232 111.32.209.231 111.32.209.228 111.32.209.227 111.32.209.233 111.32.209.234] A, expire at 2025-03-10 19:23:41
19:25:30.122   Debug: [DNS] resolve v1.keepcdn.com A from tls://dot.pub:853
19:25:30.122   Debug: [DNS] resolve v1.keepcdn.com A from https://223.5.5.5:443/dns-query
19:25:30.122   Debug: [DNS] cache hit v1.keepcdn.com --> [2409:8c14:f05:1202:3::7fb 2409:8c14:f05:1202:3::7fc 2409:801a:3000:3:3::3f2 2409:8c14:f13:1204:3::3f5] AAAA, expire at 2025-03-10 19:23:58
19:25:30.123   Debug: [DNS] resolve v1.keepcdn.com A from https://dns.alidns.com:443/dns-query
19:25:30.123   Debug: [DNS] resolve v1.keepcdn.com A from 223.5.5.5:853
19:25:30.123   Debug: [Rule] use default rules
19:25:30.123   Debug: [Rule] use default rules
19:25:30.123   Debug: [DNS] resolve v1.keepcdn.com AAAA from https://223.5.5.5:443/dns-query
19:25:30.123   Debug: [DNS] resolve v1.keepcdn.com AAAA from tls://dot.pub:853
19:25:30.123   Debug: [DNS] resolve v1.keepcdn.com AAAA from https://dns.alidns.com:443/dns-query
19:25:30.123   Debug: [DNS] resolve v1.keepcdn.com AAAA from 223.5.5.5:853
19:25:30.123   Debug: [PKG] 127.0.0.1:39784 --> v1-1.keepcdn.com:443 by 10575[com.gotokeep.keep]
19:25:30.123   Debug: [PKG] 127.0.0.1:39792 --> v1-2.keepcdn.com:443 by 10575[com.gotokeep.keep]
19:25:30.125   Debug: [DNS] cache hit v1-2.keepcdn.com --> [223.100.35.197 223.100.35.198 111.132.34.14 183.204.37.212 223.100.33.208 111.132.34.16 111.132.34.15 111.132.34.18 221.180.218.236 111.132.34.21 183.204.149.125 111.132.34.20 111.132.34.19 120.201.120.235 223.100.33.207 111.132.34.17] A, expire at 2025-03-10 19:24:01
19:25:30.125   Debug: [DNS] resolve v1-2.keepcdn.com A from tls://dot.pub:853
19:25:30.125   Debug: [DNS] cache hit v1-2.keepcdn.com --> [] AAAA, expire at 2025-03-10 19:24:29
19:25:30.125   Debug: [DNS] resolve v1-2.keepcdn.com A from https://223.5.5.5:443/dns-query
19:25:30.127   Debug: [DNS] resolve v1-2.keepcdn.com A from https://dns.alidns.com:443/dns-query
19:25:30.127   Debug: [DNS] resolve v1-2.keepcdn.com A from 223.5.5.5:853
19:25:30.127   Debug: [DNS] resolve v1-2.keepcdn.com AAAA from tls://dot.pub:853
19:25:30.127   Debug: [DNS] resolve v1-2.keepcdn.com AAAA from https://223.5.5.5:443/dns-query
19:25:30.127   Debug: [DNS] resolve v1-2.keepcdn.com AAAA from https://dns.alidns.com:443/dns-query
19:25:30.127   Debug: [DNS] resolve v1-2.keepcdn.com AAAA from 223.5.5.5:853
19:25:30.127   Debug: [DNS] cache hit v1-1.keepcdn.com --> [120.222.231.126 120.220.82.100 183.204.224.102] A, expire at 2025-03-10 19:23:30
19:25:30.128   Debug: [DNS] resolve v1-1.keepcdn.com A from tls://dot.pub:853
19:25:30.128   Debug: [DNS] cache hit v1-1.keepcdn.com --> [2409:8c44:2:140::86] AAAA, expire at 2025-03-10 19:23:30
19:25:30.128   Debug: [DNS] resolve v1-1.keepcdn.com A from https://223.5.5.5:443/dns-query
19:25:30.128   Debug: [DNS] resolve v1-1.keepcdn.com A from https://dns.alidns.com:443/dns-query
19:25:30.128   Debug: [DNS] resolve v1-1.keepcdn.com A from 223.5.5.5:853
19:25:30.129   Debug: [DNS] resolve v1-1.keepcdn.com AAAA from tls://dot.pub:853
19:25:30.129   Debug: [DNS] resolve v1-1.keepcdn.com AAAA from https://223.5.5.5:443/dns-query
19:25:30.129   Debug: [DNS] resolve v1-1.keepcdn.com AAAA from https://dns.alidns.com:443/dns-query
19:25:30.129   Debug: [DNS] resolve v1-1.keepcdn.com AAAA from 223.5.5.5:853
19:25:30.154    Info: [TCP] 127.0.0.1:39758(com.gotokeep.keep) --> static1-2.keepcdn.com:443 match GeoSite(cn) using 直连[DIRECT]
19:25:30.155    Info: [TCP] 127.0.0.1:39768(com.gotokeep.keep) --> static1.keepcdn.com:443 match GeoSite(cn) using 直连[DIRECT]
19:25:30.155    Info: [TCP] 127.0.0.1:39792(com.gotokeep.keep) --> v1-2.keepcdn.com:443 match GeoSite(cn) using 直连[DIRECT]
19:25:30.155   Debug: [DNS] static1.keepcdn.com --> [2409:8c14:f05:1202:3::7fb 2409:8c14:f13:1204:3::3f5 2409:801a:3000:3:3::3f1 2409:8c14:f05:1202:3::7fc] AAAA from 223.5.5.5:853
19:25:30.155   Debug: [DNS] v1.keepcdn.com --> [111.32.209.233 111.32.209.234 111.32.209.227 111.32.209.228 111.32.209.229 111.32.209.230 111.32.209.231 111.32.209.232] A from 223.5.5.5:853
19:25:30.156   Debug: [DNS] static1.keepcdn.com --> [111.13.143.221 111.31.107.92 111.31.107.115 111.31.238.112 120.220.158.75 111.62.172.114] A from 223.5.5.5:853
19:25:30.157    Info: [TCP] 127.0.0.1:39782(com.gotokeep.keep) --> v1.keepcdn.com:443 match GeoSite(cn) using 直连[DIRECT]
19:25:30.158   Debug: [DNS] static1-2.keepcdn.com --> [223.100.33.211 111.132.34.18 223.100.35.200 183.204.149.121 111.132.34.21 223.100.33.212 111.132.34.17 183.204.37.209 111.132.34.15 111.132.34.16 223.100.35.199 221.180.218.238 111.132.34.20 111.132.34.19 111.132.34.14 120.201.120.235] A from https://223.5.5.5:443/dns-query
19:25:30.158   Debug: [DNS] static1-2.keepcdn.com --> [223.100.33.212 111.132.34.18 120.201.120.235 111.132.34.17 111.132.34.19 183.204.37.209 111.132.34.15 111.132.34.16 223.100.35.200 183.204.149.121 223.100.33.211 111.132.34.21 111.132.34.20 223.100.35.199 111.132.34.14 221.180.218.238] A from 223.5.5.5:853
19:25:30.158   Debug: [DNS] static1.keepcdn.com --> [2409:8c14:f05:1202:3::7fb 2409:8c14:f13:1204:3::3f5 2409:8c14:f05:1202:3::7fc 2409:801a:3000:3:3::3f1] AAAA from https://223.5.5.5:443/dns-query
19:25:30.158   Debug: [DNS] static1.keepcdn.com --> [111.32.209.228 111.32.209.229 111.32.209.230 111.32.209.231 111.32.209.232 111.32.209.233 111.32.209.234 111.32.209.227] A from https://223.5.5.5:443/dns-query
19:25:30.158   Debug: [DNS] v1.keepcdn.com --> [111.32.209.232 111.32.209.228 111.32.209.229 111.32.209.234 111.32.209.231 111.32.209.230 111.32.209.227 111.32.209.233] A from https://223.5.5.5:443/dns-query
19:25:30.158   Debug: [DNS] static1.keepcdn.com --> [111.32.209.233 111.32.209.234 111.32.209.227 111.32.209.228 111.32.209.229 111.32.209.230 111.32.209.231 111.32.209.232] A from https://dns.alidns.com:443/dns-query
19:25:30.159   Debug: [DNS] static1-2.keepcdn.com --> [111.132.34.20 223.100.33.210 223.100.35.197 120.201.120.240 183.204.149.124 183.204.37.209 111.132.34.21 223.100.33.211 223.100.35.198 111.132.34.14 111.132.34.15 111.132.34.16 111.132.34.17 111.132.34.18 111.132.34.19 221.180.218.238] A from https://dns.alidns.com:443/dns-query
19:25:30.159   Debug: [DNS] static1.keepcdn.com --> [2409:8c14:f05:1202:3::7fc 2409:801a:3000:3:3::3f1 2409:8c14:f05:1202:3::7fb 2409:8c14:f13:1204:3::3f5] AAAA from https://dns.alidns.com:443/dns-query
19:25:30.163   Debug: [DNS] v1-1.keepcdn.com --> [183.204.224.102 120.222.231.126 120.220.82.100] A from https://223.5.5.5:443/dns-query
19:25:30.164    Info: [TCP] 127.0.0.1:39784(com.gotokeep.keep) --> v1-1.keepcdn.com:443 match GeoSite(cn) using 直连[DIRECT]
19:25:30.165   Debug: [DNS] v1.keepcdn.com --> [2409:8c14:f05:1202:3::7fb 2409:801a:3000:3:3::3f2 2409:8c14:f05:1202:3::7fc 2409:8c14:f13:1204:3::3f5] AAAA from 223.5.5.5:853
19:25:30.165   Debug: [DNS] v1-1.keepcdn.com --> [120.220.82.100 120.222.231.126 183.204.224.102] A from 223.5.5.5:853
19:25:30.167   Debug: [DNS] v1-2.keepcdn.com --> [] AAAA from 223.5.5.5:853
19:25:30.167   Debug: [DNS] v1-2.keepcdn.com --> [111.132.34.18 111.132.34.20 111.132.34.17 111.132.34.19 111.132.34.14 111.132.34.15 111.132.34.21 111.132.34.16 223.100.35.199 223.100.33.207 120.201.120.236 221.180.218.236 183.204.37.212 183.204.149.124 223.100.33.213 223.100.35.197] A from 223.5.5.5:853
19:25:30.167   Debug: [DNS] v1-1.keepcdn.com --> [2409:8c44:2:140::86] AAAA from 223.5.5.5:853
19:25:30.167   Debug: [DNS] v1-2.keepcdn.com --> [111.132.34.16 111.132.34.20 183.204.149.124 223.100.33.212 111.132.34.21 223.100.35.203 223.100.35.201 111.132.34.17 111.132.34.18 111.132.34.19 221.180.218.242 183.204.37.211 111.132.34.14 111.132.34.15 120.201.120.235 223.100.33.211] A from https://dns.alidns.com:443/dns-query
19:25:30.167   Debug: [DNS] v1-2.keepcdn.com --> [] AAAA from https://dns.alidns.com:443/dns-query
19:25:30.184   Debug: [DNS] v1-2.keepcdn.com --> [] AAAA from https://223.5.5.5:443/dns-query
19:25:37.688   Debug: [Rule] use default rules
19:25:37.688   Debug: [PKG] [fdfe:dcba:9876::1]:54166 --> [2409:8c20:818:3003::22]:80 by 10361[com.tencent.mm]
19:25:37.735    Info: [TCP] [fdfe:dcba:9876::1]:54166(com.tencent.mm) --> [2409:8c20:818:3003::22]:80 match GeoIP(cn) using 直连[DIRECT]
19:25:46.299   Debug: [Rule] use default rules
19:25:46.301   Debug: [PKG] [fdfe:dcba:9876::1]:54168 --> [2409:8c20:818:3003::22]:80 by 10361[com.tencent.mm]
19:25:46.425    Info: [TCP] [fdfe:dcba:9876::1]:54168(com.tencent.mm) --> [2409:8c20:818:3003::22]:80 match GeoIP(cn) using 直连[DIRECT]
19:26:14.099   Debug: [Rule] use default rules
19:26:14.103   Debug: [PKG] 127.0.0.1:55324 --> sdk.e.qq.com:443 by 10575[com.gotokeep.keep]
19:26:14.105   Debug: [DNS] cache hit sdk.e.qq.com --> [111.33.167.62] A, expire at 2025-03-10 19:22:10
19:26:14.106   Debug: [DNS] cache hit sdk.e.qq.com --> [2409:8702:4860:10::62] AAAA, expire at 2025-03-10 19:21:59
19:26:14.106   Debug: [DNS] resolve sdk.e.qq.com A from https://223.5.5.5:443/dns-query
19:26:14.107   Debug: [DNS] resolve sdk.e.qq.com A from https://dns.alidns.com:443/dns-query
19:26:14.107   Debug: [DNS] resolve sdk.e.qq.com A from tls://dot.pub:853
19:26:14.107   Debug: [DNS] resolve sdk.e.qq.com A from 223.5.5.5:853
19:26:14.108   Debug: [DNS] resolve sdk.e.qq.com AAAA from tls://dot.pub:853
19:26:14.108   Debug: [DNS] resolve sdk.e.qq.com AAAA from https://dns.alidns.com:443/dns-query
19:26:14.109   Debug: [DNS] resolve sdk.e.qq.com AAAA from https://223.5.5.5:443/dns-query
19:26:14.109   Debug: [DNS] resolve sdk.e.qq.com AAAA from 223.5.5.5:853
19:26:14.144    Info: [TCP] 127.0.0.1:55324(com.gotokeep.keep) --> sdk.e.qq.com:443 match GeoSite(cn) using 直连[DIRECT]
19:26:14.148   Debug: [DNS] sdk.e.qq.com --> [111.33.167.62] A from https://dns.alidns.com:443/dns-query
19:26:14.149   Debug: [DNS] sdk.e.qq.com --> [2409:8702:4860:10::62] AAAA from https://223.5.5.5:443/dns-query
19:26:14.164   Debug: [DNS] sdk.e.qq.com --> [2409:8702:4860:10::62] AAAA from 223.5.5.5:853
19:26:14.166   Debug: [DNS] sdk.e.qq.com --> [111.33.167.62] A from 223.5.5.5:853
19:26:16.237   Debug: [DNS] hijack udp:172.19.0.2:53 from 172.19.0.1:57954
19:26:16.240   Debug: [DNS] hijack udp:172.19.0.2:53 from 172.19.0.1:8982
19:26:35.260   Debug: [Rule] use default rules
19:26:35.263   Debug: [PKG] 127.0.0.1:34036 --> app-apm.gotokeep.com:443 by 10575[com.gotokeep.keep]
19:26:35.264   Debug: [DNS] cache hit app-apm.gotokeep.com --> [111.13.145.160] A, expire at 2025-03-10 19:24:36
19:26:35.264   Debug: [DNS] resolve app-apm.gotokeep.com A from tls://dot.pub:853
19:26:35.264   Debug: [DNS] cache hit app-apm.gotokeep.com --> [2409:8c00:7821:1a:8000:0:d00:19] AAAA, expire at 2025-03-10 19:24:54
19:26:35.266   Debug: [DNS] resolve app-apm.gotokeep.com AAAA from tls://dot.pub:853
19:26:35.266   Debug: [DNS] resolve app-apm.gotokeep.com A from https://223.5.5.5:443/dns-query
19:26:35.266   Debug: [DNS] resolve app-apm.gotokeep.com A from https://dns.alidns.com:443/dns-query
19:26:35.269   Debug: [DNS] resolve app-apm.gotokeep.com A from 223.5.5.5:853
19:26:35.269   Debug: [DNS] resolve app-apm.gotokeep.com AAAA from https://dns.alidns.com:443/dns-query
19:26:35.269   Debug: [DNS] resolve app-apm.gotokeep.com AAAA from https://223.5.5.5:443/dns-query
19:26:35.269   Debug: [DNS] resolve app-apm.gotokeep.com AAAA from 223.5.5.5:853
19:26:35.367    Info: [TCP] 127.0.0.1:34036(com.gotokeep.keep) --> app-apm.gotokeep.com:443 match GeoSite(cn) using 直连[DIRECT]
19:26:35.374   Debug: [DNS] app-apm.gotokeep.com --> [2409:8c00:7821:1a:8000:0:d00:19] AAAA from 223.5.5.5:853
19:26:35.376   Debug: [DNS] app-apm.gotokeep.com --> [111.13.145.160] A from 223.5.5.5:853
19:26:36.329   Debug: [DNS] hijack udp:172.19.0.2:53 from 172.19.0.1:41426
19:26:36.333   Debug: [DNS] hijack udp:172.19.0.2:53 from 172.19.0.1:20500
19:27:30.424   Debug: Auth success from 127.0.0.1:43408 ->
19:27:30.424   Debug: [Rule] use default rules
19:27:30.425   Debug: [Rule] use default rules
19:27:30.426   Debug: Auth success from 127.0.0.1:43414 ->
19:27:30.426   Debug: [Rule] use default rules
19:27:30.426   Debug: [PKG] 127.0.0.1:43408 --> static1-1.keepcdn.com:443 by 10575[com.gotokeep.keep]
19:27:30.426   Debug: [DNS] cache hit static1-1.keepcdn.com --> [120.220.158.75 111.31.238.112 111.62.172.114 111.31.107.115 111.31.107.92 111.13.143.221] A, expire at 2025-03-10 19:23:58
19:27:30.426   Debug: [DNS] cache hit static1-1.keepcdn.com --> [2409:8702:489c:0:70::24 2409:8c04:1003:135:37::19] AAAA, expire at 2025-03-10 19:24:00
19:27:30.427   Debug: [DNS] resolve static1-1.keepcdn.com AAAA from tls://dot.pub:853
19:27:30.427   Debug: [PKG] 127.0.0.1:43410 --> static1-2.keepcdn.com:443 by 10575[com.gotokeep.keep]
19:27:30.427   Debug: [PKG] 127.0.0.1:43414 --> static1.keepcdn.com:443 by 10575[com.gotokeep.keep]
19:27:30.427   Debug: [DNS] resolve static1-1.keepcdn.com AAAA from https://dns.alidns.com:443/dns-query
19:27:30.427   Debug: [DNS] resolve static1-1.keepcdn.com AAAA from https://223.5.5.5:443/dns-query
19:27:30.427   Debug: [DNS] resolve static1-1.keepcdn.com AAAA from 223.5.5.5:853
19:27:30.427   Debug: [DNS] cache hit static1-2.keepcdn.com --> [111.132.34.20 223.100.33.210 223.100.35.197 120.201.120.240 183.204.149.124 183.204.37.209 111.132.34.21 223.100.33.211 223.100.35.198 111.132.34.14 111.132.34.15 111.132.34.16 111.132.34.17 111.132.34.18 111.132.34.19 221.180.218.238] A, expire at 2025-03-10 19:25:48
19:27:30.427   Debug: [DNS] resolve static1-2.keepcdn.com A from tls://dot.pub:853
19:27:30.427   Debug: [DNS] cache hit static1.keepcdn.com --> [111.13.143.221 111.31.107.92 111.31.107.115 111.31.238.112 120.220.158.75 111.62.172.114] A, expire at 2025-03-10 19:25:52
19:27:30.427   Debug: [DNS] cache hit static1.keepcdn.com --> [2409:8c14:f05:1202:3::7fb 2409:8c14:f13:1204:3::3f5 2409:801a:3000:3:3::3f1 2409:8c14:f05:1202:3::7fc] AAAA, expire at 2025-03-10 19:25:37
19:27:30.427   Debug: [DNS] cache hit static1-2.keepcdn.com --> [] AAAA, expire at 2025-03-10 19:28:30
19:27:30.427   Debug: [DNS] resolve static1-1.keepcdn.com A from tls://dot.pub:853
19:27:30.427   Debug: [DNS] resolve static1-2.keepcdn.com A from https://223.5.5.5:443/dns-query
19:27:30.428   Debug: [DNS] resolve static1-2.keepcdn.com A from https://dns.alidns.com:443/dns-query
19:27:30.428   Debug: [DNS] resolve static1-2.keepcdn.com A from 223.5.5.5:853
19:27:30.429   Debug: [DNS] resolve static1-1.keepcdn.com A from https://223.5.5.5:443/dns-query
19:27:30.429   Debug: [DNS] resolve static1-1.keepcdn.com A from https://dns.alidns.com:443/dns-query
19:27:30.429   Debug: [DNS] resolve static1-1.keepcdn.com A from 223.5.5.5:853
19:27:30.429   Debug: [DNS] resolve static1.keepcdn.com A from tls://dot.pub:853
19:27:30.429   Debug: [DNS] resolve static1.keepcdn.com A from https://223.5.5.5:443/dns-query
19:27:30.429   Debug: [DNS] resolve static1.keepcdn.com A from https://dns.alidns.com:443/dns-query
19:27:30.429   Debug: [DNS] resolve static1.keepcdn.com A from 223.5.5.5:853
19:27:30.430   Debug: [DNS] resolve static1.keepcdn.com AAAA from tls://dot.pub:853
19:27:30.430   Debug: [DNS] resolve static1.keepcdn.com AAAA from https://dns.alidns.com:443/dns-query
19:27:30.430   Debug: [DNS] resolve static1.keepcdn.com AAAA from 223.5.5.5:853
19:27:30.430   Debug: [DNS] resolve static1.keepcdn.com AAAA from https://223.5.5.5:443/dns-query
19:27:30.436   Debug: Auth success from 127.0.0.1:43422 ->
19:27:30.436   Debug: [Rule] use default rules
19:27:30.439   Debug: Auth success from 127.0.0.1:43424 ->
19:27:30.440   Debug: [Rule] use default rules
19:27:30.441   Debug: Auth success from 127.0.0.1:43432 ->
19:27:30.441   Debug: [Rule] use default rules
19:27:30.442   Debug: [PKG] 127.0.0.1:43424 --> v1-2.keepcdn.com:443 by 10575[com.gotokeep.keep]
19:27:30.442   Debug: [PKG] 127.0.0.1:43422 --> v1.keepcdn.com:443 by 10575[com.gotokeep.keep]
19:27:30.442   Debug: [DNS] cache hit v1.keepcdn.com --> [111.32.209.232 111.32.209.228 111.32.209.229 111.32.209.234 111.32.209.231 111.32.209.230 111.32.209.227 111.32.209.233] A, expire at 2025-03-10 19:25:43
19:27:30.442   Debug: [DNS] cache hit v1-2.keepcdn.com --> [] AAAA, expire at 2025-03-10 19:30:30
19:27:30.442   Debug: [DNS] cache hit v1.keepcdn.com --> [2409:8c14:f05:1202:3::7fb 2409:801a:3000:3:3::3f2 2409:8c14:f05:1202:3::7fc 2409:8c14:f13:1204:3::3f5] AAAA, expire at 2025-03-10 19:25:31
19:27:30.442   Debug: [DNS] resolve v1.keepcdn.com A from tls://dot.pub:853
19:27:30.442   Debug: [DNS] resolve v1.keepcdn.com A from https://223.5.5.5:443/dns-query
19:27:30.442   Debug: [DNS] cache hit v1-2.keepcdn.com --> [111.132.34.18 111.132.34.20 111.132.34.17 111.132.34.19 111.132.34.14 111.132.34.15 111.132.34.21 111.132.34.16 223.100.35.199 223.100.33.207 120.201.120.236 221.180.218.236 183.204.37.212 183.204.149.124 223.100.33.213 223.100.35.197] A, expire at 2025-03-10 19:25:31
19:27:30.442   Debug: [DNS] resolve v1.keepcdn.com A from https://dns.alidns.com:443/dns-query
19:27:30.443   Debug: [PKG] 127.0.0.1:43432 --> v1-1.keepcdn.com:443 by 10575[com.gotokeep.keep]
19:27:30.443   Debug: [DNS] resolve v1.keepcdn.com A from 223.5.5.5:853
19:27:30.443   Debug: [DNS] resolve v1-2.keepcdn.com A from tls://dot.pub:853
19:27:30.443   Debug: [DNS] resolve v1-2.keepcdn.com A from https://223.5.5.5:443/dns-query
19:27:30.443   Debug: [DNS] resolve v1-2.keepcdn.com A from https://dns.alidns.com:443/dns-query
19:27:30.444   Debug: [DNS] resolve v1-2.keepcdn.com A from 223.5.5.5:853
19:27:30.444   Debug: [DNS] cache hit v1-1.keepcdn.com --> [183.204.224.102 120.222.231.126 120.220.82.100] A, expire at 2025-03-10 19:25:34
19:27:30.445   Debug: [DNS] resolve v1-1.keepcdn.com A from tls://dot.pub:853
19:27:30.445   Debug: [DNS] resolve v1.keepcdn.com AAAA from tls://dot.pub:853
19:27:30.445   Debug: [DNS] resolve v1.keepcdn.com AAAA from https://223.5.5.5:443/dns-query
19:27:30.445   Debug: [DNS] resolve v1.keepcdn.com AAAA from https://dns.alidns.com:443/dns-query
19:27:30.445   Debug: [DNS] resolve v1.keepcdn.com AAAA from 223.5.5.5:853
19:27:30.445   Debug: [DNS] resolve v1-1.keepcdn.com A from https://dns.alidns.com:443/dns-query
19:27:30.445   Debug: [DNS] cache hit v1-1.keepcdn.com --> [2409:8c44:2:140::86] AAAA, expire at 2025-03-10 19:25:34
19:27:30.445   Debug: [DNS] resolve v1-1.keepcdn.com A from https://223.5.5.5:443/dns-query
19:27:30.445   Debug: [DNS] resolve v1-1.keepcdn.com A from 223.5.5.5:853
19:27:30.445   Debug: [DNS] resolve v1-1.keepcdn.com AAAA from tls://dot.pub:853
19:27:30.445   Debug: [DNS] resolve v1-1.keepcdn.com AAAA from https://223.5.5.5:443/dns-query
19:27:30.446   Debug: [DNS] resolve v1-1.keepcdn.com AAAA from https://dns.alidns.com:443/dns-query
19:27:30.446   Debug: [DNS] resolve v1-1.keepcdn.com AAAA from 223.5.5.5:853
19:27:30.499    Info: [TCP] 127.0.0.1:43414(com.gotokeep.keep) --> static1.keepcdn.com:443 match GeoSite(cn) using 直连[DIRECT]
19:27:30.500    Info: [TCP] 127.0.0.1:43410(com.gotokeep.keep) --> static1-2.keepcdn.com:443 match GeoSite(cn) using 直连[DIRECT]
19:27:30.500    Info: [TCP] 127.0.0.1:43408(com.gotokeep.keep) --> static1-1.keepcdn.com:443 match GeoSite(cn) using 直连[DIRECT]
19:27:30.501    Info: [TCP] 127.0.0.1:43422(com.gotokeep.keep) --> v1.keepcdn.com:443 match GeoSite(cn) using 直连[DIRECT]
19:27:30.502    Info: [TCP] 127.0.0.1:43424(com.gotokeep.keep) --> v1-2.keepcdn.com:443 match GeoSite(cn) using 直连[DIRECT]
19:27:30.503   Debug: [DNS] static1-1.keepcdn.com --> [2409:8c04:1003:135:37::19 2409:8702:489c:0:70::24 2409:8c3c:1300:306:62::18] AAAA from https://dns.alidns.com:443/dns-query
19:27:30.504   Debug: [DNS] static1-1.keepcdn.com --> [111.31.107.92 111.31.238.112 120.220.158.75 111.31.107.115] A from https://dns.alidns.com:443/dns-query
19:27:30.504   Debug: [DNS] v1-1.keepcdn.com --> [2409:8c44:2:140::86] AAAA from https://dns.alidns.com:443/dns-query
19:27:30.504   Debug: [DNS] v1.keepcdn.com --> [2409:801a:3000:3:3::3f2 2409:8c14:f05:1202:3::7fb 2409:8c14:f13:1204:3::3f6 2409:8c14:f05:1202:3::7fc] AAAA from https://dns.alidns.com:443/dns-query
19:27:30.504   Debug: [DNS] static1.keepcdn.com --> [2409:801a:3000:3:3::3f1 2409:8c14:f13:1204:3::3f5 2409:8c14:f05:1202:3::7fc 2409:8c14:f05:1202:3::7fb] AAAA from https://dns.alidns.com:443/dns-query
19:27:30.504   Debug: [DNS] v1-1.keepcdn.com --> [120.220.82.100 183.201.114.250] A from https://dns.alidns.com:443/dns-query
19:27:30.504   Debug: [DNS] v1.keepcdn.com --> [111.32.209.228 111.32.209.229 111.32.209.230 111.32.209.231 111.32.209.232 111.32.209.233 111.32.209.234 111.32.209.227] A from https://dns.alidns.com:443/dns-query
19:27:30.504   Debug: [DNS] v1-2.keepcdn.com --> [111.132.34.18 111.132.34.15 183.204.149.126 223.100.35.198 111.132.34.14 111.132.34.20 111.132.34.17 223.100.33.209 221.180.218.235 223.100.33.212 120.201.120.242 183.204.37.209 111.132.34.21 111.132.34.16 223.100.35.201 111.132.34.19] A from https://dns.alidns.com:443/dns-query
19:27:30.504   Debug: [DNS] static1.keepcdn.com --> [111.132.43.159 111.132.43.167] A from https://dns.alidns.com:443/dns-query
19:27:30.504   Debug: [DNS] static1-2.keepcdn.com --> [111.132.34.20 111.132.34.21 111.132.34.14 111.132.34.15 111.132.34.16 183.204.37.212 221.180.218.238 120.201.120.240 111.132.34.17 223.100.33.208 223.100.35.202 183.204.149.125 111.132.34.18 223.100.33.209 223.100.35.203 111.132.34.19] A from https://dns.alidns.com:443/dns-query
19:27:30.505   Debug: [DNS] v1-1.keepcdn.com --> [2409:8c44:2:140::86] AAAA from 223.5.5.5:853
19:27:30.506   Debug: [DNS] static1-1.keepcdn.com --> [2409:8c04:1003:135:37::19 2409:8702:489c:0:70::24 2409:8c3c:1300:306:62::18] AAAA from 223.5.5.5:853
19:27:30.513   Debug: [DNS] v1-1.keepcdn.com --> [183.201.114.250 120.220.82.100] A from 223.5.5.5:853
19:27:30.513   Debug: [DNS] v1.keepcdn.com --> [2409:8c14:f05:1202:3::7fc 2409:801a:3000:3:3::3f2 2409:8c14:f05:1202:3::7fb 2409:8c14:f13:1204:3::3f6] AAAA from 223.5.5.5:853
19:27:30.514   Debug: [DNS] v1-2.keepcdn.com --> [183.204.149.124 120.201.120.239 111.132.34.18 111.132.34.17 111.132.34.14 111.132.34.16 223.100.33.212 111.132.34.19 111.132.34.21 221.180.218.237 223.100.35.197 111.132.34.20 223.100.35.203 183.204.37.207 111.132.34.15 223.100.33.211] A from 223.5.5.5:853
19:27:30.514    Info: [TCP] 127.0.0.1:43432(com.gotokeep.keep) --> v1-1.keepcdn.com:443 match GeoSite(cn) using 直连[DIRECT]
19:27:30.514   Debug: [DNS] v1.keepcdn.com --> [111.32.209.228 111.32.209.227 111.32.209.229 111.32.209.230 111.32.209.232 111.32.209.234 111.32.209.233 111.32.209.231] A from 223.5.5.5:853
19:27:30.514   Debug: [DNS] static1.keepcdn.com --> [] AAAA from 223.5.5.5:853
19:27:30.520   Debug: [DNS] static1.keepcdn.com --> [111.14.190.68 111.14.190.66 111.32.160.6 111.14.190.70 111.32.160.3 111.31.112.84 111.14.190.67] A from 223.5.5.5:853
19:27:30.520   Debug: [DNS] static1-2.keepcdn.com --> [183.204.149.126 183.204.37.207 221.180.218.235 111.132.34.18 223.100.33.212 223.100.35.198 111.132.34.19 111.132.34.20 111.132.34.21 111.132.34.14 111.132.34.15 111.132.34.16 111.132.34.17 223.100.33.211 223.100.35.197 120.201.120.235] A from 223.5.5.5:853
19:27:30.523   Debug: [DNS] static1-1.keepcdn.com --> [111.31.107.115 120.220.158.75 111.31.107.92 111.31.238.112] A from 223.5.5.5:853
19:27:33.324   Debug: [DNS] hijack udp:172.19.0.2:53 from 172.19.0.1:43469
19:27:33.325   Debug: [DNS] hijack udp:172.19.0.2:53 from 172.19.0.1:7506
19:28:33.333   Debug: [Rule] use default rules
19:28:33.334   Debug: [PKG] 127.0.0.1:40184 --> tepoch.finzfin.com:443 by 10287[com.finshell.wallet]
19:28:33.337   Debug: [DNS] cache hit tepoch.finzfin.com --> [117.133.187.206] A, expire at 2025-03-10 19:26:49
19:28:33.337   Debug: [DNS] cache hit tepoch.finzfin.com --> [] AAAA, expire at 2025-03-10 19:26:33
19:28:33.337   Debug: [DNS] resolve tepoch.finzfin.com A from tls://dot.pub:853
19:28:33.338   Debug: [DNS] resolve tepoch.finzfin.com A from https://223.5.5.5:443/dns-query
19:28:33.338   Debug: [DNS] resolve tepoch.finzfin.com A from https://dns.alidns.com:443/dns-query
19:28:33.338   Debug: [DNS] resolve tepoch.finzfin.com A from 223.5.5.5:853
19:28:33.339   Debug: [DNS] resolve tepoch.finzfin.com AAAA from tls://dot.pub:853
19:28:33.339   Debug: [DNS] resolve tepoch.finzfin.com AAAA from 223.5.5.5:853
19:28:33.339   Debug: [DNS] resolve tepoch.finzfin.com AAAA from https://223.5.5.5:443/dns-query
19:28:33.339   Debug: [DNS] resolve tepoch.finzfin.com AAAA from https://dns.alidns.com:443/dns-query
19:28:33.465    Info: [TCP] 127.0.0.1:40184(com.finshell.wallet) --> tepoch.finzfin.com:443 match GeoSite(cn) using 直连[DIRECT]
19:28:33.465   Debug: [DNS] tepoch.finzfin.com --> [117.133.187.206] A from https://223.5.5.5:443/dns-query
19:28:33.466   Debug: [DNS] tepoch.finzfin.com --> [117.133.187.206] A from 223.5.5.5:853
19:28:33.471   Debug: [DNS] tepoch.finzfin.com --> [] AAAA from https://dns.alidns.com:443/dns-query
19:28:33.472   Debug: [DNS] tepoch.finzfin.com --> [] AAAA from https://223.5.5.5:443/dns-query
19:28:33.472   Debug: [DNS] tepoch.finzfin.com --> [] AAAA from 223.5.5.5:853
19:28:33.769   Debug: [DNS] tepoch.finzfin.com --> [] AAAA from tls://dot.pub:853
19:28:35.477   Debug: Auth success from 127.0.0.1:40192 ->
19:28:35.480   Debug: [Rule] use default rules
19:28:35.481   Debug: [PKG] 127.0.0.1:40192 --> app-apm.gotokeep.com:443 by 10575[com.gotokeep.keep]
19:28:35.482   Debug: [DNS] cache hit app-apm.gotokeep.com --> [111.13.145.160] A, expire at 2025-03-10 19:26:44
19:28:35.482   Debug: [DNS] cache hit app-apm.gotokeep.com --> [2409:8c00:7821:1a:8000:0:d00:19] AAAA, expire at 2025-03-10 19:26:36
19:28:35.487   Debug: [DNS] resolve app-apm.gotokeep.com AAAA from tls://dot.pub:853
19:28:35.489   Debug: [DNS] resolve app-apm.gotokeep.com A from tls://dot.pub:853
19:28:35.489   Debug: [DNS] resolve app-apm.gotokeep.com A from https://223.5.5.5:443/dns-query
19:28:35.489   Debug: [DNS] resolve app-apm.gotokeep.com A from https://dns.alidns.com:443/dns-query
19:28:35.490   Debug: [DNS] resolve app-apm.gotokeep.com A from 223.5.5.5:853
19:28:35.491   Debug: [DNS] resolve app-apm.gotokeep.com AAAA from 223.5.5.5:853
19:28:35.492   Debug: [DNS] resolve app-apm.gotokeep.com AAAA from https://223.5.5.5:443/dns-query
19:28:35.492   Debug: [DNS] resolve app-apm.gotokeep.com AAAA from https://dns.alidns.com:443/dns-query
19:28:35.524    Info: [TCP] 127.0.0.1:40192(com.gotokeep.keep) --> app-apm.gotokeep.com:443 match GeoSite(cn) using 直连[DIRECT]
19:28:35.533   Debug: [DNS] app-apm.gotokeep.com --> [111.13.145.160] A from https://223.5.5.5:443/dns-query
19:28:35.536   Debug: [DNS] app-apm.gotokeep.com --> [2409:8c00:7821:1a:8000:0:d00:19] AAAA from https://223.5.5.5:443/dns-query
19:28:35.990   Debug: [DNS] app-apm.gotokeep.com --> [2409:8c00:7821:1a:8000:0:d00:19] AAAA from 223.5.5.5:853
19:28:35.991   Debug: [DNS] app-apm.gotokeep.com --> [111.13.145.160] A from 223.5.5.5:853
19:29:21.995   Debug: Auth success from 127.0.0.1:55034 ->
19:29:21.996   Debug: [Rule] use default rules
19:29:22.004   Debug: [PKG] 127.0.0.1:55034 --> andesbrain-ai-cn.heytapmobi.com:443 by 1027[com.android.nfc]
19:29:22.004   Debug: [DNS] resolve andesbrain-ai-cn.heytapmobi.com A from tls://dot.pub:853
19:29:22.004   Debug: [DNS] resolve andesbrain-ai-cn.heytapmobi.com A from https://223.5.5.5:443/dns-query
19:29:22.004   Debug: [DNS] resolve andesbrain-ai-cn.heytapmobi.com AAAA from tls://dot.pub:853
19:29:22.004   Debug: [DNS] resolve andesbrain-ai-cn.heytapmobi.com AAAA from https://223.5.5.5:443/dns-query
19:29:22.004   Debug: [DNS] resolve andesbrain-ai-cn.heytapmobi.com AAAA from https://dns.alidns.com:443/dns-query
19:29:22.004   Debug: [DNS] resolve andesbrain-ai-cn.heytapmobi.com AAAA from 223.5.5.5:853
19:29:22.005   Debug: [DNS] resolve andesbrain-ai-cn.heytapmobi.com A from https://dns.alidns.com:443/dns-query
19:29:22.005   Debug: [DNS] resolve andesbrain-ai-cn.heytapmobi.com A from 223.5.5.5:853
19:29:22.141   Debug: [DNS] andesbrain-ai-cn.heytapmobi.com --> [39.156.130.100] A from 223.5.5.5:853
19:29:22.141   Debug: [DNS] andesbrain-ai-cn.heytapmobi.com --> [] AAAA from https://dns.alidns.com:443/dns-query
19:29:22.144   Debug: [DNS] andesbrain-ai-cn.heytapmobi.com --> [] AAAA from 223.5.5.5:853
19:29:22.145   Debug: [DNS] andesbrain-ai-cn.heytapmobi.com --> [] AAAA from https://223.5.5.5:443/dns-query
19:29:22.267    Info: [TCP] 127.0.0.1:55034(com.android.nfc) --> andesbrain-ai-cn.heytapmobi.com:443 match GeoSite(cn) using 直连[DIRECT]
19:29:22.363   Debug: [DNS] andesbrain-ai-cn.heytapmobi.com --> [] AAAA from tls://dot.pub:853
19:29:22.742   Debug: Auth success from 127.0.0.1:55050 ->
19:29:22.742   Debug: [Rule] use default rules
19:29:22.743   Debug: [PKG] 127.0.0.1:55050 --> weather-server.allawntech.com:443 by 10170[com.coloros.weather.service]
19:29:22.743   Debug: [DNS] cache hit weather-server.allawntech.com --> [117.133.185.102] A, expire at 2025-03-10 19:21:52
19:29:22.744   Debug: [DNS] cache hit weather-server.allawntech.com --> [] AAAA, expire at 2025-03-10 19:20:55
19:29:22.745   Debug: [DNS] resolve weather-server.allawntech.com A from tls://dot.pub:853
19:29:22.745   Debug: [DNS] resolve weather-server.allawntech.com A from https://223.5.5.5:443/dns-query
19:29:22.745   Debug: [DNS] resolve weather-server.allawntech.com A from https://dns.alidns.com:443/dns-query
19:29:22.746   Debug: [DNS] resolve weather-server.allawntech.com A from 223.5.5.5:853
19:29:22.746   Debug: [DNS] resolve weather-server.allawntech.com AAAA from tls://dot.pub:853
19:29:22.746   Debug: [DNS] resolve weather-server.allawntech.com AAAA from https://223.5.5.5:443/dns-query
19:29:22.746   Debug: [DNS] resolve weather-server.allawntech.com AAAA from https://dns.alidns.com:443/dns-query
19:29:22.746   Debug: [DNS] resolve weather-server.allawntech.com AAAA from 223.5.5.5:853
19:29:22.805   Debug: [DNS] weather-server.allawntech.com --> [117.133.185.102] A from https://223.5.5.5:443/dns-query
19:29:22.810   Debug: [DNS] weather-server.allawntech.com --> [] AAAA from https://223.5.5.5:443/dns-query
19:29:22.814   Debug: [DNS] weather-server.allawntech.com --> [] AAAA from 223.5.5.5:853
19:29:22.814   Debug: [DNS] weather-server.allawntech.com --> [117.133.185.102] A from 223.5.5.5:853
19:29:22.860   Debug: [DNS] weather-server.allawntech.com --> [] AAAA from https://dns.alidns.com:443/dns-query
19:29:22.924   Debug: Auth success from 127.0.0.1:55056 ->
19:29:22.924   Debug: [Rule] use default rules
19:29:22.925   Debug: [PKG] 127.0.0.1:55056 --> mime.baidu.com:443 by 10428[com.baidu.input_mi]
19:29:22.927   Debug: [DNS] cache hit mime.baidu.com --> [111.63.96.128] A, expire at 2025-03-10 19:18:33
19:29:22.927   Debug: [DNS] cache hit mime.baidu.com --> [] AAAA, expire at 2025-03-10 19:19:27
19:29:22.927   Debug: [DNS] resolve mime.baidu.com AAAA from tls://dot.pub:853
19:29:22.927   Debug: [DNS] resolve mime.baidu.com AAAA from 223.5.5.5:853
19:29:22.927   Debug: [DNS] resolve mime.baidu.com AAAA from https://223.5.5.5:443/dns-query
19:29:22.927   Debug: [DNS] resolve mime.baidu.com AAAA from https://dns.alidns.com:443/dns-query
19:29:22.927   Debug: [DNS] resolve mime.baidu.com A from tls://dot.pub:853
19:29:22.927   Debug: [DNS] resolve mime.baidu.com A from 223.5.5.5:853
19:29:22.927   Debug: [DNS] resolve mime.baidu.com A from https://223.5.5.5:443/dns-query
19:29:22.927   Debug: [DNS] resolve mime.baidu.com A from https://dns.alidns.com:443/dns-query
19:29:22.954    Info: [TCP] 127.0.0.1:55056(com.baidu.input_mi) --> mime.baidu.com:443 match GeoSite(cn) using 直连[DIRECT]
19:29:22.964   Debug: [DNS] mime.baidu.com --> [111.63.96.128] A from https://223.5.5.5:443/dns-query
19:29:22.964   Debug: [DNS] mime.baidu.com --> [] AAAA from https://223.5.5.5:443/dns-query
19:29:23.260   Debug: [DNS] mime.baidu.com --> [] AAAA from tls://dot.pub:853
19:29:23.780   Debug: [DNS] mime.baidu.com --> [] AAAA from 223.5.5.5:853
19:29:23.782   Debug: [DNS] mime.baidu.com --> [111.63.96.128] A from 223.5.5.5:853
19:29:25.859    Info: [TCP] 127.0.0.1:55050(com.coloros.weather.service) --> weather-server.allawntech.com:443 match GeoSite(cn) using 直连[DIRECT]
19:29:25.965   Debug: [Rule] use default rules
19:29:25.969   Debug: [PKG] 172.19.0.1:35896 --> 91.108.56.163:443 by 10373[org.telegram.messenger]
19:29:25.969    Info: [TCP] 172.19.0.1:35896(org.telegram.messenger) --> 91.108.56.163:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:29:26.978   Debug: [DNS] hijack udp:172.19.0.2:53 from 172.19.0.1:29617
19:29:26.984   Debug: [DNS] hijack udp:172.19.0.2:53 from 172.19.0.1:28055
19:29:27.108   Debug: Auth success from 127.0.0.1:55062 ->
19:29:27.109   Debug: [Rule] use default rules
19:29:29.812   Debug: [Rule] use default rules
19:29:29.813   Debug: [Rule] use default rules
19:29:29.817   Debug: [PKG] 172.19.0.1:53036 --> 91.108.56.148:443 by 10373[org.telegram.messenger]
19:29:29.818   Debug: [PKG] 172.19.0.1:60372 --> 91.108.56.137:5222 by 10373[org.telegram.messenger]
19:29:29.818    Info: [TCP] 172.19.0.1:53036(org.telegram.messenger) --> 91.108.56.148:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:29:29.822    Info: [TCP] 172.19.0.1:60372(org.telegram.messenger) --> 91.108.56.137:5222 match GeoIP(telegram) using Telegram[[AnyTls]]
19:29:30.375   Debug: [Rule] use default rules
19:29:30.380   Debug: [PKG] 172.19.0.1:45140 --> 91.108.56.163:443 by 10373[org.telegram.messenger]
19:29:30.380    Info: [TCP] 172.19.0.1:45140(org.telegram.messenger) --> 91.108.56.163:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:29:30.662   Debug: Auth success from 127.0.0.1:49530 ->
19:29:30.662   Debug: [Rule] use default rules
19:29:30.664   Debug: [PKG] 127.0.0.1:49530 --> static1-2.keepcdn.com:443 by 10575[com.gotokeep.keep]
19:29:30.664   Debug: Auth success from 127.0.0.1:49544 ->
19:29:30.664   Debug: [DNS] cache hit static1-2.keepcdn.com --> [111.132.34.20 111.132.34.21 111.132.34.14 111.132.34.15 111.132.34.16 183.204.37.212 221.180.218.238 120.201.120.240 111.132.34.17 223.100.33.208 223.100.35.202 183.204.149.125 111.132.34.18 223.100.33.209 223.100.35.203 111.132.34.19] A, expire at 2025-03-10 19:27:52
19:29:30.665   Debug: [Rule] use default rules
19:29:30.667   Debug: [DNS] cache hit static1-2.keepcdn.com --> [] AAAA, expire at 2025-03-10 19:28:30
19:29:30.667   Debug: [DNS] resolve static1-2.keepcdn.com A from tls://dot.pub:853
19:29:30.667   Debug: [DNS] resolve static1-2.keepcdn.com A from https://223.5.5.5:443/dns-query
19:29:30.667   Debug: [DNS] resolve static1-2.keepcdn.com A from https://dns.alidns.com:443/dns-query
19:29:30.667   Debug: [DNS] resolve static1-2.keepcdn.com A from 223.5.5.5:853
19:29:30.668   Debug: [DNS] resolve static1-2.keepcdn.com AAAA from tls://dot.pub:853
19:29:30.668   Debug: [PKG] 127.0.0.1:49544 --> static1.keepcdn.com:443 by 10575[com.gotokeep.keep]
19:29:30.669   Debug: [DNS] resolve static1-2.keepcdn.com AAAA from https://223.5.5.5:443/dns-query
19:29:30.669   Debug: [DNS] resolve static1-2.keepcdn.com AAAA from 223.5.5.5:853
19:29:30.669   Debug: [DNS] resolve static1-2.keepcdn.com AAAA from https://dns.alidns.com:443/dns-query
19:29:30.672   Debug: [DNS] cache hit static1.keepcdn.com --> [111.132.43.159 111.132.43.167] A, expire at 2025-03-10 19:28:17
19:29:30.672   Debug: [DNS] resolve static1.keepcdn.com A from tls://dot.pub:853
19:29:30.673   Debug: [DNS] cache hit static1.keepcdn.com --> [2409:801a:3000:3:3::3f1 2409:8c14:f13:1204:3::3f5 2409:8c14:f05:1202:3::7fc 2409:8c14:f05:1202:3::7fb] AAAA, expire at 2025-03-10 19:28:17
19:29:30.673   Debug: [DNS] resolve static1.keepcdn.com A from https://223.5.5.5:443/dns-query
19:29:30.673   Debug: [DNS] resolve static1.keepcdn.com A from https://dns.alidns.com:443/dns-query
19:29:30.673   Debug: [DNS] resolve static1.keepcdn.com A from 223.5.5.5:853
19:29:30.673   Debug: [DNS] resolve static1.keepcdn.com AAAA from tls://dot.pub:853
19:29:30.673   Debug: [DNS] resolve static1.keepcdn.com AAAA from https://223.5.5.5:443/dns-query
19:29:30.673   Debug: [DNS] resolve static1.keepcdn.com AAAA from https://dns.alidns.com:443/dns-query
19:29:30.676   Debug: [DNS] resolve static1.keepcdn.com AAAA from 223.5.5.5:853
19:29:30.676   Debug: Auth success from 127.0.0.1:49560 ->
19:29:30.676   Debug: Auth success from 127.0.0.1:49572 ->
19:29:30.676   Debug: [Rule] use default rules
19:29:30.677   Debug: [Rule] use default rules
19:29:30.677   Debug: Auth success from 127.0.0.1:49574 ->
19:29:30.677   Debug: [Rule] use default rules
19:29:30.682   Debug: [PKG] 127.0.0.1:49560 --> v1.keepcdn.com:443 by 10575[com.gotokeep.keep]
19:29:30.682   Debug: [PKG] 127.0.0.1:49572 --> v1-1.keepcdn.com:443 by 10575[com.gotokeep.keep]
19:29:30.682   Debug: [DNS] cache hit v1.keepcdn.com --> [111.32.209.228 111.32.209.229 111.32.209.230 111.32.209.231 111.32.209.232 111.32.209.233 111.32.209.234 111.32.209.227] A, expire at 2025-03-10 19:28:26
19:29:30.683   Debug: [DNS] cache hit v1.keepcdn.com --> [2409:801a:3000:3:3::3f2 2409:8c14:f05:1202:3::7fb 2409:8c14:f13:1204:3::3f6 2409:8c14:f05:1202:3::7fc] AAAA, expire at 2025-03-10 19:27:32
19:29:30.684   Debug: [DNS] resolve v1.keepcdn.com AAAA from tls://dot.pub:853
19:29:30.685   Debug: [PKG] 127.0.0.1:49574 --> v1-2.keepcdn.com:443 by 10575[com.gotokeep.keep]
19:29:30.685   Debug: [DNS] cache hit v1-1.keepcdn.com --> [120.220.82.100 183.201.114.250] A, expire at 2025-03-10 19:27:37
19:29:30.685   Debug: [DNS] cache hit v1-1.keepcdn.com --> [2409:8c44:2:140::86] AAAA, expire at 2025-03-10 19:27:45
19:29:30.685   Debug: [DNS] resolve v1.keepcdn.com AAAA from https://dns.alidns.com:443/dns-query
19:29:30.685   Debug: [DNS] resolve v1-1.keepcdn.com AAAA from tls://dot.pub:853
19:29:30.685   Debug: [DNS] resolve v1.keepcdn.com AAAA from 223.5.5.5:853
19:29:30.685   Debug: [DNS] resolve v1.keepcdn.com AAAA from https://223.5.5.5:443/dns-query
19:29:30.685   Debug: [DNS] resolve v1.keepcdn.com A from tls://dot.pub:853
19:29:30.685   Debug: [DNS] resolve v1.keepcdn.com A from 223.5.5.5:853
19:29:30.685   Debug: [DNS] resolve v1.keepcdn.com A from https://223.5.5.5:443/dns-query
19:29:30.685   Debug: [DNS] resolve v1.keepcdn.com A from https://dns.alidns.com:443/dns-query
19:29:30.685   Debug: [DNS] resolve v1-1.keepcdn.com AAAA from https://dns.alidns.com:443/dns-query
19:29:30.685   Debug: [DNS] resolve v1-1.keepcdn.com AAAA from https://223.5.5.5:443/dns-query
19:29:30.685   Debug: [DNS] resolve v1-1.keepcdn.com AAAA from 223.5.5.5:853
19:29:30.686   Debug: [DNS] resolve v1-1.keepcdn.com A from tls://dot.pub:853
19:29:30.686   Debug: [DNS] resolve v1-1.keepcdn.com A from 223.5.5.5:853
19:29:30.686   Debug: [DNS] resolve v1-1.keepcdn.com A from https://223.5.5.5:443/dns-query
19:29:30.686   Debug: [DNS] resolve v1-1.keepcdn.com A from https://dns.alidns.com:443/dns-query
19:29:30.686   Debug: [DNS] cache hit v1-2.keepcdn.com --> [111.132.34.18 111.132.34.15 183.204.149.126 223.100.35.198 111.132.34.14 111.132.34.20 111.132.34.17 223.100.33.209 221.180.218.235 223.100.33.212 120.201.120.242 183.204.37.209 111.132.34.21 111.132.34.16 223.100.35.201 111.132.34.19] A, expire at 2025-03-10 19:28:07
19:29:30.687   Debug: [DNS] cache hit v1-2.keepcdn.com --> [] AAAA, expire at 2025-03-10 19:30:30
19:29:30.687   Debug: [DNS] resolve v1-2.keepcdn.com A from https://dns.alidns.com:443/dns-query
19:29:30.687   Debug: [DNS] resolve v1-2.keepcdn.com A from 223.5.5.5:853
19:29:30.716    Info: [TCP] 127.0.0.1:49530(com.gotokeep.keep) --> static1-2.keepcdn.com:443 match GeoSite(cn) using 直连[DIRECT]
19:29:30.722    Info: [TCP] 127.0.0.1:49574(com.gotokeep.keep) --> v1-2.keepcdn.com:443 match GeoSite(cn) using 直连[DIRECT]
19:29:30.724    Info: [TCP] 127.0.0.1:49544(com.gotokeep.keep) --> static1.keepcdn.com:443 match GeoSite(cn) using 直连[DIRECT]
19:29:30.735    Info: [TCP] 127.0.0.1:49560(com.gotokeep.keep) --> v1.keepcdn.com:443 match GeoSite(cn) using 直连[DIRECT]
19:29:30.736   Debug: [DNS] static1-2.keepcdn.com --> [] AAAA from https://dns.alidns.com:443/dns-query
19:29:30.740   Debug: [DNS] static1-2.keepcdn.com --> [111.132.34.16 111.132.34.17 111.132.34.18 111.132.34.19 111.132.34.20 183.204.37.210 221.180.218.235 120.201.120.235 183.204.149.121 111.132.34.21 223.100.33.212 223.100.35.197 111.132.34.14 223.100.33.213 223.100.35.198 111.132.34.15] A from https://223.5.5.5:443/dns-query
19:29:30.740   Debug: [DNS] static1.keepcdn.com --> [111.32.160.3 111.14.190.70 111.14.190.66 111.14.190.67 111.14.190.68 111.31.112.84 111.32.160.6] A from https://223.5.5.5:443/dns-query
19:29:30.741    Info: [TCP] 127.0.0.1:49572(com.gotokeep.keep) --> v1-1.keepcdn.com:443 match GeoSite(cn) using 直连[DIRECT]
19:29:30.741   Debug: [DNS] v1-1.keepcdn.com --> [183.201.114.250 120.220.82.100] A from https://223.5.5.5:443/dns-query
19:29:30.741   Debug: [DNS] v1-1.keepcdn.com --> [2409:8c44:2:140::86] AAAA from https://223.5.5.5:443/dns-query
19:29:30.741   Debug: [DNS] v1.keepcdn.com --> [111.32.209.234 111.32.209.227 111.32.209.229 111.32.209.232 111.32.209.231 111.32.209.233 111.32.209.230 111.32.209.228] A from https://223.5.5.5:443/dns-query
19:29:30.741   Debug: [DNS] static1-2.keepcdn.com --> [] AAAA from https://223.5.5.5:443/dns-query
19:29:30.743   Debug: [DNS] v1.keepcdn.com --> [2409:8c44:2:140::86] AAAA from https://223.5.5.5:443/dns-query
19:29:30.743   Debug: [DNS] static1.keepcdn.com --> [2409:8c02:11c:cf:8000:0:b00:11 2409:8c02:11c:cf:8000:0:b00:12] AAAA from https://223.5.5.5:443/dns-query
19:29:30.743   Debug: [DNS] v1-2.keepcdn.com --> [223.100.33.211 120.201.120.235 183.204.149.123 183.204.37.210 221.180.218.235 111.132.34.16 223.100.35.199 223.100.33.212 111.132.34.17 111.132.34.18 111.132.34.19 111.132.34.20 111.132.34.21 111.132.34.14 111.132.34.15 223.100.35.198] A from https://dns.alidns.com:443/dns-query
19:29:30.743   Debug: [DNS] static1.keepcdn.com --> [111.32.160.3 111.31.112.84 111.14.190.67 111.14.190.70 111.32.160.6 111.14.190.68 111.14.190.66] A from https://dns.alidns.com:443/dns-query
19:29:30.873   Debug: [DNS] static1-2.keepcdn.com --> [] AAAA from tls://dot.pub:853
19:29:30.987   Debug: [DNS] v1-1.keepcdn.com --> [2409:8c44:2:140::86] AAAA from 223.5.5.5:853
19:29:30.990   Debug: [DNS] static1-2.keepcdn.com --> [] AAAA from 223.5.5.5:853
19:29:30.991   Debug: [DNS] static1-2.keepcdn.com --> [183.204.37.213 183.204.149.125 120.201.120.241 221.180.218.241 111.132.34.21 223.100.35.204 223.100.35.200 111.132.34.20 111.132.34.16 111.132.34.17 111.132.34.19 111.132.34.18 111.132.34.15 111.132.34.14 223.100.33.212 223.100.33.214] A from 223.5.5.5:853
19:29:30.992   Debug: [DNS] v1-2.keepcdn.com --> [111.132.34.21 111.132.34.17 223.100.35.204 120.201.120.242 223.100.33.209 183.204.149.122 223.100.33.207 111.132.34.20 183.204.37.212 111.132.34.18 111.132.34.15 111.132.34.16 221.180.218.237 223.100.35.202 111.132.34.14 111.132.34.19] A from 223.5.5.5:853
19:29:30.992   Debug: [DNS] v1.keepcdn.com --> [2409:8c14:f13:1204:3::3f6 2409:801a:3000:3:3::3f2 2409:8c14:f05:1202:3::7fc 2409:8c14:f05:1202:3::7fb] AAAA from 223.5.5.5:853
19:29:31.174   Debug: [DNS] static1.keepcdn.com --> [] AAAA from 223.5.5.5:853
19:29:31.175   Debug: [DNS] static1.keepcdn.com --> [111.14.190.66 111.32.160.3 111.31.112.84 111.14.190.67 111.14.190.70 111.32.160.6 111.14.190.68] A from 223.5.5.5:853
19:29:31.178   Debug: [DNS] v1.keepcdn.com --> [111.32.209.227 111.32.209.228 111.32.209.229 111.32.209.230 111.32.209.231 111.32.209.232 111.32.209.233 111.32.209.234] A from 223.5.5.5:853
19:29:31.314   Debug: [DNS] v1-1.keepcdn.com --> [120.220.82.100 183.201.114.250] A from 223.5.5.5:853
19:29:34.400   Debug: [Rule] use default rules
19:29:34.402   Debug: [PKG] 172.19.0.1:39430 --> 91.108.56.163:5222 by 10373[org.telegram.messenger]
19:29:34.403    Info: [TCP] 172.19.0.1:39430(org.telegram.messenger) --> 91.108.56.163:5222 match GeoIP(telegram) using Telegram[[AnyTls]]
19:29:42.414   Debug: [Rule] use default rules
19:29:42.417   Debug: [PKG] 172.19.0.1:45278 --> 91.108.56.163:443 by 10373[org.telegram.messenger]
19:29:42.419    Info: [TCP] 172.19.0.1:45278(org.telegram.messenger) --> 91.108.56.163:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:29:47.059   Debug: [DNS] hijack udp:172.19.0.2:53 from 172.19.0.1:9505
19:29:47.060   Debug: [DNS] hijack udp:172.19.0.2:53 from 172.19.0.1:10788
19:29:50.431   Debug: [Rule] use default rules
19:29:50.435   Debug: [PKG] 172.19.0.1:36462 --> 91.108.56.163:443 by 10373[org.telegram.messenger]
19:29:50.436    Info: [TCP] 172.19.0.1:36462(org.telegram.messenger) --> 91.108.56.163:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:29:50.744   Debug: Auth success from 127.0.0.1:50416 ->
19:29:50.974   Debug: [Rule] use default rules
19:29:50.981   Debug: [PKG] 172.19.0.1:42472 --> 95.161.76.101:443 by 10373[org.telegram.messenger]
19:29:50.981    Info: [TCP] 172.19.0.1:42472(org.telegram.messenger) --> 95.161.76.101:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:29:52.428   Debug: Start New Health Checking {12ebf8c1-c851-4401-9d34-a973657cd698}
19:29:52.435   Debug: Health Checking, proxy: [AnyTls], url: http://cp.cloudflare.com/generate_204, id: {12ebf8c1-c851-4401-9d34-a973657cd698}
19:29:52.442   Debug: [DNS] cache hit xx.xx.xx --> [a.b.c.d] A, expire at 2025-03-10 19:22:53
19:29:52.442   Debug: [DNS] cache hit xx.xx.xx --> [] AAAA, expire at 2025-03-10 19:27:57
19:29:52.443   Debug: [DNS] resolve xx.xx.xx AAAA from tls://dot.pub:853
19:29:52.443   Debug: [DNS] resolve xx.xx.xx AAAA from https://223.5.5.5:443/dns-query
19:29:52.443   Debug: [DNS] resolve xx.xx.xx AAAA from 223.5.5.5:853
19:29:52.443   Debug: [DNS] resolve xx.xx.xx AAAA from https://dns.alidns.com:443/dns-query
19:29:52.447   Debug: [DNS] resolve xx.xx.xx A from tls://dot.pub:853
19:29:52.447   Debug: [DNS] resolve xx.xx.xx A from https://223.5.5.5:443/dns-query
19:29:52.447   Debug: [DNS] resolve xx.xx.xx A from 223.5.5.5:853
19:29:52.447   Debug: [DNS] resolve xx.xx.xx A from https://dns.alidns.com:443/dns-query
19:29:52.493   Debug: [DNS] xx.xx.xx --> [] AAAA from 223.5.5.5:853
19:29:52.495   Debug: [DNS] xx.xx.xx --> [a.b.c.d] A from 223.5.5.5:853
19:29:52.497   Debug: [DNS] xx.xx.xx --> [] AAAA from https://dns.alidns.com:443/dns-query
19:29:52.551   Debug: use specified fingerprint:Chrome
19:29:52.609   Debug: [DNS] xx.xx.xx --> [] AAAA from https://223.5.5.5:443/dns-query
19:29:52.704   Debug: [DNS] xx.xx.xx --> [] AAAA from tls://dot.pub:853
19:29:52.747   Debug: Auth success from 127.0.0.1:50424 ->
19:29:52.748   Debug: [Rule] use default rules
19:29:52.750   Debug: [PKG] 127.0.0.1:50424 --> mdp-appconf-cn.heytapdownload.com:443 by 10193[com.oplus.deepthinker]
19:29:52.754   Debug: [DNS] resolve mdp-appconf-cn.heytapdownload.com A from tls://dot.pub:853
19:29:52.755   Debug: [DNS] resolve mdp-appconf-cn.heytapdownload.com A from https://dns.alidns.com:443/dns-query
19:29:52.755   Debug: [DNS] resolve mdp-appconf-cn.heytapdownload.com AAAA from tls://dot.pub:853
19:29:52.755   Debug: [DNS] resolve mdp-appconf-cn.heytapdownload.com A from https://223.5.5.5:443/dns-query
19:29:52.756   Debug: [DNS] resolve mdp-appconf-cn.heytapdownload.com AAAA from https://223.5.5.5:443/dns-query
19:29:52.756   Debug: [DNS] resolve mdp-appconf-cn.heytapdownload.com AAAA from https://dns.alidns.com:443/dns-query
19:29:52.756   Debug: [DNS] resolve mdp-appconf-cn.heytapdownload.com AAAA from 223.5.5.5:853
19:29:52.757   Debug: [DNS] resolve mdp-appconf-cn.heytapdownload.com A from 223.5.5.5:853
19:29:52.775   Debug: [DNS] mdp-appconf-cn.heytapdownload.com --> [39.136.88.242 39.136.88.111 39.136.88.241] A from 223.5.5.5:853
19:29:52.780   Debug: [DNS] mdp-appconf-cn.heytapdownload.com --> [] AAAA from 223.5.5.5:853
19:29:52.782   Debug: [DNS] mdp-appconf-cn.heytapdownload.com --> [] AAAA from https://dns.alidns.com:443/dns-query
19:29:52.802   Debug: [DNS] mdp-appconf-cn.heytapdownload.com --> [] AAAA from https://223.5.5.5:443/dns-query
19:29:52.852   Debug: Health Checked, proxy: [AnyTls], url: http://cp.cloudflare.com/generate_204, alive: true, delay: 93 ms uid: {12ebf8c1-c851-4401-9d34-a973657cd698}
19:29:52.854   Debug: Finish A Health Checking {12ebf8c1-c851-4401-9d34-a973657cd698}
19:29:52.898    Info: [TCP] 127.0.0.1:50424(com.oplus.deepthinker) --> mdp-appconf-cn.heytapdownload.com:443 match GeoSite(cn) using 直连[DIRECT]
19:29:54.993   Debug: [Rule] use default rules
19:29:55.001   Debug: [PKG] 172.19.0.1:36474 --> 91.108.56.163:443 by 10373[org.telegram.messenger]
19:29:55.002    Info: [TCP] 172.19.0.1:36474(org.telegram.messenger) --> 91.108.56.163:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:29:59.197   Debug: [Rule] use default rules
19:29:59.198   Debug: [Rule] use default rules
19:29:59.199   Debug: [PKG] 172.19.0.1:49766 --> 95.161.76.101:443 by 10373[org.telegram.messenger]
19:29:59.201    Info: [TCP] 172.19.0.1:49766(org.telegram.messenger) --> 95.161.76.101:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:29:59.201   Debug: [PKG] 172.19.0.1:45476 --> 91.108.56.163:5222 by 10373[org.telegram.messenger]
19:29:59.202    Info: [TCP] 172.19.0.1:45476(org.telegram.messenger) --> 91.108.56.163:5222 match GeoIP(telegram) using Telegram[[AnyTls]]
19:30:03.844   Debug: [Rule] use default rules
19:30:03.847   Debug: [Rule] use default rules
19:30:03.849   Debug: [PKG] 172.19.0.1:38422 --> 91.108.56.137:443 by 10373[org.telegram.messenger]
19:30:03.849    Info: [TCP] 172.19.0.1:38422(org.telegram.messenger) --> 91.108.56.137:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:30:03.853   Debug: [PKG] 172.19.0.1:45818 --> 91.108.56.148:443 by 10373[org.telegram.messenger]
19:30:03.853    Info: [TCP] 172.19.0.1:45818(org.telegram.messenger) --> 91.108.56.148:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:30:07.211   Debug: [Rule] use default rules
19:30:07.212   Debug: [PKG] 172.19.0.1:49352 --> 91.108.56.163:443 by 10373[org.telegram.messenger]
19:30:07.212    Info: [TCP] 172.19.0.1:49352(org.telegram.messenger) --> 91.108.56.163:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:30:07.213   Debug: [Rule] use default rules
19:30:07.218   Debug: [PKG] 172.19.0.1:49768 --> 95.161.76.101:443 by 10373[org.telegram.messenger]
19:30:07.218    Info: [TCP] 172.19.0.1:49768(org.telegram.messenger) --> 95.161.76.101:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:30:10.683   Debug: Auth success from 127.0.0.1:52550 ->
19:30:10.684   Debug: [Rule] use default rules
19:30:10.689   Debug: [PKG] 127.0.0.1:52550 --> aloc-control-plus.amap.com:443 by 10221[com.oplus.location]
19:30:10.692   Debug: [DNS] resolve aloc-control-plus.amap.com A from tls://dot.pub:853
19:30:10.692   Debug: [DNS] resolve aloc-control-plus.amap.com A from https://223.5.5.5:443/dns-query
19:30:10.692   Debug: [DNS] resolve aloc-control-plus.amap.com AAAA from tls://dot.pub:853
19:30:10.692   Debug: [DNS] resolve aloc-control-plus.amap.com AAAA from https://223.5.5.5:443/dns-query
19:30:10.697   Debug: [DNS] resolve aloc-control-plus.amap.com AAAA from https://dns.alidns.com:443/dns-query
19:30:10.697   Debug: [DNS] resolve aloc-control-plus.amap.com AAAA from 223.5.5.5:853
19:30:10.697   Debug: [DNS] resolve aloc-control-plus.amap.com A from 223.5.5.5:853
19:30:10.697   Debug: [DNS] resolve aloc-control-plus.amap.com A from https://dns.alidns.com:443/dns-query
19:30:10.735   Debug: [DNS] aloc-control-plus.amap.com --> [111.63.206.20 36.143.252.115 36.143.252.116 111.63.206.19] A from https://dns.alidns.com:443/dns-query
19:30:10.748   Debug: [DNS] aloc-control-plus.amap.com --> [2409:8c04:1006:3004::4 2409:8c04:1006:3003::1d 2409:8c04:1006:3004::5 2409:8c04:1006:3003::1e 2409:8c04:1006:3007::8 2409:8c04:1006:3007::7] AAAA from https://dns.alidns.com:443/dns-query
19:30:10.749   Debug: [DNS] aloc-control-plus.amap.com --> [36.143.252.115 111.63.206.19 111.63.206.20 36.143.252.116] A from 223.5.5.5:853
19:30:10.753   Debug: [DNS] aloc-control-plus.amap.com --> [2409:8c04:1006:3007::7 2409:8c04:1006:3004::5 2409:8c04:1006:3004::4 2409:8c04:1006:3003::1d 2409:8c04:1006:3007::8 2409:8c04:1006:3003::1e] AAAA from 223.5.5.5:853
19:30:10.775    Info: [TCP] 127.0.0.1:52550(com.oplus.location) --> aloc-control-plus.amap.com:443 match GeoSite(cn) using 直连[DIRECT]
19:30:15.238   Debug: [Rule] use default rules
19:30:15.241   Debug: [PKG] 172.19.0.1:32868 --> 91.108.56.163:443 by 10373[org.telegram.messenger]
19:30:15.242    Info: [TCP] 172.19.0.1:32868(org.telegram.messenger) --> 91.108.56.163:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:30:15.245   Debug: [Rule] use default rules
19:30:15.247   Debug: [PKG] 172.19.0.1:48782 --> 95.161.76.101:443 by 10373[org.telegram.messenger]
19:30:15.248    Info: [TCP] 172.19.0.1:48782(org.telegram.messenger) --> 95.161.76.101:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:30:15.871   Debug: [Rule] use default rules
19:30:15.874   Debug: [PKG] 172.19.0.1:48798 --> 95.161.76.101:443 by 10373[org.telegram.messenger]
19:30:15.875    Info: [TCP] 172.19.0.1:48798(org.telegram.messenger) --> 95.161.76.101:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:30:23.896   Debug: [Rule] use default rules
19:30:23.897   Debug: [Rule] use default rules
19:30:23.902   Debug: [PKG] 172.19.0.1:34972 --> 95.161.76.101:443 by 10373[org.telegram.messenger]
19:30:23.902    Info: [TCP] 172.19.0.1:34972(org.telegram.messenger) --> 95.161.76.101:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:30:23.902   Debug: [PKG] 172.19.0.1:54216 --> 91.108.56.163:443 by 10373[org.telegram.messenger]
19:30:23.902    Info: [TCP] 172.19.0.1:54216(org.telegram.messenger) --> 91.108.56.163:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:30:26.058   Debug: Auth success from 127.0.0.1:42796 ->
19:30:26.059   Debug: [Rule] use default rules
19:30:26.062   Debug: [PKG] 127.0.0.1:42796 --> sport.health.heytapmobi.com:443 by 10480[com.heytap.health]
19:30:26.064   Debug: [DNS] resolve sport.health.heytapmobi.com A from tls://dot.pub:853
19:30:26.067   Debug: [DNS] resolve sport.health.heytapmobi.com A from https://dns.alidns.com:443/dns-query
19:30:26.068   Debug: [DNS] resolve sport.health.heytapmobi.com A from 223.5.5.5:853
19:30:26.068   Debug: [DNS] resolve sport.health.heytapmobi.com A from https://223.5.5.5:443/dns-query
19:30:26.068   Debug: [DNS] resolve sport.health.heytapmobi.com AAAA from tls://dot.pub:853
19:30:26.068   Debug: [DNS] resolve sport.health.heytapmobi.com AAAA from https://223.5.5.5:443/dns-query
19:30:26.068   Debug: [DNS] resolve sport.health.heytapmobi.com AAAA from https://dns.alidns.com:443/dns-query
19:30:26.068   Debug: [DNS] resolve sport.health.heytapmobi.com AAAA from 223.5.5.5:853
19:30:26.092   Debug: [DNS] sport.health.heytapmobi.com --> [117.133.184.166] A from https://223.5.5.5:443/dns-query
19:30:26.093   Debug: [DNS] sport.health.heytapmobi.com --> [] AAAA from https://223.5.5.5:443/dns-query
19:30:26.094   Debug: [DNS] sport.health.heytapmobi.com --> [] AAAA from https://dns.alidns.com:443/dns-query
19:30:26.300   Debug: [DNS] sport.health.heytapmobi.com --> [] AAAA from tls://dot.pub:853
19:30:26.404   Debug: [DNS] sport.health.heytapmobi.com --> [] AAAA from 223.5.5.5:853
19:30:26.406   Debug: [DNS] sport.health.heytapmobi.com --> [117.133.184.166] A from 223.5.5.5:853
19:30:26.438    Info: [TCP] 127.0.0.1:42796(com.heytap.health) --> sport.health.heytapmobi.com:443 match GeoSite(cn) using 直连[DIRECT]
19:30:31.924   Debug: [Rule] use default rules
19:30:31.925   Debug: [Rule] use default rules
19:30:31.926   Debug: [PKG] 172.19.0.1:34440 --> 91.108.56.163:5222 by 10373[org.telegram.messenger]
19:30:31.926    Info: [TCP] 172.19.0.1:34440(org.telegram.messenger) --> 91.108.56.163:5222 match GeoIP(telegram) using Telegram[[AnyTls]]
19:30:31.926   Debug: [PKG] 172.19.0.1:59048 --> 95.161.76.101:443 by 10373[org.telegram.messenger]
19:30:31.928    Info: [TCP] 172.19.0.1:59048(org.telegram.messenger) --> 95.161.76.101:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:30:35.677   Debug: Auth success from 127.0.0.1:45636 ->
19:30:35.678   Debug: [Rule] use default rules
19:30:35.679   Debug: [PKG] 127.0.0.1:45636 --> app-apm.gotokeep.com:443 by 10575[com.gotokeep.keep]
19:30:35.682   Debug: [DNS] cache hit app-apm.gotokeep.com --> [111.13.145.160] A, expire at 2025-03-10 19:29:07
19:30:35.683   Debug: [DNS] cache hit app-apm.gotokeep.com --> [2409:8c00:7821:1a:8000:0:d00:19] AAAA, expire at 2025-03-10 19:28:36
19:30:35.683   Debug: [DNS] resolve app-apm.gotokeep.com A from tls://dot.pub:853
19:30:35.686   Debug: [DNS] resolve app-apm.gotokeep.com A from https://223.5.5.5:443/dns-query
19:30:35.686   Debug: [DNS] resolve app-apm.gotokeep.com A from https://dns.alidns.com:443/dns-query
19:30:35.686   Debug: [DNS] resolve app-apm.gotokeep.com A from 223.5.5.5:853
19:30:35.686   Debug: [DNS] resolve app-apm.gotokeep.com AAAA from tls://dot.pub:853
19:30:35.686   Debug: [DNS] resolve app-apm.gotokeep.com AAAA from 223.5.5.5:853
19:30:35.686   Debug: [DNS] resolve app-apm.gotokeep.com AAAA from https://223.5.5.5:443/dns-query
19:30:35.686   Debug: [DNS] resolve app-apm.gotokeep.com AAAA from https://dns.alidns.com:443/dns-query
19:30:35.822    Info: [TCP] 127.0.0.1:45636(com.gotokeep.keep) --> app-apm.gotokeep.com:443 match GeoSite(cn) using 直连[DIRECT]
19:30:35.823   Debug: [DNS] app-apm.gotokeep.com --> [2409:8c00:7821:1a:8000:0:d00:19] AAAA from https://dns.alidns.com:443/dns-query
19:30:35.827   Debug: [DNS] app-apm.gotokeep.com --> [111.13.145.160] A from https://dns.alidns.com:443/dns-query
19:30:35.828   Debug: [DNS] app-apm.gotokeep.com --> [111.13.145.160] A from https://223.5.5.5:443/dns-query
19:30:35.828   Debug: [DNS] app-apm.gotokeep.com --> [2409:8c00:7821:1a:8000:0:d00:19] AAAA from https://223.5.5.5:443/dns-query
19:30:36.604   Debug: [DNS] app-apm.gotokeep.com --> [2409:8c00:7821:1a:8000:0:d00:19] AAAA from 223.5.5.5:853
19:30:36.808   Debug: [DNS] app-apm.gotokeep.com --> [111.13.145.160] A from 223.5.5.5:853
19:30:37.881   Debug: [Rule] use default rules
19:30:37.882   Debug: [PKG] 172.19.0.1:33864 --> 91.108.56.137:443 by 10373[org.telegram.messenger]
19:30:37.886    Info: [TCP] 172.19.0.1:33864(org.telegram.messenger) --> 91.108.56.137:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:30:37.888   Debug: [Rule] use default rules
19:30:37.889   Debug: [PKG] 172.19.0.1:33970 --> 91.108.56.148:5222 by 10373[org.telegram.messenger]
19:30:37.890    Info: [TCP] 172.19.0.1:33970(org.telegram.messenger) --> 91.108.56.148:5222 match GeoIP(telegram) using Telegram[[AnyTls]]
19:30:39.950   Debug: [Rule] use default rules
19:30:39.951   Debug: [Rule] use default rules
19:30:39.952   Debug: [PKG] 172.19.0.1:36024 --> 91.108.56.163:443 by 10373[org.telegram.messenger]
19:30:39.953    Info: [TCP] 172.19.0.1:36024(org.telegram.messenger) --> 91.108.56.163:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:30:39.953   Debug: [PKG] 172.19.0.1:32994 --> 95.161.76.101:443 by 10373[org.telegram.messenger]
19:30:39.954    Info: [TCP] 172.19.0.1:32994(org.telegram.messenger) --> 95.161.76.101:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:30:40.269   Debug: [Rule] use default rules
19:30:40.270   Debug: [PKG] 172.19.0.1:33000 --> 95.161.76.101:443 by 10373[org.telegram.messenger]
19:30:40.270    Info: [TCP] 172.19.0.1:33000(org.telegram.messenger) --> 95.161.76.101:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:30:40.298   Debug: Auth success from 127.0.0.1:58652 ->
19:30:40.299   Debug: [Rule] use default rules
19:30:40.299   Debug: [PKG] 127.0.0.1:58652 --> api.map.baidu.com:443 by 10221[com.oplus.location]
19:30:40.299   Debug: [DNS] resolve api.map.baidu.com A from tls://dot.pub:853
19:30:40.299   Debug: [DNS] resolve api.map.baidu.com A from https://223.5.5.5:443/dns-query
19:30:40.299   Debug: [DNS] resolve api.map.baidu.com AAAA from tls://dot.pub:853
19:30:40.299   Debug: [DNS] resolve api.map.baidu.com AAAA from https://223.5.5.5:443/dns-query
19:30:40.300   Debug: [DNS] resolve api.map.baidu.com AAAA from https://dns.alidns.com:443/dns-query
19:30:40.300   Debug: [DNS] resolve api.map.baidu.com AAAA from 223.5.5.5:853
19:30:40.300   Debug: [DNS] resolve api.map.baidu.com A from 223.5.5.5:853
19:30:40.300   Debug: [DNS] resolve api.map.baidu.com A from https://dns.alidns.com:443/dns-query
19:30:40.329   Debug: [DNS] api.map.baidu.com --> [39.156.68.49 112.34.111.148] A from https://dns.alidns.com:443/dns-query
19:30:40.332   Debug: [DNS] api.map.baidu.com --> [2409:8c00:6c21:103c:0:ff:b058:29bf] AAAA from https://dns.alidns.com:443/dns-query
19:30:40.333   Debug: [DNS] api.map.baidu.com --> [112.34.111.148 39.156.68.49] A from 223.5.5.5:853
19:30:40.333   Debug: [DNS] api.map.baidu.com --> [2409:8c00:6c21:103c:0:ff:b058:29bf] AAAA from 223.5.5.5:853
19:30:40.358    Info: [TCP] 127.0.0.1:58652(com.oplus.location) --> api.map.baidu.com:443 match GeoSite(cn) using 直连[DIRECT]
19:30:48.290   Debug: [Rule] use default rules
19:30:48.290   Debug: [Rule] use default rules
19:30:48.292   Debug: [PKG] [fdfe:dcba:9876::1]:60620 --> [2001:b28:f23f:f005::a]:443 by 10373[org.telegram.messenger]
19:30:48.293    Info: [TCP] [fdfe:dcba:9876::1]:60620(org.telegram.messenger) --> [2001:b28:f23f:f005::a]:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:30:48.294   Debug: [PKG] 172.19.0.1:58828 --> 95.161.76.101:443 by 10373[org.telegram.messenger]
19:30:48.295    Info: [TCP] 172.19.0.1:58828(org.telegram.messenger) --> 95.161.76.101:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:30:56.310   Debug: [Rule] use default rules
19:30:56.311   Debug: [Rule] use default rules
19:30:56.314   Debug: [PKG] 172.19.0.1:58830 --> 95.161.76.101:443 by 10373[org.telegram.messenger]
19:30:56.314   Debug: [PKG] 172.19.0.1:53898 --> 91.108.56.163:443 by 10373[org.telegram.messenger]
19:30:56.314    Info: [TCP] 172.19.0.1:58830(org.telegram.messenger) --> 95.161.76.101:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:30:56.316    Info: [TCP] 172.19.0.1:53898(org.telegram.messenger) --> 91.108.56.163:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:31:04.332   Debug: [Rule] use default rules
19:31:04.338   Debug: [PKG] [fdfe:dcba:9876::1]:41482 --> [2001:b28:f23f:f005::a]:5222 by 10373[org.telegram.messenger]
19:31:04.338    Info: [TCP] [fdfe:dcba:9876::1]:41482(org.telegram.messenger) --> [2001:b28:f23f:f005::a]:5222 match GeoIP(telegram) using Telegram[[AnyTls]]
19:31:04.340   Debug: [Rule] use default rules
19:31:04.341   Debug: [PKG] 172.19.0.1:35658 --> 95.161.76.101:443 by 10373[org.telegram.messenger]
19:31:04.343    Info: [TCP] 172.19.0.1:35658(org.telegram.messenger) --> 95.161.76.101:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:31:04.635   Debug: [Rule] use default rules
19:31:04.640   Debug: [PKG] 172.19.0.1:35670 --> 95.161.76.101:443 by 10373[org.telegram.messenger]
19:31:04.640    Info: [TCP] 172.19.0.1:35670(org.telegram.messenger) --> 95.161.76.101:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:31:11.902   Debug: [Rule] use default rules
19:31:11.908   Debug: [PKG] 172.19.0.1:38852 --> 91.108.56.148:443 by 10373[org.telegram.messenger]
19:31:11.909    Info: [TCP] 172.19.0.1:38852(org.telegram.messenger) --> 91.108.56.148:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:31:11.915   Debug: [Rule] use default rules
19:31:11.916   Debug: [PKG] [fdfe:dcba:9876::1]:42228 --> [2001:b28:f23f:f005::a]:443 by 10373[org.telegram.messenger]
19:31:11.916    Info: [TCP] [fdfe:dcba:9876::1]:42228(org.telegram.messenger) --> [2001:b28:f23f:f005::a]:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:31:12.658   Debug: [Rule] use default rules
19:31:12.659   Debug: [Rule] use default rules
19:31:12.659   Debug: [PKG] 172.19.0.1:52478 --> 95.161.76.101:443 by 10373[org.telegram.messenger]
19:31:12.659    Info: [TCP] 172.19.0.1:52478(org.telegram.messenger) --> 95.161.76.101:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:31:12.665   Debug: [PKG] 172.19.0.1:46474 --> 91.108.56.163:443 by 10373[org.telegram.messenger]
19:31:12.666    Info: [TCP] 172.19.0.1:46474(org.telegram.messenger) --> 91.108.56.163:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:31:14.927   Debug: Auth success from 127.0.0.1:39514 ->
19:31:14.928   Debug: [Rule] use default rules
19:31:14.933   Debug: [PKG] 127.0.0.1:39514 --> sdk.e.qq.com:443 by 10575[com.gotokeep.keep]
19:31:14.935   Debug: [DNS] cache hit sdk.e.qq.com --> [111.33.167.62] A, expire at 2025-03-10 19:26:36
19:31:14.936   Debug: [DNS] cache hit sdk.e.qq.com --> [2409:8702:4860:10::62] AAAA, expire at 2025-03-10 19:26:46
19:31:14.936   Debug: [DNS] resolve sdk.e.qq.com A from tls://dot.pub:853
19:31:14.939   Debug: [DNS] resolve sdk.e.qq.com A from https://dns.alidns.com:443/dns-query
19:31:14.939   Debug: [DNS] resolve sdk.e.qq.com A from https://223.5.5.5:443/dns-query
19:31:14.939   Debug: [DNS] resolve sdk.e.qq.com AAAA from tls://dot.pub:853
19:31:14.939   Debug: [DNS] resolve sdk.e.qq.com AAAA from 223.5.5.5:853
19:31:14.940   Debug: [DNS] resolve sdk.e.qq.com AAAA from https://223.5.5.5:443/dns-query
19:31:14.940   Debug: [DNS] resolve sdk.e.qq.com AAAA from https://dns.alidns.com:443/dns-query
19:31:14.940   Debug: [DNS] resolve sdk.e.qq.com A from 223.5.5.5:853
19:31:15.019    Info: [TCP] 127.0.0.1:39514(com.gotokeep.keep) --> sdk.e.qq.com:443 match GeoSite(cn) using 直连[DIRECT]
19:31:15.020   Debug: [DNS] sdk.e.qq.com --> [111.33.167.62] A from https://223.5.5.5:443/dns-query
19:31:15.020   Debug: [DNS] sdk.e.qq.com --> [2409:8702:4860:10::62] AAAA from https://223.5.5.5:443/dns-query
19:31:15.341   Debug: [DNS] sdk.e.qq.com --> [111.33.167.62] A from 223.5.5.5:853
19:31:15.348   Debug: [DNS] sdk.e.qq.com --> [2409:8702:4860:10::62] AAAA from 223.5.5.5:853
19:31:20.675   Debug: [Rule] use default rules
19:31:20.679   Debug: [PKG] [fdfe:dcba:9876::1]:46234 --> [2001:b28:f23f:f005::a]:443 by 10373[org.telegram.messenger]
19:31:20.681    Info: [TCP] [fdfe:dcba:9876::1]:46234(org.telegram.messenger) --> [2001:b28:f23f:f005::a]:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:31:20.683   Debug: [Rule] use default rules
19:31:20.684   Debug: [PKG] 172.19.0.1:40938 --> 95.161.76.101:443 by 10373[org.telegram.messenger]
19:31:20.684    Info: [TCP] 172.19.0.1:40938(org.telegram.messenger) --> 95.161.76.101:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:31:28.710   Debug: [Rule] use default rules
19:31:28.711   Debug: [PKG] 172.19.0.1:59992 --> 91.108.56.163:443 by 10373[org.telegram.messenger]
19:31:28.711    Info: [TCP] 172.19.0.1:59992(org.telegram.messenger) --> 91.108.56.163:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:31:28.712   Debug: [PKG] 172.19.0.1:59356 --> 95.161.76.101:443 by 10373[org.telegram.messenger]
19:31:28.712    Info: [TCP] 172.19.0.1:59356(org.telegram.messenger) --> 95.161.76.101:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:31:28.991   Debug: [Rule] use default rules
19:31:28.995   Debug: [PKG] 172.19.0.1:59358 --> 95.161.76.101:443 by 10373[org.telegram.messenger]
19:31:28.995    Info: [TCP] 172.19.0.1:59358(org.telegram.messenger) --> 95.161.76.101:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:31:30.878   Debug: Auth success from 127.0.0.1:39366 ->
19:31:30.886   Debug: [Rule] use default rules
19:31:30.888   Debug: [PKG] 127.0.0.1:39366 --> static1.keepcdn.com:443 by 10575[com.gotokeep.keep]
19:31:30.889   Debug: [DNS] cache hit static1.keepcdn.com --> [111.32.160.3 111.31.112.84 111.14.190.67 111.14.190.70 111.32.160.6 111.14.190.68 111.14.190.66] A, expire at 2025-03-10 19:30:00
19:31:30.889   Debug: [DNS] cache hit static1.keepcdn.com --> [2409:8c02:11c:cf:8000:0:b00:11 2409:8c02:11c:cf:8000:0:b00:12] AAAA, expire at 2025-03-10 19:30:07
19:31:30.889   Debug: [DNS] resolve static1.keepcdn.com AAAA from tls://dot.pub:853
19:31:30.889   Debug: Auth success from 127.0.0.1:39350 ->
19:31:30.889   Debug: [DNS] resolve static1.keepcdn.com AAAA from https://dns.alidns.com:443/dns-query
19:31:30.890   Debug: [DNS] resolve static1.keepcdn.com AAAA from 223.5.5.5:853
19:31:30.890   Debug: [DNS] resolve static1.keepcdn.com A from tls://dot.pub:853
19:31:30.890   Debug: [DNS] resolve static1.keepcdn.com AAAA from https://223.5.5.5:443/dns-query
19:31:30.890   Debug: [DNS] resolve static1.keepcdn.com A from https://223.5.5.5:443/dns-query
19:31:30.890   Debug: [DNS] resolve static1.keepcdn.com A from https://dns.alidns.com:443/dns-query
19:31:30.892   Debug: [DNS] resolve static1.keepcdn.com A from 223.5.5.5:853
19:31:30.892   Debug: [Rule] use default rules
19:31:30.892   Debug: Auth success from 127.0.0.1:39368 ->
19:31:30.892   Debug: [Rule] use default rules
19:31:30.892   Debug: [PKG] 127.0.0.1:39368 --> static1-1.keepcdn.com:443 by 10575[com.gotokeep.keep]
19:31:30.892   Debug: [PKG] 127.0.0.1:39350 --> static1-2.keepcdn.com:443 by 10575[com.gotokeep.keep]
19:31:30.892   Debug: [DNS] cache hit static1-2.keepcdn.com --> [111.132.34.16 111.132.34.17 111.132.34.18 111.132.34.19 111.132.34.20 183.204.37.210 221.180.218.235 120.201.120.235 183.204.149.121 111.132.34.21 223.100.33.212 223.100.35.197 111.132.34.14 223.100.33.213 223.100.35.198 111.132.34.15] A, expire at 2025-03-10 19:29:42
19:31:30.893   Debug: [DNS] cache hit static1-2.keepcdn.com --> [] AAAA, expire at 2025-03-10 19:29:31
19:31:30.893   Debug: [DNS] cache hit static1-1.keepcdn.com --> [111.31.107.92 111.31.238.112 120.220.158.75 111.31.107.115] A, expire at 2025-03-10 19:27:59
19:31:30.893   Debug: [DNS] cache hit static1-1.keepcdn.com --> [2409:8c04:1003:135:37::19 2409:8702:489c:0:70::24 2409:8c3c:1300:306:62::18] AAAA, expire at 2025-03-10 19:28:29
19:31:30.893   Debug: [DNS] resolve static1-1.keepcdn.com A from tls://dot.pub:853
19:31:30.893   Debug: [DNS] resolve static1-1.keepcdn.com A from https://223.5.5.5:443/dns-query
19:31:30.893   Debug: [DNS] resolve static1-1.keepcdn.com A from https://dns.alidns.com:443/dns-query
19:31:30.894   Debug: [DNS] resolve static1-1.keepcdn.com A from 223.5.5.5:853
19:31:30.894   Debug: [DNS] resolve static1-2.keepcdn.com A from tls://dot.pub:853
19:31:30.894   Debug: [DNS] resolve static1-1.keepcdn.com AAAA from tls://dot.pub:853
19:31:30.895   Debug: [DNS] resolve static1-2.keepcdn.com A from https://223.5.5.5:443/dns-query
19:31:30.895   Debug: [DNS] resolve static1-2.keepcdn.com A from https://dns.alidns.com:443/dns-query
19:31:30.895   Debug: [DNS] resolve static1-2.keepcdn.com A from 223.5.5.5:853
19:31:30.895   Debug: [DNS] resolve static1-2.keepcdn.com AAAA from tls://dot.pub:853
19:31:30.895   Debug: [DNS] resolve static1-2.keepcdn.com AAAA from https://223.5.5.5:443/dns-query
19:31:30.895   Debug: [DNS] resolve static1-2.keepcdn.com AAAA from https://dns.alidns.com:443/dns-query
19:31:30.895   Debug: [DNS] resolve static1-2.keepcdn.com AAAA from 223.5.5.5:853
19:31:30.896   Debug: [DNS] resolve static1-1.keepcdn.com AAAA from 223.5.5.5:853
19:31:30.896   Debug: [DNS] resolve static1-1.keepcdn.com AAAA from https://223.5.5.5:443/dns-query
19:31:30.896   Debug: [DNS] resolve static1-1.keepcdn.com AAAA from https://dns.alidns.com:443/dns-query
19:31:30.899   Debug: Auth success from 127.0.0.1:39370 ->
19:31:30.900   Debug: Auth success from 127.0.0.1:39384 ->
19:31:30.900   Debug: [Rule] use default rules
19:31:30.900   Debug: [Rule] use default rules
19:31:30.903   Debug: [PKG] 127.0.0.1:39384 --> v1-2.keepcdn.com:443 by 10575[com.gotokeep.keep]
19:31:30.903   Debug: [DNS] cache hit v1-2.keepcdn.com --> [223.100.33.211 120.201.120.235 183.204.149.123 183.204.37.210 221.180.218.235 111.132.34.16 223.100.35.199 223.100.33.212 111.132.34.17 111.132.34.18 111.132.34.19 111.132.34.20 111.132.34.21 111.132.34.14 111.132.34.15 223.100.35.198] A, expire at 2025-03-10 19:29:59
19:31:30.904   Debug: [DNS] resolve v1-2.keepcdn.com A from tls://dot.pub:853
19:31:30.906   Debug: [DNS] resolve v1.keepcdn.com A from 223.5.5.5:853
19:31:30.907   Debug: [DNS] resolve v1-2.keepcdn.com AAAA from tls://dot.pub:853
19:31:30.907   Debug: [DNS] resolve v1.keepcdn.com A from https://223.5.5.5:443/dns-query
19:31:30.908   Debug: [DNS] resolve v1.keepcdn.com A from https://dns.alidns.com:443/dns-query
19:31:30.908   Debug: [DNS] resolve v1.keepcdn.com AAAA from tls://dot.pub:853
19:31:30.908   Debug: [DNS] resolve v1-2.keepcdn.com AAAA from https://223.5.5.5:443/dns-query
19:31:30.909   Debug: [DNS] resolve v1-2.keepcdn.com AAAA from https://dns.alidns.com:443/dns-query
19:31:30.910   Debug: [DNS] resolve v1-2.keepcdn.com AAAA from 223.5.5.5:853
19:31:30.910   Debug: [Rule] use default rules
19:31:30.910   Debug: [PKG] 127.0.0.1:39392 --> v1-1.keepcdn.com:443 by 10575[com.gotokeep.keep]
19:31:30.911   Debug: [DNS] resolve v1-1.keepcdn.com AAAA from 223.5.5.5:853
19:31:30.917    Info: [TCP] 127.0.0.1:39350(com.gotokeep.keep) --> static1-2.keepcdn.com:443 match GeoSite(cn) using 直连[DIRECT]
19:31:30.923    Info: [TCP] 127.0.0.1:39368(com.gotokeep.keep) --> static1-1.keepcdn.com:443 match GeoSite(cn) using 直连[DIRECT]
19:31:30.923   Debug: [DNS] static1.keepcdn.com --> [2409:8c14:f13:1204:3::3f6 2409:8c14:f05:1202:3::7fc 2409:8c14:f05:1202:3::7fb 2409:801a:3000:3:3::3f1] AAAA from https://dns.alidns.com:443/dns-query
19:31:30.923   Debug: [DNS] static1.keepcdn.com --> [111.32.209.227 111.32.209.232 111.32.209.229 111.32.209.228 111.32.209.234 111.32.209.230 111.32.209.233 111.32.209.231] A from https://dns.alidns.com:443/dns-query
19:31:30.924   Debug: [DNS] static1-2.keepcdn.com --> [] AAAA from https://dns.alidns.com:443/dns-query
19:31:30.924   Debug: [DNS] static1-1.keepcdn.com --> [2409:8702:489c:0:70::24 2409:8c04:1003:135:37::19 2409:8c3c:1300:306:62::18] AAAA from https://dns.alidns.com:443/dns-query
19:31:30.924   Debug: [DNS] static1-1.keepcdn.com --> [111.31.107.92 120.220.158.75 111.31.107.115 111.31.238.112] A from https://dns.alidns.com:443/dns-query
19:31:30.924   Debug: [DNS] static1-2.keepcdn.com --> [111.132.34.16 223.100.33.212 223.100.35.197 111.132.34.17 223.100.33.213 223.100.35.198 111.132.34.18 111.132.34.19 111.132.34.20 111.132.34.21 111.132.34.14 111.132.34.15 120.201.120.235 183.204.149.121 183.204.37.207 221.180.218.237] A from https://dns.alidns.com:443/dns-query
19:31:30.924   Debug: [DNS] static1-2.keepcdn.com --> [] AAAA from 223.5.5.5:853
19:31:30.924   Debug: [DNS] static1-1.keepcdn.com --> [2409:8c3c:1300:306:62::18 2409:8c04:1003:135:37::19 2409:8702:489c:0:70::24] AAAA from 223.5.5.5:853
19:31:30.924   Debug: [DNS] static1-2.keepcdn.com --> [223.100.33.208 111.132.34.20 111.132.34.21 111.132.34.14 111.132.34.15 111.132.34.16 111.132.34.17 120.201.120.240 183.204.149.123 183.204.37.208 221.180.218.237 111.132.34.18 223.100.35.197 223.100.33.207 111.132.34.19 223.100.35.198] A from 223.5.5.5:853
19:31:30.924   Debug: [DNS] static1-1.keepcdn.com --> [111.31.238.112 120.220.158.75 111.31.107.92 111.31.107.115] A from 223.5.5.5:853
19:31:30.924   Debug: [DNS] static1.keepcdn.com --> [111.32.209.230 111.32.209.231 111.32.209.232 111.32.209.233 111.32.209.234 111.32.209.227 111.32.209.228 111.32.209.229] A from 223.5.5.5:853
19:31:30.925   Debug: [DNS] static1.keepcdn.com --> [2409:801a:3000:3:3::3f1 2409:8c14:f13:1204:3::3f6 2409:8c14:f05:1202:3::7fc 2409:8c14:f05:1202:3::7fb] AAAA from 223.5.5.5:853
19:31:30.929    Info: [TCP] 127.0.0.1:39384(com.gotokeep.keep) --> v1-2.keepcdn.com:443 match GeoSite(cn) using 直连[DIRECT]
19:31:30.947    Info: [TCP] 127.0.0.1:39370(com.gotokeep.keep) --> v1.keepcdn.com:443 match GeoSite(cn) using 直连[DIRECT]
19:31:30.949   Debug: [DNS] v1-2.keepcdn.com --> [] AAAA from https://dns.alidns.com:443/dns-query
19:31:30.950   Debug: [DNS] v1.keepcdn.com --> [2409:8c14:f05:1202:3::7fb 2409:8c14:f05:1202:3::7fc 2409:8c14:f13:1204:3::3f5 2409:801a:3000:3:3::3f2] AAAA from 223.5.5.5:853
19:31:30.950   Debug: [DNS] v1-1.keepcdn.com --> [120.220.82.100 183.201.114.250] A from 223.5.5.5:853
19:31:30.951   Debug: [DNS] v1-1.keepcdn.com --> [2409:8c44:2:140::86] AAAA from 223.5.5.5:853
19:31:30.951   Debug: [DNS] v1.keepcdn.com --> [183.201.202.191 183.201.202.189] A from 223.5.5.5:853
19:31:30.951   Debug: [DNS] v1-2.keepcdn.com --> [] AAAA from 223.5.5.5:853
19:31:30.951   Debug: [DNS] v1-2.keepcdn.com --> [111.132.34.16 221.180.218.235 223.100.33.207 120.201.120.242 223.100.33.211 223.100.33.210 111.132.34.17 111.132.34.19 111.132.34.21 111.132.34.14 111.132.34.18 111.132.34.15 111.132.34.20 223.100.35.203 183.204.149.124 223.100.35.197] A from 223.5.5.5:853
19:31:30.951   Debug: [DNS] v1.keepcdn.com --> [183.201.202.191 183.201.202.189] A from https://dns.alidns.com:443/dns-query
19:31:30.951   Debug: [DNS] v1-2.keepcdn.com --> [111.132.34.21 111.132.34.19 120.201.120.238 183.204.37.209 111.132.34.20 223.100.35.204 223.100.33.208 111.132.34.18 111.132.34.17 111.132.34.14 111.132.34.15 221.180.218.235 223.100.35.203 223.100.33.214 183.204.149.127 111.132.34.16] A from https://dns.alidns.com:443/dns-query
19:31:30.951   Debug: [DNS] v1.keepcdn.com --> [2409:8c14:f13:1204:3::3f6 2409:801a:3000:3:3::3f1 2409:8c14:f05:1202:3::7fb 2409:8c14:f05:1202:3::7fc 2409:801a:3000:3:3::3f2 2409:8c14:f13:1204:3::3f5] AAAA from https://dns.alidns.com:443/dns-query
19:31:30.956    Info: [TCP] 127.0.0.1:39392(com.gotokeep.keep) --> v1-1.keepcdn.com:443 match GeoSite(cn) using 直连[DIRECT]
19:31:31.158   Debug: [DNS] v1-2.keepcdn.com --> [] AAAA from tls://dot.pub:853
19:31:31.159   Debug: [DNS] static1-2.keepcdn.com --> [] AAAA from tls://dot.pub:853
19:31:31.440   Debug: [DNS] static1-2.keepcdn.com --> [] AAAA from https://223.5.5.5:443/dns-query
19:31:31.441   Debug: [DNS] v1-2.keepcdn.com --> [] AAAA from https://223.5.5.5:443/dns-query
19:31:35.954   Debug: Auth success from 127.0.0.1:39396 ->
19:31:35.955   Debug: [Rule] use default rules
19:31:35.964   Debug: [PKG] 127.0.0.1:39396 --> app-apm.gotokeep.com:443 by 10575[com.gotokeep.keep]
19:31:35.964   Debug: [DNS] cache hit app-apm.gotokeep.com --> [111.13.145.160] A, expire at 2025-03-10 19:30:37
19:31:35.964   Debug: [DNS] cache hit app-apm.gotokeep.com --> [2409:8c00:7821:1a:8000:0:d00:19] AAAA, expire at 2025-03-10 19:30:37
19:31:35.968   Debug: [DNS] resolve app-apm.gotokeep.com AAAA from tls://dot.pub:853
19:31:35.968   Debug: [DNS] resolve app-apm.gotokeep.com AAAA from https://223.5.5.5:443/dns-query
19:31:35.968   Debug: [DNS] resolve app-apm.gotokeep.com AAAA from https://dns.alidns.com:443/dns-query
19:31:35.968   Debug: [DNS] resolve app-apm.gotokeep.com AAAA from 223.5.5.5:853
19:31:35.968   Debug: [DNS] resolve app-apm.gotokeep.com A from tls://dot.pub:853
19:31:35.968   Debug: [DNS] resolve app-apm.gotokeep.com A from https://dns.alidns.com:443/dns-query
19:31:35.968   Debug: [DNS] resolve app-apm.gotokeep.com A from 223.5.5.5:853
19:31:35.969   Debug: [DNS] resolve app-apm.gotokeep.com A from https://223.5.5.5:443/dns-query
19:31:36.005    Info: [TCP] 127.0.0.1:39396(com.gotokeep.keep) --> app-apm.gotokeep.com:443 match GeoSite(cn) using 直连[DIRECT]
19:31:36.013   Debug: [DNS] app-apm.gotokeep.com --> [2409:8c00:7821:1a:8000:0:d00:19] AAAA from 223.5.5.5:853
19:31:36.014   Debug: [DNS] app-apm.gotokeep.com --> [111.13.145.160] A from 223.5.5.5:853
19:31:37.595   Debug: [Rule] use default rules
19:31:37.597   Debug: [Rule] use default rules
19:31:37.599   Debug: [PKG] 172.19.0.1:59360 --> 95.161.76.101:443 by 10373[org.telegram.messenger]
19:31:37.600    Info: [TCP] 172.19.0.1:59360(org.telegram.messenger) --> 95.161.76.101:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:31:37.601   Debug: [PKG] 172.19.0.1:56620 --> 91.108.56.163:5222 by 10373[org.telegram.messenger]
19:31:37.602    Info: [TCP] 172.19.0.1:56620(org.telegram.messenger) --> 91.108.56.163:5222 match GeoIP(telegram) using Telegram[[AnyTls]]
19:31:45.612   Debug: [Rule] use default rules
19:31:45.615   Debug: [Rule] use default rules
19:31:45.615   Debug: [PKG] 172.19.0.1:52918 --> 95.161.76.101:443 by 10373[org.telegram.messenger]
19:31:45.615    Info: [TCP] 172.19.0.1:52918(org.telegram.messenger) --> 95.161.76.101:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:31:45.617   Debug: [PKG] [fdfe:dcba:9876::1]:48876 --> [2001:b28:f23f:f005::a]:443 by 10373[org.telegram.messenger]
19:31:45.618    Info: [TCP] [fdfe:dcba:9876::1]:48876(org.telegram.messenger) --> [2001:b28:f23f:f005::a]:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:31:45.916   Debug: [Rule] use default rules
19:31:45.922   Debug: [PKG] [fdfe:dcba:9876::1]:48884 --> [2001:b28:f23f:f005::a]:443 by 10373[org.telegram.messenger]
19:31:45.922    Info: [TCP] [fdfe:dcba:9876::1]:48884(org.telegram.messenger) --> [2001:b28:f23f:f005::a]:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:31:45.931   Debug: [Rule] use default rules
19:31:45.934   Debug: [PKG] 172.19.0.1:57640 --> 91.108.56.137:5222 by 10373[org.telegram.messenger]
19:31:45.934    Info: [TCP] 172.19.0.1:57640(org.telegram.messenger) --> 91.108.56.137:5222 match GeoIP(telegram) using Telegram[[AnyTls]]
19:31:53.634   Debug: [Rule] use default rules
19:31:53.637   Debug: [PKG] 172.19.0.1:60586 --> 91.108.56.163:443 by 10373[org.telegram.messenger]
19:31:53.639    Info: [TCP] 172.19.0.1:60586(org.telegram.messenger) --> 91.108.56.163:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:31:53.641   Debug: [Rule] use default rules
19:31:53.641   Debug: [PKG] 172.19.0.1:41148 --> 95.161.76.101:443 by 10373[org.telegram.messenger]
19:31:53.641    Info: [TCP] 172.19.0.1:41148(org.telegram.messenger) --> 95.161.76.101:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:31:53.866   Debug: [Rule] use default rules
19:31:53.870   Debug: [PKG] 172.19.0.1:41164 --> 95.161.76.101:443 by 10373[org.telegram.messenger]
19:31:53.871    Info: [TCP] 172.19.0.1:41164(org.telegram.messenger) --> 95.161.76.101:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:31:59.102   Debug: [Rule] use default rules
19:31:59.105   Debug: [PKG] [fdfe:dcba:9876::1]:49292 --> [2001:b28:f23f:f005::a]:443 by 10373[org.telegram.messenger]
19:31:59.105   Debug: [DNS] cache hit xx.xx.xx --> [] AAAA, expire at 2025-03-10 19:39:52
19:31:59.106   Debug: [DNS] cache hit xx.xx.xx --> [a.b.c.d] A, expire at 2025-03-10 19:29:53
19:31:59.106   Debug: [DNS] resolve xx.xx.xx A from tls://dot.pub:853
19:31:59.106   Debug: [DNS] resolve xx.xx.xx A from https://dns.alidns.com:443/dns-query
19:31:59.106   Debug: [DNS] resolve xx.xx.xx A from https://223.5.5.5:443/dns-query
19:31:59.106   Debug: [DNS] resolve xx.xx.xx A from 223.5.5.5:853
19:31:59.198   Debug: [DNS] xx.xx.xx --> [a.b.c.d] A from https://223.5.5.5:443/dns-query
19:31:59.198   Debug: [DNS] xx.xx.xx --> [a.b.c.d] A from 223.5.5.5:853
19:31:59.199   Debug: [DNS] xx.xx.xx --> [a.b.c.d] A from https://dns.alidns.com:443/dns-query
19:32:02.114   Debug: [Rule] use default rules
19:32:02.115   Debug: [PKG] 172.19.0.1:43622 --> 95.161.76.101:443 by 10373[org.telegram.messenger]
19:32:02.115    Info: [TCP] 172.19.0.1:43622(org.telegram.messenger) --> 95.161.76.101:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:32:04.106 Warning: [TCP] dial Telegram (match GeoIP/telegram) [fdfe:dcba:9876::1]:49292(org.telegram.messenger) --> [2001:b28:f23f:f005::a]:443 error: failed to create session: dial tcp a.b.c.d:443: i/o timeout
19:32:04.160   Debug: [Rule] use default rules
19:32:04.163   Debug: [PKG] [fdfe:dcba:9876::1]:49304 --> [2001:b28:f23f:f005::a]:443 by 10373[org.telegram.messenger]
19:32:04.163   Debug: [DNS] cache hit xx.xx.xx --> [a.b.c.d] A, expire at 2025-03-10 19:34:53
19:32:04.164   Debug: [DNS] cache hit xx.xx.xx --> [] AAAA, expire at 2025-03-10 19:39:52
19:32:04.305   Debug: use specified fingerprint:Chrome
19:32:04.400    Info: [TCP] [fdfe:dcba:9876::1]:49304(org.telegram.messenger) --> [2001:b28:f23f:f005::a]:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:32:04.709   Debug: [Rule] use default rules
19:32:04.709   Debug: [Rule] use default rules
19:32:04.710   Debug: [PKG] [fdfe:dcba:9876::1]:56788 --> [2001:b28:f23f:f005::7]:443 by 10373[org.telegram.messenger]
19:32:04.710   Debug: [DNS] cache hit xx.xx.xx --> [a.b.c.d] A, expire at 2025-03-10 19:34:53
19:32:04.711   Debug: [DNS] cache hit xx.xx.xx --> [] AAAA, expire at 2025-03-10 19:39:52
19:32:04.712   Debug: [PKG] [fdfe:dcba:9876::1]:56784 --> [2001:b28:f23f:f005::7]:443 by 10373[org.telegram.messenger]
19:32:04.716   Debug: [DNS] cache hit xx.xx.xx --> [a.b.c.d] A, expire at 2025-03-10 19:34:53
19:32:04.716   Debug: [DNS] cache hit xx.xx.xx --> [] AAAA, expire at 2025-03-10 19:39:52
19:32:04.778   Debug: use specified fingerprint:Chrome
19:32:04.798   Debug: use specified fingerprint:Chrome
19:32:04.875    Info: [TCP] [fdfe:dcba:9876::1]:56788(org.telegram.messenger) --> [2001:b28:f23f:f005::7]:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:32:04.896    Info: [TCP] [fdfe:dcba:9876::1]:56784(org.telegram.messenger) --> [2001:b28:f23f:f005::7]:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:32:07.204   Debug: [Rule] use default rules
19:32:07.204   Debug: [Rule] use default rules
19:32:07.208   Debug: [PKG] [fdfe:dcba:9876::1]:49320 --> [2001:b28:f23f:f005::a]:443 by 10373[org.telegram.messenger]
19:32:07.208   Debug: [PKG] 172.19.0.1:55790 --> 91.108.56.137:5222 by 10373[org.telegram.messenger]
19:32:07.211   Debug: [DNS] cache hit xx.xx.xx --> [a.b.c.d] A, expire at 2025-03-10 19:34:53
19:32:07.211   Debug: [DNS] cache hit xx.xx.xx --> [] AAAA, expire at 2025-03-10 19:39:52
19:32:07.212   Debug: [DNS] cache hit xx.xx.xx --> [a.b.c.d] A, expire at 2025-03-10 19:34:53
19:32:07.212   Debug: [DNS] cache hit xx.xx.xx --> [] AAAA, expire at 2025-03-10 19:39:52
19:32:07.329   Debug: use specified fingerprint:Chrome
19:32:07.334   Debug: use specified fingerprint:Chrome
19:32:07.434    Info: [TCP] [fdfe:dcba:9876::1]:49320(org.telegram.messenger) --> [2001:b28:f23f:f005::a]:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:32:07.434    Info: [TCP] 172.19.0.1:55790(org.telegram.messenger) --> 91.108.56.137:5222 match GeoIP(telegram) using Telegram[[AnyTls]]
19:32:10.886   Debug: [Rule] use default rules
19:32:10.888   Debug: [PKG] 172.19.0.1:44422 --> 95.161.76.101:443 by 10373[org.telegram.messenger]
19:32:10.889    Info: [TCP] 172.19.0.1:44422(org.telegram.messenger) --> 95.161.76.101:443 match GeoIP(telegram) using Telegram[[AnyTls]]
19:32:13.437   Debug: [Rule] use default rules
19:32:13.439   Debug: [PKG] 172.19.0.1:44426 --> 95.161.76.101:443 by 10373[org.telegram.messenger]
19:32:13.439   Debug: [DNS] cache hit xx.xx.xx --> [a.b.c.d] A, expire at 2025-03-10 19:34:53
19:32:13.439   Debug: [DNS] cache hit xx.xx.xx --> [] AAAA, expire at 2025-03-10 19:39:52
19:32:13.570   Debug: use specified fingerprint:Chrome
19:32:13.667    Info: [TCP] 172.19.0.1:44426(org.telegram.messenger) --> 95.161.76.101:443 match GeoIP(telegram) using Telegram[[AnyTls]]

@KorenKrita
Copy link
Author

KorenKrita commented Mar 10, 2025

补充 oppo系统存在待机低功耗模式 可能存在息屏时对非系统通知白名单中的app进行系统层面断网/抑制后台的情况 导致客户端并未收到tcp rst已测试与此无关

测试仅修改客户端min-idle-session为0时无此问题,从单一变量角度来看猜测与该参数有关

@xishang0128 xishang0128 added invalid This doesn't seem right not following template and removed bug Something isn't working labels Mar 10, 2025
@xishang0128
Copy link
Contributor

非直接运行内核产生的问题

@xishang0128 xishang0128 closed this as not planned Won't fix, can't repro, duplicate, stale Mar 10, 2025
@anytls
Copy link

anytls commented Mar 10, 2025

日志仍然不够详细,未显示服务器何时断开了Session。也未显示客户端侧使用复用的Stream代理中继时遇到的错误是否为超时。

不过我在 mihomo 文档中找到了一些提示:

https://wiki.metacubex.one/en/config/general/#tcp-keep-alive-settings

Disable TCP Keep Alive; on Android, this is set to true by default.

是否因为您的连接长时间处于非活动状态,已被 NAT 清除?

@KorenKrita
Copy link
Author

日志仍然不够详细,未显示服务器何时断开了Session。也未显示客户端侧使用复用的Stream代理中继时遇到的错误是否为超时。

不过我在 mihomo 文档中找到了一些提示:

https://wiki.metacubex.one/en/config/general/#tcp-keep-alive-settings

Disable TCP Keep Alive; on Android, this is set to true by default.

是否因为您的连接长时间处于非活动状态,已被 NAT 清除?

日志无论是sing-box服务端还是mihomo客户端都只能开到debug这个层级了。NAT丢失也是一种可能,keepalive在安卓上的关闭加上无数据传输导致运营商掐断长连接NAT是可预期的,但是本质与主题内描述的问题是一样的,猜测是min-idle-session只是固定保留了这些数量的session但是并未确保可用。这些不可用的session在下次请求时被继续复用,并以三个为一次循环进行关闭,失败三个session后丢弃请求,4的配置会经历两轮甚至更多才能开始创建新session导致了产生这种断流现象。

@anytls
Copy link

anytls commented Mar 10, 2025

最开始说过了。如果服务器(或者你的NAT,断开时应该向双方发送RST)断开了 TCP 连接,客户端收到 TCP RST 之后将使 recvLoop 返回,Client 就会清理掉这个 session。这样就实现了不可用会话的被动清理,也是可以预期的行为。

如果没有更多的信息,比如显示复用连接在每个步骤花费的时间,去除 Telegram Android 客户端直接复现问题,继续讨论是没有意义的。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
invalid This doesn't seem right not following template
Projects
None yet
Development

No branches or pull requests

3 participants