SagerNet / sing-box

The universal proxy platform
https://sing-box.sagernet.org/
Other
19.3k stars 2.29k forks source link

Caddy 反代 Websocket 后,Vmess 入站频繁报错 #358

Closed wy580477 closed 1 year ago

wy580477 commented 1 year ago

Welcome

Description of the problem

Caddy 反代 Websocket 流量到 sing-box,Xray 客户端 Vmess 可以连接但非常不稳定,频繁报错。

Caddy 反代到 sing-box trojan websocket入站是正常的。

Version of sing-box

v1.1.5

Server and client configuration file

Caddyfile 配置

```console handle {$SecretPATH}/vm* { @websocket { header Connection *Upgrade* header Upgrade websocket } handle @websocket { reverse_proxy @websocket { to localhost:61800 trusted_proxies private_ranges } } } handle {$SecretPATH}/tr* { @http-req { header X-Forwarded-Proto http } redir @http-req https://{host}{uri} @websocket-tr { header Connection *Upgrade* header Upgrade websocket } handle @websocket-tr { reverse_proxy @websocket-tr { to localhost:61801 trusted_proxies private_ranges } } respond * 401 } ```

sing-box 服务端配置:

```console { "log": { "level": "info" }, "dns": { "servers": [ { "address": "tls://8.8.8.8", "detour": "direct" } ], "strategy": "prefer_ipv4", "disable_cache": false }, "inbounds": [ { "type": "vmess", "listen": "::", "listen_port": 61800, "sniff": true, "sniff_override_destination": true, "users": [ { "uuid": "ad2c9acd-3afb-4fae-aff2-954c532020bd", "alterId": 0 } ], "transport": { "type": "ws", "path": "SecretPATH/vm", "max_early_data": 2048, "early_data_header_name": "Sec-WebSocket-Protocol" } }, { "type": "trojan", "listen": "::", "listen_port": 61801, "sniff": true, "sniff_override_destination": true, "users": [{ "password": "PASSWORD" }], "transport": { "type": "ws", "path": "SecretPATH/tr", "max_early_data": 2048, "early_data_header_name": "Sec-WebSocket-Protocol" } } ], "outbounds": [ { "type": "direct", "tag": "direct", "domain_strategy": "prefer_ipv4" }, { "type": "socks", "tag": "tor", "server": "127.0.0.1", "server_port": 9050 } ], "route": { "rules": [ { "domain_suffix": [".onion"], "outbound": "tor" } ] }, "experimental": { "clash_api": { "external_controller": "127.0.0.1:61804", "secret": "PASSWORD", "default_mode": "rule" } } } ```

Server and client log file

服务端日志没有发现异常

客户端 Xray 日志

```console app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > proxy/vmess/outbound: failed to read header > common/drain: common/drain: drained connection > proxy/vmess/encoding: Failed To Decrypt Length > cipher: message authentication failed app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > proxy/vmess/outbound: failed to read header > common/drain: common/drain: unable to drain connection > websocket: close 1000 (normal) > proxy/vmess/encoding: Unable to Read Header Len > websocket: close 1000 (normal) ```
nekohasekai commented 1 year ago

Try a624cd9b49005eac7ddba2caff8a08073d70b318

wy580477 commented 1 year ago

Try a624cd9

感谢。尝试编译了一下,仍然有报错和连接不稳定。

编译命令

git clone https://github.com/SagerNet/sing-box
cd sing-box
git reset --hard a624cd9b49005eac7ddba2caff8a08073d70b318
export CGO_ENABLED=0
go build -trimpath -tags with_wireguard,with_clash_api,with_gvisor \
        -o /usr/bin/app \
        -ldflags "-s -w -buildid=" \
        ./cmd/sing-box

Xray 客户端报错

023/02/13 06:23:36 [Info] [761813772] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > proxy/vmess/outbound: failed to read header > common/drain: common/drain: unable to drain connection > websocket: close 1006 (abnormal closure): unexpected EOF > proxy/vmess/encoding: Failed To Decrypt Length > cipher: message authentication failed
2023/02/13 06:23:36 [Info] [761813772] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2023/02/13 06:23:36 [Info] [1216734481] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > proxy/vmess/outbound: failed to read header > common/drain: common/drain: unable to drain connection > websocket: close 1006 (abnormal closure): unexpected EOF > proxy/vmess/encoding: Failed To Decrypt Length > cipher: message authentication failed
2023/02/13 06:23:36 [Info] [1216734481] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2023/02/13 06:23:36 [Info] [4202707499] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > proxy/vmess/outbound: failed to read header > common/drain: common/drain: unable to drain connection > websocket: close 1006 (abnormal closure): unexpected EOF > proxy/vmess/encoding: Failed To Decrypt Length > cipher: message authentication failed
2023/02/13 06:23:36 [Info] [4202707499] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2023/02/13 06:23:36 [Info] [2483343036] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > proxy/vmess/outbound: failed to read header > common/drain: common/drain: unable to drain connection > websocket: close 1006 (abnormal closure): unexpected EOF > proxy/vmess/encoding: Failed To Decrypt Length > cipher: message authentication failed
nekohasekai commented 1 year ago

我认为您需要提供完整的配置和日志文件,包括服务器和客户端,就像您在 issue 模板中确认的那样。

wy580477 commented 1 year ago

我认为您需要提供完整的配置和日志文件,包括服务器和客户端,就像您在 issue 模板中确认的那样。

服务端配置没有变。服务端现在被我拆了,日志没存,等我晚上再搭建一下发出来。

Caddyfile 配置

```console handle {$SecretPATH}/vm* { @websocket { header Connection *Upgrade* header Upgrade websocket } handle @websocket { reverse_proxy @websocket { to localhost:61800 trusted_proxies private_ranges } } } handle {$SecretPATH}/tr* { @http-req { header X-Forwarded-Proto http } redir @http-req https://{host}{uri} @websocket-tr { header Connection *Upgrade* header Upgrade websocket } handle @websocket-tr { reverse_proxy @websocket-tr { to localhost:61801 trusted_proxies private_ranges } } respond * 401 } ```

sing-box 服务端配置:

```console { "log": { "level": "info" }, "dns": { "servers": [ { "address": "tls://8.8.8.8", "detour": "direct" } ], "strategy": "prefer_ipv4", "disable_cache": false }, "inbounds": [ { "type": "vmess", "listen": "::", "listen_port": 61800, "sniff": true, "sniff_override_destination": true, "users": [ { "uuid": "ad2c9acd-3afb-4fae-aff2-954c532020bd", "alterId": 0 } ], "transport": { "type": "ws", "path": "SecretPATH/vm", "max_early_data": 2048, "early_data_header_name": "Sec-WebSocket-Protocol" } }, { "type": "trojan", "listen": "::", "listen_port": 61801, "sniff": true, "sniff_override_destination": true, "users": [{ "password": "PASSWORD" }], "transport": { "type": "ws", "path": "SecretPATH/tr", "max_early_data": 2048, "early_data_header_name": "Sec-WebSocket-Protocol" } } ], "outbounds": [ { "type": "direct", "tag": "direct", "domain_strategy": "prefer_ipv4" }, { "type": "socks", "tag": "tor", "server": "127.0.0.1", "server_port": 9050 } ], "route": { "rules": [ { "domain_suffix": [".onion"], "outbound": "tor" } ] }, "experimental": { "clash_api": { "external_controller": "127.0.0.1:61804", "secret": "PASSWORD", "default_mode": "rule" } } } ```

客户端配置: image

wy580477 commented 1 year ago

我认为您需要提供完整的配置和日志文件,包括服务器和客户端,就像您在 issue 模板中确认的那样。

完整的日志:

服务端:

```console INFO[0000] inbound/vmess[0]: tcp server started at [::]:61800 INFO[0000] inbound/trojan[1]: tcp server started at [::]:61801 INFO[0000] clash-api: restful api listening at 127.0.0.1:61804 INFO[0000] sing-box started (0.00s) {"level":"info","ts":1676272207.6326926,"msg":"using provided configuration","config_file":"/workdir/Caddyfile","config_adapter":"caddyfile"} {"level":"info","ts":1676272207.6430745,"logger":"admin","msg":"admin endpoint started","address":"localhost:2019","enforce_origin":false,"origins":["//[::1]:2019","//127.0.0.1:2019","//localhost:2019"]} {"level":"info","ts":1676272207.644535,"logger":"http.log","msg":"server running","name":"srv0","protocols":["h1","h2","h3"]} {"level":"info","ts":1676272207.6448085,"msg":"autosaved config (load with --resume flag)","file":"/root/.config/caddy/autosave.json"} {"level":"info","ts":1676272207.6448479,"msg":"serving initial configuration"} {"level":"info","ts":1676272207.6450968,"logger":"tls.cache.maintenance","msg":"started background certificate maintenance","cache":"0xc000254af0"} {"level":"info","ts":1676272207.645432,"logger":"tls","msg":"cleaning storage unit","description":"FileStorage:/root/.local/share/caddy"} {"level":"info","ts":1676272207.6454809,"logger":"tls","msg":"finished cleaning storage units"} Feb 13 07:10:07.000 [warn] You are running Tor as root. You don't need to, and you probably shouldn't. INFO[0147] [531390499] inbound/vmess[0]: inbound connection from 153.254.103.228:43614 INFO[0147] [899451113] inbound/vmess[0]: [0] inbound connection to assets.msn.com:443 INFO[0147] [899451113] outbound/direct[direct]: outbound connection to assets.msn.com:443 INFO[0147] outbound/direct[direct]: outbound connection to 8.8.8.8:853 INFO[0147] [899451113] dns: exchanged assets.msn.com CNAME assets.msn.com. 7060 IN CNAME assets.msn.com.edgekey.net. INFO[0147] [899451113] dns: exchanged assets.msn.com CNAME assets.msn.com.edgekey.net. 551 IN CNAME e28578.d.akamaiedge.net. INFO[0147] [899451113] dns: exchanged assets.msn.com SOA d.akamaiedge.net. 437 IN SOA n0d.akamaiedge.net. hostmaster.akamai.com. 1676271792 1000 1000 1000 1800 INFO[0147] [899451113] dns: exchanged assets.msn.com CNAME assets.msn.com. 7060 IN CNAME assets.msn.com.edgekey.net. INFO[0147] [899451113] dns: exchanged assets.msn.com CNAME assets.msn.com.edgekey.net. 551 IN CNAME e28578.d.akamaiedge.net. INFO[0147] [899451113] dns: exchanged assets.msn.com A e28578.d.akamaiedge.net. 20 IN A 104.126.37.137 INFO[0147] [899451113] dns: exchanged assets.msn.com A e28578.d.akamaiedge.net. 20 IN A 104.126.37.171 INFO[0147] [899451113] dns: exchanged assets.msn.com A e28578.d.akamaiedge.net. 20 IN A 104.126.37.131 INFO[0147] [899451113] dns: exchanged assets.msn.com A e28578.d.akamaiedge.net. 20 IN A 104.126.37.138 INFO[0147] [899451113] dns: exchanged assets.msn.com A e28578.d.akamaiedge.net. 20 IN A 104.126.37.176 INFO[0147] [899451113] dns: exchanged assets.msn.com A e28578.d.akamaiedge.net. 20 IN A 104.126.37.123 INFO[0147] [899451113] dns: exchanged assets.msn.com A e28578.d.akamaiedge.net. 20 IN A 104.126.37.177 INFO[0147] [899451113] dns: exchanged assets.msn.com A e28578.d.akamaiedge.net. 20 IN A 104.126.37.129 INFO[0147] [899451113] dns: exchanged assets.msn.com A e28578.d.akamaiedge.net. 20 IN A 104.126.37.178 INFO[0147] [899451113] dns: lookup succeed for assets.msn.com: 104.126.37.137 104.126.37.171 104.126.37.131 104.126.37.138 104.126.37.176 104.126.37.123 104.126.37.177 104.126.37.129 104.126.37.178 INFO[0148] [1088532455] inbound/vmess[0]: inbound connection from 153.254.103.228:43620 INFO[0148] [678512376] inbound/vmess[0]: [0] inbound connection to 192.168.31.1:8080 INFO[0148] [1052320640] inbound/vmess[0]: inbound connection from 153.254.103.232:43622 INFO[0148] [3560495850] inbound/vmess[0]: [0] inbound connection to c.msn.com:443 INFO[0148] [3560495850] outbound/direct[direct]: outbound connection to c.msn.com:443 INFO[0148] [3560495850] dns: exchanged c.msn.com CNAME c.msn.com. 13555 IN CNAME c-msn-com-nsatc.trafficmanager.net. INFO[0148] [3560495850] dns: exchanged c.msn.com SOA trafficmanager.net. 30 IN SOA tm1.dns-tm.com. hostmaster.trafficmanager.net. 118221445 900 300 2419200 30 INFO[0148] [3560495850] dns: exchanged c.msn.com CNAME c.msn.com. 13555 IN CNAME c-msn-com-nsatc.trafficmanager.net. INFO[0148] [3560495850] dns: exchanged c.msn.com A c-msn-com-nsatc.trafficmanager.net. 60 IN A 20.205.115.81 INFO[0148] [3560495850] dns: lookup succeed for c.msn.com: 20.205.115.81 INFO[0148] [1524457286] inbound/vmess[0]: inbound connection from 153.254.103.230:43626 INFO[0148] [1564612487] inbound/vmess[0]: [0] inbound connection to assets.msn.com:443 INFO[0148] [1564612487] outbound/direct[direct]: outbound connection to assets.msn.com:443 INFO[0148] [1564612487] dns: lookup succeed for assets.msn.com: 104.126.37.137 104.126.37.171 104.126.37.131 104.126.37.138 104.126.37.176 104.126.37.123 104.126.37.177 104.126.37.129 104.126.37.178 INFO[0148] [4126149034] inbound/vmess[0]: inbound connection from 153.254.103.232:43630 INFO[0148] [377851042] inbound/vmess[0]: [0] inbound connection to assets.msn.com:443 INFO[0148] [377851042] outbound/direct[direct]: outbound connection to assets.msn.com:443 INFO[0148] [377851042] dns: lookup succeed for assets.msn.com: 104.126.37.137 104.126.37.171 104.126.37.131 104.126.37.138 104.126.37.176 104.126.37.123 104.126.37.177 104.126.37.129 104.126.37.178 INFO[0148] [521678404] inbound/vmess[0]: inbound connection from 153.254.103.232:43634 INFO[0148] [4045264343] inbound/vmess[0]: [0] inbound connection to 192.168.31.1:8080 INFO[0148] [4045264343] outbound/direct[direct]: outbound connection to 192.168.31.1:8080 INFO[0148] [678512376] outbound/direct[direct]: outbound connection to 192.168.31.1:8080 INFO[0148] [1669688722] inbound/vmess[0]: inbound connection from 153.254.103.228:43640 INFO[0148] [3295584262] inbound/vmess[0]: [0] inbound connection to www.google.com:443 INFO[0148] [3295584262] outbound/direct[direct]: outbound connection to www.google.com:443 INFO[0148] [3295584262] dns: exchanged www.google.com AAAA www.google.com. 136 IN AAAA 2a00:1450:400a:801::2004 INFO[0148] [3295584262] dns: exchanged www.google.com A www.google.com. 269 IN A 172.217.168.4 INFO[0148] [3295584262] dns: lookup succeed for www.google.com: 172.217.168.4 2a00:1450:400a:801::2004 INFO[0149] [3788745063] inbound/vmess[0]: inbound connection from 153.254.103.232:43644 INFO[0149] [847268196] inbound/vmess[0]: [0] inbound connection to www.google.com:443 INFO[0149] [847268196] outbound/direct[direct]: outbound connection to www.google.com:443 INFO[0149] [847268196] dns: lookup succeed for www.google.com: 172.217.168.4 2a00:1450:400a:801::2004 INFO[0149] [2155010630] inbound/vmess[0]: inbound connection from 153.254.103.228:43648 INFO[0149] [2310291436] inbound/vmess[0]: [0] inbound connection to www.google.com:443 INFO[0149] [2310291436] outbound/direct[direct]: outbound connection to www.google.com:443 INFO[0149] [2310291436] dns: lookup succeed for www.google.com: 172.217.168.4 2a00:1450:400a:801::2004 INFO[0149] [2007524443] inbound/vmess[0]: inbound connection from 153.254.103.232:43652 INFO[0149] [2963132158] inbound/vmess[0]: [0] inbound connection to browser.events.data.msn.com:443 INFO[0149] [2963132158] outbound/direct[direct]: outbound connection to browser.events.data.msn.com:443 INFO[0149] [2963132158] dns: exchanged browser.events.data.msn.com CNAME browser.events.data.msn.com. 13966 IN CNAME global.asimov.events.data.trafficmanager.net. INFO[0149] [2963132158] dns: exchanged browser.events.data.msn.com CNAME global.asimov.events.data.trafficmanager.net. 54 IN CNAME onedscolprduks04.uksouth.cloudapp.azure.com. INFO[0149] [2963132158] dns: exchanged browser.events.data.msn.com A onedscolprduks04.uksouth.cloudapp.azure.com. 4 IN A 51.104.15.253 INFO[0149] [2963132158] dns: exchanged browser.events.data.msn.com CNAME browser.events.data.msn.com. 12806 IN CNAME global.asimov.events.data.trafficmanager.net. INFO[0149] [2963132158] dns: exchanged browser.events.data.msn.com CNAME global.asimov.events.data.trafficmanager.net. 39 IN CNAME onedscolprdeus04.eastus.cloudapp.azure.com. INFO[0149] [2963132158] dns: exchanged browser.events.data.msn.com SOA eastus.cloudapp.azure.com. 39 IN SOA ns1-201.azure-dns.com. msnhst.microsoft.com. 10001 900 300 604800 60 INFO[0149] [2963132158] dns: lookup succeed for browser.events.data.msn.com: 51.104.15.253 INFO[0150] [4227921171] inbound/vmess[0]: inbound connection from 153.254.103.232:43656 INFO[0150] [3659818841] inbound/vmess[0]: [0] inbound connection to assets.msn.com:443 INFO[0150] [3659818841] outbound/direct[direct]: outbound connection to assets.msn.com:443 INFO[0150] [3659818841] dns: lookup succeed for assets.msn.com: 104.126.37.137 104.126.37.171 104.126.37.131 104.126.37.138 104.126.37.176 104.126.37.123 104.126.37.177 104.126.37.129 104.126.37.178 INFO[0150] [3373174683] inbound/vmess[0]: inbound connection from 153.254.103.232:43660 INFO[0150] [1258552137] inbound/vmess[0]: [0] inbound connection to assets.msn.com:443 INFO[0150] [1258552137] outbound/direct[direct]: outbound connection to assets.msn.com:443 INFO[0150] [1258552137] dns: lookup succeed for assets.msn.com: 104.126.37.137 104.126.37.171 104.126.37.131 104.126.37.138 104.126.37.176 104.126.37.123 104.126.37.177 104.126.37.129 104.126.37.178 INFO[0150] [4055518188] inbound/vmess[0]: inbound connection from 153.254.103.228:43664 INFO[0150] [842083382] inbound/vmess[0]: [0] inbound connection to browser.events.data.msn.com:443 INFO[0150] [842083382] outbound/direct[direct]: outbound connection to browser.events.data.msn.com:443 INFO[0150] [842083382] dns: lookup succeed for browser.events.data.msn.com: 51.104.15.253 INFO[0150] [3647131584] inbound/vmess[0]: inbound connection from 153.254.103.230:43668 INFO[0150] [4085283898] inbound/vmess[0]: [0] inbound connection to browser.events.data.msn.com:443 INFO[0150] [4085283898] outbound/direct[direct]: outbound connection to browser.events.data.msn.com:443 INFO[0150] [4085283898] dns: lookup succeed for browser.events.data.msn.com: 51.104.15.253 INFO[0150] [705006441] inbound/vmess[0]: inbound connection from 153.254.103.228:43672 INFO[0150] [3696151892] inbound/vmess[0]: [0] inbound connection to browser.events.data.msn.com:443 INFO[0150] [3696151892] outbound/direct[direct]: outbound connection to browser.events.data.msn.com:443 INFO[0150] [3696151892] dns: lookup succeed for browser.events.data.msn.com: 51.104.15.253 INFO[0150] [3967287792] inbound/vmess[0]: inbound connection from 153.254.103.230:43676 INFO[0150] [3655499280] inbound/vmess[0]: [0] inbound connection to www.google.com:443 INFO[0150] [3655499280] outbound/direct[direct]: outbound connection to www.google.com:443 INFO[0150] [3655499280] dns: lookup succeed for www.google.com: 172.217.168.4 2a00:1450:400a:801::2004 INFO[0151] [957534489] inbound/vmess[0]: inbound connection from 153.254.103.228:43680 INFO[0151] [2683702598] inbound/vmess[0]: [0] inbound connection to www.speedtest.net:443 INFO[0151] [2683702598] outbound/direct[direct]: outbound connection to www.speedtest.net:443 INFO[0151] [2683702598] dns: exchanged www.speedtest.net CNAME www.speedtest.net. 2599 IN CNAME www.speedtest.net.cdn.cloudflare.net. INFO[0151] [2683702598] dns: exchanged www.speedtest.net SOA cloudflare.net. 468 IN SOA ns1.cloudflare.net. dns.cloudflare.com. 2301288355 10000 2400 604800 3600 INFO[0151] [2683702598] dns: exchanged www.speedtest.net CNAME www.speedtest.net. 2599 IN CNAME www.speedtest.net.cdn.cloudflare.net. INFO[0151] [2683702598] dns: exchanged www.speedtest.net A www.speedtest.net.cdn.cloudflare.net. 300 IN A 104.16.209.12 INFO[0151] [2683702598] dns: exchanged www.speedtest.net A www.speedtest.net.cdn.cloudflare.net. 300 IN A 104.16.210.12 INFO[0151] [2683702598] dns: lookup succeed for www.speedtest.net: 104.16.209.12 104.16.210.12 INFO[0151] [2990065325] inbound/vmess[0]: inbound connection from 153.254.103.230:43684 INFO[0151] [314802812] inbound/vmess[0]: [0] inbound connection to browser.events.data.msn.com:443 INFO[0151] [314802812] outbound/direct[direct]: outbound connection to browser.events.data.msn.com:443 INFO[0151] [314802812] dns: lookup succeed for browser.events.data.msn.com: 51.104.15.253 INFO[0151] [529536826] inbound/vmess[0]: inbound connection from 153.254.103.228:43688 INFO[0151] [1242636930] inbound/vmess[0]: [0] inbound connection to browser.events.data.msn.com:443 INFO[0151] [1242636930] outbound/direct[direct]: outbound connection to browser.events.data.msn.com:443 INFO[0151] [1242636930] dns: lookup succeed for browser.events.data.msn.com: 51.104.15.253 INFO[0151] [2104449458] inbound/vmess[0]: inbound connection from 153.254.103.230:43692 INFO[0151] [2975993275] inbound/vmess[0]: [0] inbound connection to browser.events.data.msn.com:443 INFO[0151] [2975993275] outbound/direct[direct]: outbound connection to browser.events.data.msn.com:443 INFO[0151] [2975993275] dns: lookup succeed for browser.events.data.msn.com: 51.104.15.253 INFO[0152] [3510959833] inbound/vmess[0]: inbound connection from 153.254.103.232:43696 INFO[0152] [3474024075] inbound/vmess[0]: [0] inbound connection to browser.events.data.msn.com:443 INFO[0152] [3474024075] outbound/direct[direct]: outbound connection to browser.events.data.msn.com:443 INFO[0152] [3474024075] dns: lookup succeed for browser.events.data.msn.com: 51.104.15.253 ERROR[0153] [521678404] inbound/vmess[0]: process connection from 153.254.103.232:43634: dial tcp 192.168.31.1:8080: i/o timeout INFO[0153] [3852224191] inbound/vmess[0]: inbound connection from 153.254.103.232:43700 INFO[0153] [554438541] inbound/vmess[0]: [0] inbound connection to ntp.msn.com:443 INFO[0153] [554438541] outbound/direct[direct]: outbound connection to ntp.msn.com:443 INFO[0153] [554438541] dns: exchanged ntp.msn.com CNAME ntp.msn.com. 17456 IN CNAME www-msn-com.a-0003.a-msedge.net. INFO[0153] [554438541] dns: exchanged ntp.msn.com CNAME www-msn-com.a-0003.a-msedge.net. 236 IN CNAME icePrime.a-0003.dc-msedge.net. INFO[0153] [554438541] dns: exchanged ntp.msn.com CNAME icePrime.a-0003.dc-msedge.net. 236 IN CNAME a-0003.dc-msedge.net. INFO[0153] [554438541] dns: exchanged ntp.msn.com A a-0003.dc-msedge.net. 236 IN A 131.253.33.203 INFO[0153] [554438541] dns: exchanged ntp.msn.com CNAME ntp.msn.com. 17456 IN CNAME www-msn-com.a-0003.a-msedge.net. INFO[0153] [554438541] dns: exchanged ntp.msn.com CNAME www-msn-com.a-0003.a-msedge.net. 236 IN CNAME icePrime.a-0003.dc-msedge.net. INFO[0153] [554438541] dns: exchanged ntp.msn.com CNAME icePrime.a-0003.dc-msedge.net. 236 IN CNAME a-0003.dc-msedge.net. INFO[0153] [554438541] dns: exchanged ntp.msn.com SOA dc-msedge.net. 236 IN SOA ns1.dc-msedge.net. msnhst.microsoft.com. 2016090201 1800 900 2419200 240 INFO[0153] [554438541] dns: lookup succeed for ntp.msn.com: 131.253.33.203 ERROR[0153] [1088532455] inbound/vmess[0]: process connection from 153.254.103.228:43620: dial tcp 192.168.31.1:8080: i/o timeout INFO[0153] [3459445840] inbound/vmess[0]: inbound connection from 153.254.103.228:43704 INFO[0153] [888654936] inbound/vmess[0]: [0] inbound connection to api.msn.com:443 INFO[0153] [888654936] outbound/direct[direct]: outbound connection to api.msn.com:443 INFO[0153] [888654936] dns: exchanged api.msn.com CNAME api.msn.com. 12033 IN CNAME api-msn-com.a-0003.a-msedge.net. INFO[0153] [888654936] dns: exchanged api.msn.com CNAME api-msn-com.a-0003.a-msedge.net. 216 IN CNAME icePrime.a-0003.dc-msedge.net. INFO[0153] [888654936] dns: exchanged api.msn.com CNAME icePrime.a-0003.dc-msedge.net. 216 IN CNAME a-0003.dc-msedge.net. INFO[0153] [888654936] dns: exchanged api.msn.com A a-0003.dc-msedge.net. 216 IN A 131.253.33.203 INFO[0153] [888654936] dns: exchanged api.msn.com CNAME api.msn.com. 12033 IN CNAME api-msn-com.a-0003.a-msedge.net. INFO[0153] [888654936] dns: exchanged api.msn.com CNAME api-msn-com.a-0003.a-msedge.net. 216 IN CNAME icePrime.a-0003.dc-msedge.net. INFO[0153] [888654936] dns: exchanged api.msn.com CNAME icePrime.a-0003.dc-msedge.net. 216 IN CNAME a-0003.dc-msedge.net. INFO[0153] [888654936] dns: exchanged api.msn.com SOA dc-msedge.net. 216 IN SOA ns1.dc-msedge.net. msnhst.microsoft.com. 2016090201 1800 900 2419200 240 INFO[0153] [888654936] dns: lookup succeed for api.msn.com: 131.253.33.203 INFO[0153] [2189709396] inbound/vmess[0]: inbound connection from 153.254.103.232:43708 INFO[0153] [3024673022] inbound/vmess[0]: [0] inbound connection to zdstatic.speedtest.net:443 INFO[0153] [3024673022] outbound/direct[direct]: outbound connection to zdstatic.speedtest.net:443 INFO[0153] [3024673022] dns: exchanged zdstatic.speedtest.net CNAME zdstatic.speedtest.net. 21091 IN CNAME dual.ziffdavis.com.edgekey.net. INFO[0153] [3024673022] dns: exchanged zdstatic.speedtest.net CNAME dual.ziffdavis.com.edgekey.net. 21483 IN CNAME e96286.dsci.akamaiedge.net. INFO[0153] [3024673022] dns: exchanged zdstatic.speedtest.net AAAA e96286.dsci.akamaiedge.net. 20 IN AAAA 2a02:26f0:1700:12::b856:67d2 INFO[0153] [3024673022] dns: exchanged zdstatic.speedtest.net AAAA e96286.dsci.akamaiedge.net. 20 IN AAAA 2a02:26f0:1700:12::b856:67df INFO[0153] [3024673022] dns: exchanged zdstatic.speedtest.net CNAME zdstatic.speedtest.net. 21091 IN CNAME dual.ziffdavis.com.edgekey.net. INFO[0153] [3024673022] dns: exchanged zdstatic.speedtest.net CNAME dual.ziffdavis.com.edgekey.net. 21483 IN CNAME e96286.dsci.akamaiedge.net. INFO[0153] [3024673022] dns: exchanged zdstatic.speedtest.net A e96286.dsci.akamaiedge.net. 20 IN A 104.126.37.50 INFO[0153] [3024673022] dns: exchanged zdstatic.speedtest.net A e96286.dsci.akamaiedge.net. 20 IN A 104.126.37.43 INFO[0153] [3024673022] dns: lookup succeed for zdstatic.speedtest.net: 104.126.37.50 104.126.37.43 2a02:26f0:1700:12::b856:67d2 2a02:26f0:1700:12::b856:67df INFO[0154] [75304028] inbound/vmess[0]: inbound connection from 153.254.103.230:43712 INFO[0154] [3114732470] inbound/vmess[0]: [0] inbound connection to 192.168.31.1:8080 INFO[0154] [3114732470] outbound/direct[direct]: outbound connection to 192.168.31.1:8080 INFO[0155] [2638115323] inbound/vmess[0]: inbound connection from 153.254.103.228:43716 INFO[0155] [2267916296] inbound/vmess[0]: [0] inbound connection to speedtest.mire.sfr.net.prod.hosts.ooklaserver.net:8080 INFO[0155] [2267916296] outbound/direct[direct]: outbound connection to speedtest.mire.sfr.net.prod.hosts.ooklaserver.net:8080 INFO[0155] [2267916296] dns: exchanged speedtest.mire.sfr.net.prod.hosts.ooklaserver.net CNAME speedtest.mire.sfr.net.prod.hosts.ooklaserver.net. 21264 IN CNAME speedtest.mire.sfr.net. INFO[0155] [2267916296] dns: exchanged speedtest.mire.sfr.net.prod.hosts.ooklaserver.net SOA mire.sfr.net. 1497 IN SOA nspriprov.dns.sfr.net. support.dns.sfr.net. 2022091601 10800 3600 1814400 86400 INFO[0155] [2267916296] dns: exchanged speedtest.mire.sfr.net.prod.hosts.ooklaserver.net CNAME speedtest.mire.sfr.net.prod.hosts.ooklaserver.net. 21264 IN CNAME speedtest.mire.sfr.net. INFO[0155] [2267916296] dns: exchanged speedtest.mire.sfr.net.prod.hosts.ooklaserver.net A speedtest.mire.sfr.net. 19868 IN A 93.20.126.204 INFO[0155] [2267916296] dns: lookup succeed for speedtest.mire.sfr.net.prod.hosts.ooklaserver.net: 93.20.126.204 INFO[0155] [4006329637] inbound/vmess[0]: inbound connection from 153.254.103.230:43720 INFO[0155] [3959343121] inbound/vmess[0]: [0] inbound connection to montsouris3.speedtest.orange.fr.prod.hosts.ooklaserver.net:8080 INFO[0155] [3959343121] outbound/direct[direct]: outbound connection to montsouris3.speedtest.orange.fr.prod.hosts.ooklaserver.net:8080 INFO[0155] [3959343121] dns: exchanged montsouris3.speedtest.orange.fr.prod.hosts.ooklaserver.net CNAME montsouris3.speedtest.orange.fr.prod.hosts.ooklaserver.net. 20796 IN CNAME montsouris3.speedtest.orange.fr. INFO[0155] [3959343121] dns: exchanged montsouris3.speedtest.orange.fr.prod.hosts.ooklaserver.net AAAA montsouris3.speedtest.orange.fr. 3337 IN AAAA 2a01:cb04:2004:4001::3 INFO[0155] [3959343121] dns: exchanged montsouris3.speedtest.orange.fr.prod.hosts.ooklaserver.net CNAME montsouris3.speedtest.orange.fr.prod.hosts.ooklaserver.net. 21600 IN CNAME montsouris3.speedtest.orange.fr. INFO[0155] [3959343121] dns: exchanged montsouris3.speedtest.orange.fr.prod.hosts.ooklaserver.net A montsouris3.speedtest.orange.fr. 3600 IN A 193.251.237.72 INFO[0155] [3959343121] dns: lookup succeed for montsouris3.speedtest.orange.fr.prod.hosts.ooklaserver.net: 193.251.237.72 2a01:cb04:2004:4001::3 INFO[0155] [1684956320] inbound/vmess[0]: inbound connection from 153.254.103.232:43724 INFO[0155] [3114252926] inbound/vmess[0]: [0] inbound connection to speedperf.axione.fr.prod.hosts.ooklaserver.net:8080 INFO[0155] [3114252926] outbound/direct[direct]: outbound connection to speedperf.axione.fr.prod.hosts.ooklaserver.net:8080 INFO[0155] [3114252926] dns: exchanged speedperf.axione.fr.prod.hosts.ooklaserver.net CNAME speedperf.axione.fr.prod.hosts.ooklaserver.net. 20796 IN CNAME speedperf.axione.fr. INFO[0155] [3114252926] dns: exchanged speedperf.axione.fr.prod.hosts.ooklaserver.net SOA axione.fr. 571 IN SOA dns01.axione.fr. hostmaster.axione.fr. 2023011203 28800 7200 2419200 900 INFO[0155] [3114252926] dns: exchanged speedperf.axione.fr.prod.hosts.ooklaserver.net CNAME speedperf.axione.fr.prod.hosts.ooklaserver.net. 21262 IN CNAME speedperf.axione.fr. INFO[0155] [3114252926] dns: exchanged speedperf.axione.fr.prod.hosts.ooklaserver.net A speedperf.axione.fr. 60 IN A 109.74.80.187 INFO[0155] [3114252926] dns: lookup succeed for speedperf.axione.fr.prod.hosts.ooklaserver.net: 109.74.80.187 INFO[0155] [1560674173] inbound/vmess[0]: inbound connection from 153.254.103.230:43728 INFO[0155] [2937588068] inbound/vmess[0]: [0] inbound connection to speedtest.milkywan.fr.prod.hosts.ooklaserver.net:8080 INFO[0155] [2937588068] outbound/direct[direct]: outbound connection to speedtest.milkywan.fr.prod.hosts.ooklaserver.net:8080 INFO[0155] [2937588068] dns: exchanged speedtest.milkywan.fr.prod.hosts.ooklaserver.net CNAME speedtest.milkywan.fr.prod.hosts.ooklaserver.net. 21274 IN CNAME speedtest.milkywan.fr. INFO[0155] [2937588068] dns: exchanged speedtest.milkywan.fr.prod.hosts.ooklaserver.net AAAA speedtest.milkywan.fr. 41 IN AAAA 2a0b:cbc0:42:1::1 INFO[0155] [2937588068] dns: exchanged speedtest.milkywan.fr.prod.hosts.ooklaserver.net CNAME speedtest.milkywan.fr.prod.hosts.ooklaserver.net. 21264 IN CNAME speedtest.milkywan.fr. INFO[0155] [2937588068] dns: exchanged speedtest.milkywan.fr.prod.hosts.ooklaserver.net A speedtest.milkywan.fr. 300 IN A 80.67.167.93 INFO[0155] [2937588068] dns: lookup succeed for speedtest.milkywan.fr.prod.hosts.ooklaserver.net: 80.67.167.93 2a0b:cbc0:42:1::1 INFO[0155] [1369608584] inbound/vmess[0]: inbound connection from 153.254.103.230:43732 INFO[0155] [631233807] inbound/vmess[0]: [0] inbound connection to lg-par2.fdcservers.net:8080 INFO[0155] [631233807] outbound/direct[direct]: outbound connection to lg-par2.fdcservers.net:8080 INFO[0155] [631233807] dns: exchanged lg-par2.fdcservers.net SOA fdcservers.net. 864 IN SOA dane.ns.cloudflare.com. dns.cloudflare.com. 2300757837 10000 2400 604800 3600 INFO[0155] [631233807] dns: exchanged lg-par2.fdcservers.net A lg-par2.fdcservers.net. 300 IN A 50.7.200.42 INFO[0155] [631233807] dns: lookup succeed for lg-par2.fdcservers.net: 50.7.200.42 INFO[0155] [3012231990] inbound/vmess[0]: inbound connection from 153.254.103.230:43736 INFO[0155] [3474999814] inbound/vmess[0]: [0] inbound connection to speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 INFO[0155] [3474999814] outbound/direct[direct]: outbound connection to speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 INFO[0155] [752821379] inbound/vmess[0]: inbound connection from 153.254.103.230:43738 INFO[0155] [1768502549] inbound/vmess[0]: [0] inbound connection to speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 INFO[0155] [1768502549] outbound/direct[direct]: outbound connection to speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 INFO[0155] [599806778] inbound/vmess[0]: inbound connection from 153.254.103.230:43740 INFO[0155] [3405528232] inbound/vmess[0]: [0] inbound connection to perf.keyyo.net:8080 INFO[0155] [3405528232] outbound/direct[direct]: outbound connection to perf.keyyo.net:8080 INFO[0155] [3474999814] dns: exchanged speedtest.lekloud.net.prod.hosts.ooklaserver.net CNAME speedtest.lekloud.net.prod.hosts.ooklaserver.net. 20795 IN CNAME speedtest.lekloud.net. INFO[0155] [3474999814] dns: exchanged speedtest.lekloud.net.prod.hosts.ooklaserver.net A speedtest.lekloud.net. 9995 IN A 85.208.144.167 INFO[0155] [3057273582] inbound/vmess[0]: inbound connection from 153.254.103.230:43742 INFO[0155] [2870222768] inbound/vmess[0]: [0] inbound connection to sp1.asthriona.com.prod.hosts.ooklaserver.net:8080 INFO[0155] [2870222768] outbound/direct[direct]: outbound connection to sp1.asthriona.com.prod.hosts.ooklaserver.net:8080 INFO[0155] [3405528232] dns: exchanged perf.keyyo.net A perf.keyyo.net. 1336 IN A 178.21.176.100 INFO[0155] [1768502549] dns: exchanged speedtest.sewan.fr.prod.hosts.ooklaserver.net CNAME speedtest.sewan.fr.prod.hosts.ooklaserver.net. 21283 IN CNAME speedtest.sewan.fr. INFO[0155] [1768502549] dns: exchanged speedtest.sewan.fr.prod.hosts.ooklaserver.net SOA sewan.fr. 283 IN SOA ns1.sewan.fr. dns.sewan.fr. 2023012500 10800 3600 604800 600 INFO[0155] [2870222768] dns: exchanged sp1.asthriona.com.prod.hosts.ooklaserver.net CNAME sp1.asthriona.com.prod.hosts.ooklaserver.net. 21260 IN CNAME sp1.asthriona.com. INFO[0155] [2870222768] dns: exchanged sp1.asthriona.com.prod.hosts.ooklaserver.net SOA asthriona.com. 1569 IN SOA ian.ns.cloudflare.com. dns.cloudflare.com. 2301442554 10000 2400 604800 3600 INFO[0155] [4108587647] inbound/vmess[0]: inbound connection from 153.254.103.230:43744 INFO[0155] [711519939] inbound/vmess[0]: [0] inbound connection to speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 INFO[0155] [711519939] outbound/direct[direct]: outbound connection to speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 INFO[0155] [2870222768] dns: exchanged sp1.asthriona.com.prod.hosts.ooklaserver.net CNAME sp1.asthriona.com.prod.hosts.ooklaserver.net. 21260 IN CNAME sp1.asthriona.com. INFO[0155] [2870222768] dns: exchanged sp1.asthriona.com.prod.hosts.ooklaserver.net A sp1.asthriona.com. 300 IN A 163.172.38.60 INFO[0155] [2870222768] dns: lookup succeed for sp1.asthriona.com.prod.hosts.ooklaserver.net: 163.172.38.60 INFO[0155] [1768502549] dns: exchanged speedtest.sewan.fr.prod.hosts.ooklaserver.net CNAME speedtest.sewan.fr.prod.hosts.ooklaserver.net. 21049 IN CNAME speedtest.sewan.fr. INFO[0155] [1768502549] dns: exchanged speedtest.sewan.fr.prod.hosts.ooklaserver.net A speedtest.sewan.fr. 21600 IN A 65.39.67.192 INFO[0155] [1768502549] dns: lookup succeed for speedtest.sewan.fr.prod.hosts.ooklaserver.net: 65.39.67.192 INFO[0155] [711519939] dns: exchanged speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net CNAME speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net. 20795 IN CNAME speedtest-ookla-par.as62000.net. INFO[0155] [711519939] dns: exchanged speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net AAAA speedtest-ookla-par.as62000.net. 300 IN AAAA 2a09:6383::45:147:98:4 INFO[0155] [711519939] dns: exchanged speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net CNAME speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net. 20795 IN CNAME speedtest-ookla-par.as62000.net. INFO[0155] [711519939] dns: exchanged speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net A speedtest-ookla-par.as62000.net. 300 IN A 45.147.98.4 INFO[0155] [711519939] dns: lookup succeed for speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net: 45.147.98.4 2a09:6383::45:147:98:4 INFO[0155] [3474999814] dns: exchanged speedtest.lekloud.net.prod.hosts.ooklaserver.net CNAME speedtest.lekloud.net.prod.hosts.ooklaserver.net. 21340 IN CNAME speedtest.lekloud.net. INFO[0155] [3474999814] dns: exchanged speedtest.lekloud.net.prod.hosts.ooklaserver.net AAAA speedtest.lekloud.net. 600 IN AAAA 2a09:8740:0:3::12:8224 INFO[0155] [3474999814] dns: lookup succeed for speedtest.lekloud.net.prod.hosts.ooklaserver.net: 85.208.144.167 2a09:8740:0:3::12:8224 INFO[0155] [3405528232] dns: exchanged perf.keyyo.net SOA keyyo.net. 1800 IN SOA ns1.gandi.net. hostmaster.gandi.net. 1665160788 10800 3600 604800 10800 INFO[0155] [3405528232] dns: lookup succeed for perf.keyyo.net: 178.21.176.100 INFO[0156] [3939836573] inbound/vmess[0]: inbound connection from 153.254.103.230:43756 INFO[0156] [3549017151] inbound/vmess[0]: [0] inbound connection to speedtest.mire.sfr.net.prod.hosts.ooklaserver.net:8080 INFO[0156] [3549017151] outbound/direct[direct]: outbound connection to speedtest.mire.sfr.net.prod.hosts.ooklaserver.net:8080 INFO[0156] [3549017151] dns: lookup succeed for speedtest.mire.sfr.net.prod.hosts.ooklaserver.net: 93.20.126.204 INFO[0156] [557278565] inbound/vmess[0]: inbound connection from 153.254.103.232:43758 INFO[0156] [65476537] inbound/vmess[0]: [0] inbound connection to lg-par2.fdcservers.net:8080 INFO[0156] [65476537] outbound/direct[direct]: outbound connection to lg-par2.fdcservers.net:8080 INFO[0156] [65476537] dns: lookup succeed for lg-par2.fdcservers.net: 50.7.200.42 INFO[0156] [3722244219] inbound/vmess[0]: inbound connection from 153.254.103.232:43764 INFO[0156] [3098315793] inbound/vmess[0]: [0] inbound connection to sp1.asthriona.com.prod.hosts.ooklaserver.net:8080 INFO[0156] [3098315793] outbound/direct[direct]: outbound connection to sp1.asthriona.com.prod.hosts.ooklaserver.net:8080 INFO[0156] [3098315793] dns: lookup succeed for sp1.asthriona.com.prod.hosts.ooklaserver.net: 163.172.38.60 INFO[0158] [2719621234] inbound/vmess[0]: inbound connection from 153.254.103.228:43768 INFO[0158] [543497761] inbound/vmess[0]: [0] inbound connection to speedtest.mire.sfr.net.prod.hosts.ooklaserver.net:8080 INFO[0158] [543497761] outbound/direct[direct]: outbound connection to speedtest.mire.sfr.net.prod.hosts.ooklaserver.net:8080 INFO[0158] [543497761] dns: lookup succeed for speedtest.mire.sfr.net.prod.hosts.ooklaserver.net: 93.20.126.204 INFO[0158] [1781860258] inbound/vmess[0]: inbound connection from 153.254.103.232:43772 INFO[0158] [3146965001] inbound/vmess[0]: [0] inbound connection to lg-par2.fdcservers.net:8080 INFO[0158] [3146965001] outbound/direct[direct]: outbound connection to lg-par2.fdcservers.net:8080 INFO[0158] [3146965001] dns: lookup succeed for lg-par2.fdcservers.net: 50.7.200.42 INFO[0159] [3867903623] inbound/vmess[0]: inbound connection from 153.254.103.232:43776 INFO[0159] [3408565229] inbound/vmess[0]: [0] inbound connection to speedtest.mire.sfr.net.prod.hosts.ooklaserver.net:8080 INFO[0159] [3408565229] outbound/direct[direct]: outbound connection to speedtest.mire.sfr.net.prod.hosts.ooklaserver.net:8080 INFO[0159] [3408565229] dns: lookup succeed for speedtest.mire.sfr.net.prod.hosts.ooklaserver.net: 93.20.126.204 INFO[0159] [960437539] inbound/vmess[0]: inbound connection from 153.254.103.228:43780 INFO[0159] [2857832537] inbound/vmess[0]: [0] inbound connection to lg-par2.fdcservers.net:8080 INFO[0159] [2857832537] outbound/direct[direct]: outbound connection to lg-par2.fdcservers.net:8080 INFO[0159] [2857832537] dns: lookup succeed for lg-par2.fdcservers.net: 50.7.200.42 ERROR[0159] [75304028] inbound/vmess[0]: process connection from 153.254.103.230:43712: dial tcp 192.168.31.1:8080: i/o timeout INFO[0162] [2408374123] inbound/vmess[0]: inbound connection from 153.254.103.230:43784 INFO[0162] [374694061] inbound/vmess[0]: [0] inbound connection to 192.168.31.1:8080 INFO[0162] [374694061] outbound/direct[direct]: outbound connection to 192.168.31.1:8080 INFO[0164] [1199274549] inbound/vmess[0]: inbound connection from 153.254.103.228:43788 INFO[0164] [2993909311] inbound/vmess[0]: [0] inbound connection to speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 INFO[0164] [2993909311] outbound/direct[direct]: outbound connection to speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 INFO[0164] [2993909311] dns: lookup succeed for speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net: 45.147.98.4 2a09:6383::45:147:98:4 ERROR[0167] [2408374123] inbound/vmess[0]: process connection from 153.254.103.230:43784: dial tcp 192.168.31.1:8080: i/o timeout INFO[0171] [3458628801] inbound/vmess[0]: inbound connection from 153.254.103.232:43792 INFO[0171] [1692182856] inbound/vmess[0]: [0] inbound connection to edge.microsoft.com:443 INFO[0171] [1692182856] outbound/direct[direct]: outbound connection to edge.microsoft.com:443 INFO[0171] [1692182856] dns: exchanged edge.microsoft.com CNAME edge.microsoft.com. 1169 IN CNAME edge-microsoft-com.dual-a-0036.a-msedge.net. INFO[0171] [1692182856] dns: exchanged edge.microsoft.com CNAME edge-microsoft-com.dual-a-0036.a-msedge.net. 107 IN CNAME dual-a-0036.dc-msedge.net. INFO[0171] [1692182856] dns: exchanged edge.microsoft.com AAAA dual-a-0036.dc-msedge.net. 107 IN AAAA 2a01:111:202c::239 INFO[0171] [1692182856] dns: exchanged edge.microsoft.com AAAA dual-a-0036.dc-msedge.net. 107 IN AAAA 2620:1ec:13::239 INFO[0171] [1692182856] dns: exchanged edge.microsoft.com CNAME edge.microsoft.com. 1274 IN CNAME edge-microsoft-com.dual-a-0036.a-msedge.net. INFO[0171] [1692182856] dns: exchanged edge.microsoft.com CNAME edge-microsoft-com.dual-a-0036.a-msedge.net. 18 IN CNAME dual-a-0036.dc-msedge.net. INFO[0171] [1692182856] dns: exchanged edge.microsoft.com A dual-a-0036.dc-msedge.net. 18 IN A 131.253.33.239 INFO[0171] [1692182856] dns: exchanged edge.microsoft.com A dual-a-0036.dc-msedge.net. 18 IN A 13.107.22.239 INFO[0171] [1692182856] dns: lookup succeed for edge.microsoft.com: 131.253.33.239 13.107.22.239 2a01:111:202c::239 2620:1ec:13::239 INFO[0171] [4219604382] inbound/vmess[0]: inbound connection from 153.254.103.230:43796 INFO[0171] [3671977170] inbound/vmess[0]: [0] inbound connection to speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 INFO[0171] [3671977170] outbound/direct[direct]: outbound connection to speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 INFO[0171] [3671977170] dns: lookup succeed for speedtest.lekloud.net.prod.hosts.ooklaserver.net: 85.208.144.167 2a09:8740:0:3::12:8224 INFO[0172] [1674482442] inbound/vmess[0]: inbound connection from 153.254.103.232:43800 INFO[0172] [3070856842] inbound/vmess[0]: [0] inbound connection to speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 INFO[0172] [3070856842] outbound/direct[direct]: outbound connection to speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 INFO[0172] [3070856842] dns: lookup succeed for speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net: 45.147.98.4 2a09:6383::45:147:98:4 INFO[0172] [304098940] inbound/vmess[0]: inbound connection from 153.254.103.232:43804 INFO[0172] [3389822302] inbound/vmess[0]: [0] inbound connection to speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 INFO[0172] [3389822302] outbound/direct[direct]: outbound connection to speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 INFO[0172] [3389822302] dns: lookup succeed for speedtest.sewan.fr.prod.hosts.ooklaserver.net: 65.39.67.192 INFO[0172] [3024824634] inbound/vmess[0]: inbound connection from 153.254.103.228:43808 INFO[0172] [2698644438] inbound/vmess[0]: [0] inbound connection to speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 INFO[0172] [2698644438] outbound/direct[direct]: outbound connection to speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 INFO[0172] [2698644438] dns: lookup succeed for speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net: 45.147.98.4 2a09:6383::45:147:98:4 INFO[0173] [1713674835] inbound/vmess[0]: inbound connection from 153.254.103.228:43812 INFO[0173] [4232359908] inbound/vmess[0]: [0] inbound connection to speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 INFO[0173] [4232359908] outbound/direct[direct]: outbound connection to speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 INFO[0173] [4232359908] dns: lookup succeed for speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net: 45.147.98.4 2a09:6383::45:147:98:4 INFO[0173] [362859621] inbound/vmess[0]: inbound connection from 153.254.103.230:43816 INFO[0173] [3368866049] inbound/vmess[0]: [0] inbound connection to speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 INFO[0173] [3368866049] outbound/direct[direct]: outbound connection to speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 INFO[0173] [3368866049] dns: lookup succeed for speedtest.sewan.fr.prod.hosts.ooklaserver.net: 65.39.67.192 INFO[0177] [835824001] inbound/vmess[0]: inbound connection from 153.254.103.232:43820 INFO[0177] [1183666678] inbound/vmess[0]: [0] inbound connection to speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 INFO[0177] [1183666678] outbound/direct[direct]: outbound connection to speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 INFO[0177] [1183666678] dns: lookup succeed for speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net: 45.147.98.4 2a09:6383::45:147:98:4 INFO[0182] [4051476420] inbound/vmess[0]: inbound connection from 153.254.103.230:43824 INFO[0182] [3013421033] inbound/vmess[0]: [0] inbound connection to a.nel.cloudflare.com:443 INFO[0182] [3013421033] outbound/direct[direct]: outbound connection to a.nel.cloudflare.com:443 INFO[0182] [3013421033] dns: exchanged a.nel.cloudflare.com A a.nel.cloudflare.com. 13914 IN A 35.190.80.1 INFO[0182] [3013421033] dns: exchanged a.nel.cloudflare.com AAAA a.nel.cloudflare.com. 12638 IN AAAA 2600:1901:0:47fc:: INFO[0182] [3013421033] dns: lookup succeed for a.nel.cloudflare.com: 35.190.80.1 2600:1901:0:47fc:: INFO[0184] [1611459341] inbound/vmess[0]: inbound connection from 153.254.103.228:43828 INFO[0184] [3336598631] inbound/vmess[0]: [0] inbound connection to speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 INFO[0184] [3336598631] outbound/direct[direct]: outbound connection to speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 INFO[0184] [3336598631] dns: lookup succeed for speedtest.sewan.fr.prod.hosts.ooklaserver.net: 65.39.67.192 INFO[0184] [3061676860] inbound/vmess[0]: inbound connection from 153.254.103.230:43832 INFO[0184] [4291941071] inbound/vmess[0]: [0] inbound connection to speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 INFO[0184] [4291941071] outbound/direct[direct]: outbound connection to speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 INFO[0184] [4291941071] dns: lookup succeed for speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net: 45.147.98.4 2a09:6383::45:147:98:4 INFO[0184] [3068571345] inbound/vmess[0]: inbound connection from 153.254.103.232:43836 INFO[0184] [739461162] inbound/vmess[0]: [0] inbound connection to speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 INFO[0184] [739461162] outbound/direct[direct]: outbound connection to speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 INFO[0184] [739461162] dns: lookup succeed for speedtest.lekloud.net.prod.hosts.ooklaserver.net: 85.208.144.167 2a09:8740:0:3::12:8224 INFO[0184] [2432989104] inbound/vmess[0]: inbound connection from 153.254.103.232:43840 INFO[0184] [269824672] inbound/vmess[0]: [0] inbound connection to lg-par2.fdcservers.net:8080 INFO[0184] [269824672] outbound/direct[direct]: outbound connection to lg-par2.fdcservers.net:8080 INFO[0184] [269824672] dns: lookup succeed for lg-par2.fdcservers.net: 50.7.200.42 INFO[0185] [2996939987] inbound/vmess[0]: inbound connection from 153.254.103.232:43844 INFO[0185] [4097885792] inbound/vmess[0]: [0] inbound connection to speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 INFO[0185] [4097885792] outbound/direct[direct]: outbound connection to speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 INFO[0185] [4097885792] dns: lookup succeed for speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net: 45.147.98.4 2a09:6383::45:147:98:4 INFO[0185] [3032358550] inbound/vmess[0]: inbound connection from 153.254.103.232:43848 INFO[0185] [750416410] inbound/vmess[0]: [0] inbound connection to speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 INFO[0185] [750416410] outbound/direct[direct]: outbound connection to speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 INFO[0185] [750416410] dns: lookup succeed for speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net: 45.147.98.4 2a09:6383::45:147:98:4 INFO[0185] [3673307718] inbound/vmess[0]: inbound connection from 153.254.103.228:43852 INFO[0185] [479102661] inbound/vmess[0]: [0] inbound connection to speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 INFO[0185] [479102661] outbound/direct[direct]: outbound connection to speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 INFO[0185] [479102661] dns: lookup succeed for speedtest.lekloud.net.prod.hosts.ooklaserver.net: 85.208.144.167 2a09:8740:0:3::12:8224 INFO[0185] [690358589] inbound/vmess[0]: inbound connection from 153.254.103.230:43856 INFO[0185] [2323359301] inbound/vmess[0]: [0] inbound connection to lg-par2.fdcservers.net:8080 INFO[0185] [2323359301] outbound/direct[direct]: outbound connection to lg-par2.fdcservers.net:8080 INFO[0185] [2323359301] dns: lookup succeed for lg-par2.fdcservers.net: 50.7.200.42 INFO[0185] [2720461073] inbound/vmess[0]: inbound connection from 153.254.103.230:43860 INFO[0185] [1745133922] inbound/vmess[0]: [0] inbound connection to speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 INFO[0185] [1745133922] outbound/direct[direct]: outbound connection to speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 INFO[0185] [1745133922] dns: lookup succeed for speedtest.sewan.fr.prod.hosts.ooklaserver.net: 65.39.67.192 INFO[0185] [886395532] inbound/vmess[0]: inbound connection from 153.254.103.232:43864 INFO[0185] [21135982] inbound/vmess[0]: [0] inbound connection to speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 INFO[0185] [21135982] outbound/direct[direct]: outbound connection to speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 INFO[0185] [21135982] dns: lookup succeed for speedtest.sewan.fr.prod.hosts.ooklaserver.net: 65.39.67.192 INFO[0186] [1723277352] inbound/vmess[0]: inbound connection from 153.254.103.230:43868 INFO[0186] [2543732487] inbound/vmess[0]: [0] inbound connection to speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 INFO[0186] [2543732487] outbound/direct[direct]: outbound connection to speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 INFO[0186] [2543732487] dns: lookup succeed for speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net: 45.147.98.4 2a09:6383::45:147:98:4 INFO[0186] [159877133] inbound/vmess[0]: inbound connection from 153.254.103.228:43874 INFO[0186] [3070002835] inbound/vmess[0]: [0] inbound connection to speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 INFO[0186] [3070002835] outbound/direct[direct]: outbound connection to speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 INFO[0186] [39347014] inbound/vmess[0]: inbound connection from 153.254.103.230:43872 INFO[0186] [343014368] inbound/vmess[0]: [0] inbound connection to speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 INFO[0186] [343014368] outbound/direct[direct]: outbound connection to speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 INFO[0186] [3070002835] dns: lookup succeed for speedtest.lekloud.net.prod.hosts.ooklaserver.net: 85.208.144.167 2a09:8740:0:3::12:8224 INFO[0186] [343014368] dns: lookup succeed for speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net: 45.147.98.4 2a09:6383::45:147:98:4 INFO[0186] [405863457] inbound/vmess[0]: inbound connection from 153.254.103.230:43880 INFO[0186] [3024581114] inbound/vmess[0]: [0] inbound connection to speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 INFO[0186] [3024581114] outbound/direct[direct]: outbound connection to speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 INFO[0186] [3024581114] dns: lookup succeed for speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net: 45.147.98.4 2a09:6383::45:147:98:4 INFO[0186] [2617400888] inbound/vmess[0]: inbound connection from 153.254.103.228:43888 INFO[0186] [756811745] inbound/vmess[0]: [0] inbound connection to speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 INFO[0186] [756811745] outbound/direct[direct]: outbound connection to speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 INFO[0186] [2186075034] inbound/vmess[0]: inbound connection from 153.254.103.228:43884 INFO[0186] [1072553896] inbound/vmess[0]: [0] inbound connection to speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 INFO[0186] [1072553896] outbound/direct[direct]: outbound connection to speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 INFO[0186] [165011782] inbound/vmess[0]: inbound connection from 153.254.103.232:43886 INFO[0186] [333911215] inbound/vmess[0]: [0] inbound connection to speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 INFO[0186] [333911215] outbound/direct[direct]: outbound connection to speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 INFO[0186] [756811745] dns: lookup succeed for speedtest.sewan.fr.prod.hosts.ooklaserver.net: 65.39.67.192 INFO[0186] [1072553896] dns: lookup succeed for speedtest.lekloud.net.prod.hosts.ooklaserver.net: 85.208.144.167 2a09:8740:0:3::12:8224 INFO[0186] [333911215] dns: lookup succeed for speedtest.sewan.fr.prod.hosts.ooklaserver.net: 65.39.67.192 INFO[0187] [4111411056] inbound/vmess[0]: inbound connection from 153.254.103.232:43896 INFO[0187] [246788305] inbound/vmess[0]: [0] inbound connection to lg-par2.fdcservers.net:8080 INFO[0187] [246788305] outbound/direct[direct]: outbound connection to lg-par2.fdcservers.net:8080 INFO[0187] [246788305] dns: lookup succeed for lg-par2.fdcservers.net: 50.7.200.42 INFO[0187] [780910042] inbound/vmess[0]: inbound connection from 153.254.103.228:43900 INFO[0187] [3738733002] inbound/vmess[0]: [0] inbound connection to speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 INFO[0187] [3738733002] outbound/direct[direct]: outbound connection to speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 INFO[0187] [3738733002] dns: lookup succeed for speedtest.lekloud.net.prod.hosts.ooklaserver.net: 85.208.144.167 2a09:8740:0:3::12:8224 INFO[0187] [2533241503] inbound/vmess[0]: inbound connection from 153.254.103.228:43904 INFO[0187] [2594661457] inbound/vmess[0]: [0] inbound connection to lg-par2.fdcservers.net:8080 INFO[0187] [2594661457] outbound/direct[direct]: outbound connection to lg-par2.fdcservers.net:8080 INFO[0187] [2594661457] dns: lookup succeed for lg-par2.fdcservers.net: 50.7.200.42 INFO[0187] [3431604009] inbound/vmess[0]: inbound connection from 153.254.103.232:43908 INFO[0187] [1167333941] inbound/vmess[0]: [0] inbound connection to speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 INFO[0187] [1167333941] outbound/direct[direct]: outbound connection to speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 INFO[0187] [1167333941] dns: lookup succeed for speedtest.sewan.fr.prod.hosts.ooklaserver.net: 65.39.67.192 INFO[0187] [3871342847] inbound/vmess[0]: inbound connection from 153.254.103.230:43912 INFO[0187] [2499969436] inbound/vmess[0]: [0] inbound connection to lg-par2.fdcservers.net:8080 INFO[0187] [2499969436] outbound/direct[direct]: outbound connection to lg-par2.fdcservers.net:8080 INFO[0187] [2499969436] dns: lookup succeed for lg-par2.fdcservers.net: 50.7.200.42 INFO[0187] [2486788094] inbound/vmess[0]: inbound connection from 153.254.103.232:43916 INFO[0187] [1051413633] inbound/vmess[0]: [0] inbound connection to speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 INFO[0187] [1051413633] outbound/direct[direct]: outbound connection to speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 INFO[0187] [1051413633] dns: lookup succeed for speedtest.sewan.fr.prod.hosts.ooklaserver.net: 65.39.67.192 INFO[0188] [1146054642] inbound/vmess[0]: inbound connection from 153.254.103.230:43922 INFO[0188] [2739715711] inbound/vmess[0]: [0] inbound connection to speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 INFO[0188] [2739715711] outbound/direct[direct]: outbound connection to speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 INFO[0188] [1666681239] inbound/vmess[0]: inbound connection from 153.254.103.230:43920 INFO[0188] [3998757256] inbound/vmess[0]: [0] inbound connection to speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 INFO[0188] [3998757256] outbound/direct[direct]: outbound connection to speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 INFO[0188] [2739715711] dns: lookup succeed for speedtest.lekloud.net.prod.hosts.ooklaserver.net: 85.208.144.167 2a09:8740:0:3::12:8224 INFO[0188] [3998757256] dns: lookup succeed for speedtest.sewan.fr.prod.hosts.ooklaserver.net: 65.39.67.192 INFO[0188] [535257833] inbound/vmess[0]: inbound connection from 153.254.103.228:43928 INFO[0188] [116519893] inbound/vmess[0]: [0] inbound connection to speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 INFO[0188] [116519893] outbound/direct[direct]: outbound connection to speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 INFO[0188] [116519893] dns: lookup succeed for speedtest.lekloud.net.prod.hosts.ooklaserver.net: 85.208.144.167 2a09:8740:0:3::12:8224 INFO[0189] [357502756] inbound/vmess[0]: inbound connection from 153.254.103.230:43932 INFO[0189] [3836655950] inbound/vmess[0]: [0] inbound connection to lg-par2.fdcservers.net:8080 INFO[0189] [3836655950] outbound/direct[direct]: outbound connection to lg-par2.fdcservers.net:8080 INFO[0189] [3836655950] dns: lookup succeed for lg-par2.fdcservers.net: 50.7.200.42 INFO[0189] [1112271571] inbound/vmess[0]: inbound connection from 153.254.103.228:43936 INFO[0189] [3464416918] inbound/vmess[0]: [0] inbound connection to speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 INFO[0189] [3464416918] outbound/direct[direct]: outbound connection to speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 INFO[0189] [3464416918] dns: lookup succeed for speedtest.sewan.fr.prod.hosts.ooklaserver.net: 65.39.67.192 INFO[0192] [2028218170] inbound/vmess[0]: inbound connection from 153.254.103.228:43940 INFO[0192] [2978721943] inbound/vmess[0]: [0] inbound connection to speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 INFO[0192] [2978721943] outbound/direct[direct]: outbound connection to speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 INFO[0192] [2978721943] dns: lookup succeed for speedtest.lekloud.net.prod.hosts.ooklaserver.net: 85.208.144.167 2a09:8740:0:3::12:8224 ERROR[0193] [1723277352] inbound/vmess[0]: process connection from 153.254.103.230:43868: upload: EOF | download: websocket: close sent INFO[0194] [1910127864] inbound/vmess[0]: inbound connection from 153.254.103.232:43944 INFO[0194] [1777933345] inbound/vmess[0]: [0] inbound connection to speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 INFO[0194] [1777933345] outbound/direct[direct]: outbound connection to speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 INFO[0194] [1777933345] dns: lookup succeed for speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net: 45.147.98.4 2a09:6383::45:147:98:4 INFO[0195] [2187602571] inbound/vmess[0]: inbound connection from 153.254.103.230:43948 INFO[0195] [499374408] inbound/vmess[0]: [0] inbound connection to speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 INFO[0195] [499374408] outbound/direct[direct]: outbound connection to speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 INFO[0195] [499374408] dns: lookup succeed for speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net: 45.147.98.4 2a09:6383::45:147:98:4 INFO[0196] [3353347698] inbound/vmess[0]: inbound connection from 153.254.103.232:43952 INFO[0196] [3455822627] inbound/vmess[0]: [0] inbound connection to 192.168.31.1:8080 INFO[0196] [3455822627] outbound/direct[direct]: outbound connection to 192.168.31.1:8080 INFO[0310] [1662987148] inbound/vmess[0]: inbound connection from 153.254.103.230:43956 INFO[0310] [1678534868] inbound/vmess[0]: [0] inbound connection to 192.168.31.1:8080 INFO[0310] [1678534868] outbound/direct[direct]: outbound connection to 192.168.31.1:8080 INFO[0312] [2490462504] inbound/vmess[0]: inbound connection from 153.254.103.232:43960 INFO[0312] [1726099916] inbound/vmess[0]: [0] inbound connection to 192.168.31.1:8080 INFO[0312] [1726099916] outbound/direct[direct]: outbound connection to 192.168.31.1:8080 INFO[0314] [3213000052] inbound/vmess[0]: inbound connection from 153.254.103.228:43964 INFO[0314] [2046907598] inbound/vmess[0]: [0] inbound connection to 192.168.31.1:8080 INFO[0314] [2046907598] outbound/direct[direct]: outbound connection to 192.168.31.1:8080 ERROR[0315] [1662987148] inbound/vmess[0]: process connection from 153.254.103.230:43956: dial tcp 192.168.31.1:8080: i/o timeout INFO[0316] [2107810403] inbound/vmess[0]: inbound connection from 153.254.103.230:43968 INFO[0316] [3855242777] inbound/vmess[0]: [0] inbound connection to 192.168.31.1:8080 INFO[0316] [3855242777] outbound/direct[direct]: outbound connection to 192.168.31.1:8080 INFO[0318] [3680046973] inbound/vmess[0]: inbound connection from 153.254.103.228:43972 INFO[0318] [4257347641] inbound/vmess[0]: [0] inbound connection to 192.168.31.1:8080 INFO[0318] [4257347641] outbound/direct[direct]: outbound connection to 192.168.31.1:8080 ERROR[0319] [3213000052] inbound/vmess[0]: process connection from 153.254.103.228:43964: dial tcp 192.168.31.1:8080: i/o timeout INFO[0319] [2479463505] inbound/vmess[0]: inbound connection from 153.254.103.230:43976 INFO[0319] [4052787333] inbound/vmess[0]: [0] inbound connection to zdstatic.speedtest.net:443 INFO[0319] [4052787333] outbound/direct[direct]: outbound connection to zdstatic.speedtest.net:443 INFO[0319] [4052787333] dns: lookup succeed for zdstatic.speedtest.net: 104.126.37.50 104.126.37.43 2a02:26f0:1700:12::b856:67d2 2a02:26f0:1700:12::b856:67df INFO[0319] [3229245980] inbound/vmess[0]: inbound connection from 153.254.103.228:43980 INFO[0319] [454739701] inbound/vmess[0]: [0] inbound connection to www.google.com:443 INFO[0319] [454739701] outbound/direct[direct]: outbound connection to www.google.com:443 INFO[0319] [454739701] dns: lookup succeed for www.google.com: 172.217.168.4 2a00:1450:400a:801::2004 INFO[0319] [2628279482] inbound/vmess[0]: inbound connection from 153.254.103.230:43984 INFO[0319] [696227392] inbound/vmess[0]: [0] inbound connection to www.speedtest.net:443 INFO[0319] [696227392] outbound/direct[direct]: outbound connection to www.speedtest.net:443 INFO[0319] [696227392] dns: lookup succeed for www.speedtest.net: 104.16.209.12 104.16.210.12 ERROR[0321] [2107810403] inbound/vmess[0]: process connection from 153.254.103.230:43968: dial tcp 192.168.31.1:8080: i/o timeout INFO[0322] [1812542181] inbound/vmess[0]: inbound connection from 153.254.103.230:43988 INFO[0322] [3323341260] inbound/vmess[0]: [0] inbound connection to sp1.asthriona.com.prod.hosts.ooklaserver.net:8080 INFO[0322] [3323341260] outbound/direct[direct]: outbound connection to sp1.asthriona.com.prod.hosts.ooklaserver.net:8080 INFO[0322] [3323341260] dns: lookup succeed for sp1.asthriona.com.prod.hosts.ooklaserver.net: 163.172.38.60 INFO[0322] [4139399060] inbound/vmess[0]: inbound connection from 153.254.103.232:43992 INFO[0322] [3207772323] inbound/vmess[0]: [0] inbound connection to perf.keyyo.net:8080 INFO[0322] [3207772323] outbound/direct[direct]: outbound connection to perf.keyyo.net:8080 INFO[0322] [3207772323] dns: lookup succeed for perf.keyyo.net: 178.21.176.100 INFO[0322] [493607075] inbound/vmess[0]: inbound connection from 153.254.103.230:43996 INFO[0322] [1804067298] inbound/vmess[0]: [0] inbound connection to speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 INFO[0322] [1804067298] outbound/direct[direct]: outbound connection to speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 INFO[0322] [1804067298] dns: lookup succeed for speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net: 45.147.98.4 2a09:6383::45:147:98:4 INFO[0322] [529818062] inbound/vmess[0]: inbound connection from 153.254.103.230:44000 INFO[0322] [362200441] inbound/vmess[0]: [0] inbound connection to speedperf.axione.fr.prod.hosts.ooklaserver.net:8080 INFO[0322] [362200441] outbound/direct[direct]: outbound connection to speedperf.axione.fr.prod.hosts.ooklaserver.net:8080 INFO[0322] [362200441] dns: lookup succeed for speedperf.axione.fr.prod.hosts.ooklaserver.net: 109.74.80.187 INFO[0322] [458228506] inbound/vmess[0]: inbound connection from 153.254.103.232:44004 INFO[0322] [3601964501] inbound/vmess[0]: [0] inbound connection to speedtest.milkywan.fr.prod.hosts.ooklaserver.net:8080 INFO[0322] [3601964501] outbound/direct[direct]: outbound connection to speedtest.milkywan.fr.prod.hosts.ooklaserver.net:8080 INFO[0322] [3601964501] dns: lookup succeed for speedtest.milkywan.fr.prod.hosts.ooklaserver.net: 80.67.167.93 2a0b:cbc0:42:1::1 INFO[0322] [2624919526] inbound/vmess[0]: inbound connection from 153.254.103.230:44008 INFO[0322] [3903038945] inbound/vmess[0]: [0] inbound connection to speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 INFO[0322] [3903038945] outbound/direct[direct]: outbound connection to speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 INFO[0322] [3903038945] dns: lookup succeed for speedtest.sewan.fr.prod.hosts.ooklaserver.net: 65.39.67.192 INFO[0322] [55916096] inbound/vmess[0]: inbound connection from 153.254.103.228:44012 INFO[0322] [1860764221] inbound/vmess[0]: [0] inbound connection to speedtest.mire.sfr.net.prod.hosts.ooklaserver.net:8080 INFO[0322] [1860764221] outbound/direct[direct]: outbound connection to speedtest.mire.sfr.net.prod.hosts.ooklaserver.net:8080 INFO[0322] [1860764221] dns: lookup succeed for speedtest.mire.sfr.net.prod.hosts.ooklaserver.net: 93.20.126.204 INFO[0322] [2635236178] inbound/vmess[0]: inbound connection from 153.254.103.230:44016 INFO[0322] [1065231053] inbound/vmess[0]: [0] inbound connection to speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 INFO[0322] [1065231053] outbound/direct[direct]: outbound connection to speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 INFO[0322] [1065231053] dns: lookup succeed for speedtest.lekloud.net.prod.hosts.ooklaserver.net: 85.208.144.167 2a09:8740:0:3::12:8224 INFO[0322] [2472746962] inbound/vmess[0]: inbound connection from 153.254.103.228:44020 INFO[0322] [37544041] inbound/vmess[0]: [0] inbound connection to lg-par2.fdcservers.net:8080 INFO[0322] [37544041] outbound/direct[direct]: outbound connection to lg-par2.fdcservers.net:8080 INFO[0322] [37544041] dns: lookup succeed for lg-par2.fdcservers.net: 50.7.200.42 INFO[0322] [2838283984] inbound/vmess[0]: inbound connection from 153.254.103.228:44024 INFO[0322] [1874035395] inbound/vmess[0]: [0] inbound connection to montsouris3.speedtest.orange.fr.prod.hosts.ooklaserver.net:8080 INFO[0322] [1874035395] outbound/direct[direct]: outbound connection to montsouris3.speedtest.orange.fr.prod.hosts.ooklaserver.net:8080 INFO[0322] [1874035395] dns: lookup succeed for montsouris3.speedtest.orange.fr.prod.hosts.ooklaserver.net: 193.251.237.72 2a01:cb04:2004:4001::3 ERROR[0323] [3680046973] inbound/vmess[0]: process connection from 153.254.103.228:43972: dial tcp 192.168.31.1:8080: i/o timeout INFO[0323] [3878395285] inbound/vmess[0]: inbound connection from 153.254.103.230:44028 INFO[0323] [3520942457] inbound/vmess[0]: [0] inbound connection to speedtest.mire.sfr.net.prod.hosts.ooklaserver.net:8080 INFO[0323] [3520942457] outbound/direct[direct]: outbound connection to speedtest.mire.sfr.net.prod.hosts.ooklaserver.net:8080 INFO[0323] [3520942457] dns: lookup succeed for speedtest.mire.sfr.net.prod.hosts.ooklaserver.net: 93.20.126.204 INFO[0323] [3849382421] inbound/vmess[0]: inbound connection from 153.254.103.228:44032 INFO[0323] [222175424] inbound/vmess[0]: [0] inbound connection to lg-par2.fdcservers.net:8080 INFO[0323] [222175424] outbound/direct[direct]: outbound connection to lg-par2.fdcservers.net:8080 INFO[0323] [222175424] dns: lookup succeed for lg-par2.fdcservers.net: 50.7.200.42 INFO[0328] [351323881] inbound/vmess[0]: inbound connection from 153.254.103.232:44036 INFO[0328] [1563686665] inbound/vmess[0]: [0] inbound connection to perf.keyyo.net:8080 INFO[0328] [1563686665] outbound/direct[direct]: outbound connection to perf.keyyo.net:8080 INFO[0328] [1563686665] dns: lookup succeed for perf.keyyo.net: 178.21.176.100 ```

客户端:

```console 启动服务(2/13 15:12:33)... Xray 1.7.2 (Xray, Penetrates Everything.) Custom (go1.19.4 windows/amd64) A unified platform for anti-censorship. 2023/02/13 15:12:33 [Info] infra/conf/serial: Reading config: C:\Users\Administrator\scoop\apps\v2rayn\current\config.json 2023/02/13 15:12:34 [Debug] app/log: Logger started 2023/02/13 15:12:34 [Debug] app/proxyman/inbound: creating stream worker on 127.0.0.1:10808 2023/02/13 15:12:34 [Debug] app/proxyman/inbound: creating stream worker on 127.0.0.1:10809 2023/02/13 15:12:34 [Debug] app/proxyman/inbound: creating stream worker on 0.0.0.0:10810 2023/02/13 15:12:34 [Debug] app/proxyman/inbound: creating stream worker on 0.0.0.0:10811 2023/02/13 15:12:34 [Debug] app/proxyman/inbound: creating stream worker on 127.0.0.1:4285 2023/02/13 15:12:34 [Debug] app/stats: create new counter outbound>>>proxy>>>traffic>>>uplink 2023/02/13 15:12:34 [Debug] app/stats: create new counter outbound>>>proxy>>>traffic>>>downlink 2023/02/13 15:12:34 [Debug] app/stats: create new counter outbound>>>direct>>>traffic>>>uplink 2023/02/13 15:12:34 [Debug] app/stats: create new counter outbound>>>direct>>>traffic>>>downlink 2023/02/13 15:12:34 [Debug] app/stats: create new counter outbound>>>block>>>traffic>>>uplink 2023/02/13 15:12:34 [Debug] app/stats: create new counter outbound>>>block>>>traffic>>>downlink 2023/02/13 15:12:34 [Info] transport/internet/tcp: listening TCP on 127.0.0.1:10809 2023/02/13 15:12:34 [Info] transport/internet/tcp: listening TCP on 0.0.0.0:10810 2023/02/13 15:12:34 [Info] transport/internet/udp: listening UDP on 0.0.0.0:10810 2023/02/13 15:12:34 [Info] transport/internet/tcp: listening TCP on 0.0.0.0:10811 2023/02/13 15:12:34 [Info] transport/internet/tcp: listening TCP on 127.0.0.1:4285 2023/02/13 15:12:34 [Info] transport/internet/tcp: listening TCP on 127.0.0.1:10808 2023/02/13 15:12:34 [Info] transport/internet/udp: listening UDP on 127.0.0.1:10808 2023/02/13 15:12:34 [Warning] core: Xray 1.7.2 started 2023/02/13 15:12:34 [Info] [3200364906] proxy/socks: TCP Connect request to tcp:192.168.31.1:8080 2023/02/13 15:12:34 [Info] [3200364906] app/dispatcher: sniffed domain: 192.168.31.1 2023/02/13 15:12:34 [Info] [3200364906] app/dispatcher: taking detour [proxy] for [tcp:192.168.31.1:8080] 2023/02/13 15:12:34 [Info] [3200364906] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:34 [Info] [3200364906] proxy/vmess/outbound: tunneling request to tcp:192.168.31.1:8080 via proxy.app:443 2023/02/13 15:12:34 tcp:127.0.0.1:11096 accepted tcp:192.168.31.1:8080 [socks -> proxy] 2023/02/13 15:12:34 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:34 [Info] [1837868866] proxy/socks: TCP Connect request to tcp:c.msn.com:443 2023/02/13 15:12:34 [Info] [1837868866] app/dispatcher: sniffed domain: c.msn.com 2023/02/13 15:12:34 [Info] [1837868866] app/dispatcher: taking detour [proxy] for [tcp:c.msn.com:443] 2023/02/13 15:12:34 [Info] [1837868866] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:34 [Info] [1837868866] proxy/vmess/outbound: tunneling request to tcp:c.msn.com:443 via proxy.app:443 2023/02/13 15:12:34 tcp:127.0.0.1:11090 accepted tcp:c.msn.com:443 [socks -> proxy] 2023/02/13 15:12:34 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:34 [Info] [279506144] proxy/socks: TCP Connect request to tcp:assets.msn.com:443 2023/02/13 15:12:34 [Info] [279506144] app/dispatcher: sniffed domain: assets.msn.com 2023/02/13 15:12:34 [Info] [279506144] app/dispatcher: taking detour [proxy] for [tcp:assets.msn.com:443] 2023/02/13 15:12:34 [Info] [279506144] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:34 [Info] [279506144] proxy/vmess/outbound: tunneling request to tcp:assets.msn.com:443 via proxy.app:443 2023/02/13 15:12:34 tcp:127.0.0.1:11089 accepted tcp:assets.msn.com:443 [socks -> proxy] 2023/02/13 15:12:34 [Info] [3996545371] proxy/socks: TCP Connect request to tcp:assets.msn.com:443 2023/02/13 15:12:34 [Info] [2805762324] proxy/socks: TCP Connect request to tcp:assets.msn.com:443 2023/02/13 15:12:34 [Info] [3996545371] app/dispatcher: sniffed domain: assets.msn.com 2023/02/13 15:12:34 [Info] [3996545371] app/dispatcher: taking detour [proxy] for [tcp:assets.msn.com:443] 2023/02/13 15:12:34 [Info] [3996545371] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:34 [Info] [3996545371] proxy/vmess/outbound: tunneling request to tcp:assets.msn.com:443 via proxy.app:443 2023/02/13 15:12:34 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:34 tcp:127.0.0.1:11092 accepted tcp:assets.msn.com:443 [socks -> proxy] 2023/02/13 15:12:34 [Info] [2805762324] app/dispatcher: sniffed domain: assets.msn.com 2023/02/13 15:12:34 [Info] [2805762324] app/dispatcher: taking detour [proxy] for [tcp:assets.msn.com:443] 2023/02/13 15:12:34 [Info] [2805762324] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:34 [Info] [2805762324] proxy/vmess/outbound: tunneling request to tcp:assets.msn.com:443 via proxy.app:443 2023/02/13 15:12:34 tcp:127.0.0.1:11091 accepted tcp:assets.msn.com:443 [socks -> proxy] 2023/02/13 15:12:34 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:34 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:34 [Info] [1608520263] proxy/socks: TCP Connect request to tcp:192.168.31.1:8080 2023/02/13 15:12:34 [Debug] [2663854946] proxy/dokodemo: processing connection from: 127.0.0.1:11102 2023/02/13 15:12:34 [Info] [2663854946] proxy/dokodemo: received request for 127.0.0.1:11102 2023/02/13 15:12:34 [Info] [2663854946] app/dispatcher: taking detour [api] for [tcp:127.0.0.1:0] 2023/02/13 15:12:34 127.0.0.1:11102 accepted tcp:127.0.0.1:0 [api -> api] 2023/02/13 15:12:34 [Info] [1608520263] app/dispatcher: taking detour [proxy] for [tcp:192.168.31.1:8080] 2023/02/13 15:12:34 [Info] [1608520263] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:34 [Info] [1608520263] proxy/vmess/outbound: tunneling request to tcp:192.168.31.1:8080 via proxy.app:443 2023/02/13 15:12:34 tcp:127.0.0.1:11093 accepted tcp:192.168.31.1:8080 [socks -> proxy] 2023/02/13 15:12:34 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:35 [Info] [4084560837] proxy/socks: TCP Connect request to tcp:www.google.com:443 2023/02/13 15:12:35 [Info] [4084560837] app/dispatcher: sniffed domain: www.google.com 2023/02/13 15:12:35 [Info] [4084560837] app/dispatcher: taking detour [proxy] for [tcp:www.google.com:443] 2023/02/13 15:12:35 [Info] [4084560837] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:35 [Info] [4084560837] proxy/vmess/outbound: tunneling request to tcp:www.google.com:443 via proxy.app:443 2023/02/13 15:12:35 tcp:127.0.0.1:11105 accepted tcp:www.google.com:443 [socks -> proxy] 2023/02/13 15:12:35 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:35 [Info] [3996545371] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > proxy/vmess/outbound: failed to read header > common/drain: common/drain: drained connection > proxy/vmess/encoding: Failed To Decrypt Length > cipher: message authentication failed 2023/02/13 15:12:35 [Info] [3996545371] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:12:36 [Info] [2086537145] proxy/socks: TCP Connect request to tcp:www.google.com:443 2023/02/13 15:12:36 [Info] [2086537145] app/dispatcher: sniffed domain: www.google.com 2023/02/13 15:12:36 [Info] [2086537145] app/dispatcher: taking detour [proxy] for [tcp:www.google.com:443] 2023/02/13 15:12:36 [Info] [2086537145] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:36 [Info] [2086537145] proxy/vmess/outbound: tunneling request to tcp:www.google.com:443 via proxy.app:443 2023/02/13 15:12:36 tcp:127.0.0.1:11107 accepted tcp:www.google.com:443 [socks -> proxy] 2023/02/13 15:12:36 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:36 [Info] [528578751] proxy/socks: TCP Connect request to tcp:browser.events.data.msn.com:443 2023/02/13 15:12:36 [Info] [528578751] app/dispatcher: sniffed domain: browser.events.data.msn.com 2023/02/13 15:12:36 [Info] [528578751] app/dispatcher: taking detour [proxy] for [tcp:browser.events.data.msn.com:443] 2023/02/13 15:12:36 [Info] [528578751] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:36 [Info] [528578751] proxy/vmess/outbound: tunneling request to tcp:browser.events.data.msn.com:443 via proxy.app:443 2023/02/13 15:12:36 tcp:127.0.0.1:11109 accepted tcp:browser.events.data.msn.com:443 [socks -> proxy] 2023/02/13 15:12:36 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:36 [Info] [3326602054] proxy/socks: TCP Connect request to tcp:www.google.com:443 2023/02/13 15:12:36 [Info] [3326602054] app/dispatcher: sniffed domain: www.google.com 2023/02/13 15:12:36 [Info] [3326602054] app/dispatcher: taking detour [proxy] for [tcp:www.google.com:443] 2023/02/13 15:12:36 [Info] [3326602054] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:36 [Info] [3326602054] proxy/vmess/outbound: tunneling request to tcp:www.google.com:443 via proxy.app:443 2023/02/13 15:12:36 tcp:127.0.0.1:11111 accepted tcp:www.google.com:443 [socks -> proxy] 2023/02/13 15:12:36 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:36 [Info] [2374202587] proxy/socks: TCP Connect request to tcp:assets.msn.com:443 2023/02/13 15:12:36 [Info] [2374202587] app/dispatcher: sniffed domain: assets.msn.com 2023/02/13 15:12:36 [Info] [2374202587] app/dispatcher: taking detour [proxy] for [tcp:assets.msn.com:443] 2023/02/13 15:12:36 [Info] [2374202587] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:36 [Info] [2374202587] proxy/vmess/outbound: tunneling request to tcp:assets.msn.com:443 via proxy.app:443 2023/02/13 15:12:36 [Info] [4125203131] proxy/socks: TCP Connect request to tcp:assets.msn.com:443 2023/02/13 15:12:36 tcp:127.0.0.1:11113 accepted tcp:assets.msn.com:443 [socks -> proxy] 2023/02/13 15:12:36 [Info] [4125203131] app/dispatcher: sniffed domain: assets.msn.com 2023/02/13 15:12:36 [Info] [4125203131] app/dispatcher: taking detour [proxy] for [tcp:assets.msn.com:443] 2023/02/13 15:12:36 [Info] [4125203131] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:36 [Info] [4125203131] proxy/vmess/outbound: tunneling request to tcp:assets.msn.com:443 via proxy.app:443 2023/02/13 15:12:36 tcp:127.0.0.1:11114 accepted tcp:assets.msn.com:443 [socks -> proxy] 2023/02/13 15:12:36 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:36 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:37 [Info] [268152744] proxy/socks: TCP Connect request to tcp:browser.events.data.msn.com:443 2023/02/13 15:12:37 [Info] [1667889356] proxy/socks: TCP Connect request to tcp:browser.events.data.msn.com:443 2023/02/13 15:12:37 [Info] [938791135] proxy/socks: TCP Connect request to tcp:browser.events.data.msn.com:443 2023/02/13 15:12:37 [Info] [268152744] app/dispatcher: sniffed domain: browser.events.data.msn.com 2023/02/13 15:12:37 [Info] [268152744] app/dispatcher: taking detour [proxy] for [tcp:browser.events.data.msn.com:443] 2023/02/13 15:12:37 [Info] [268152744] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:37 [Info] [268152744] proxy/vmess/outbound: tunneling request to tcp:browser.events.data.msn.com:443 via proxy.app:443 2023/02/13 15:12:37 tcp:127.0.0.1:11117 accepted tcp:browser.events.data.msn.com:443 [socks -> proxy] 2023/02/13 15:12:37 tcp:127.0.0.1:11118 accepted tcp:browser.events.data.msn.com:443 [socks -> proxy] 2023/02/13 15:12:37 tcp:127.0.0.1:11119 accepted tcp:browser.events.data.msn.com:443 [socks -> proxy] 2023/02/13 15:12:37 [Info] [1667889356] app/dispatcher: sniffed domain: browser.events.data.msn.com 2023/02/13 15:12:37 [Info] [1667889356] app/dispatcher: taking detour [proxy] for [tcp:browser.events.data.msn.com:443] 2023/02/13 15:12:37 [Info] [1667889356] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:37 [Info] [1667889356] proxy/vmess/outbound: tunneling request to tcp:browser.events.data.msn.com:443 via proxy.app:443 2023/02/13 15:12:37 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:37 [Info] [938791135] app/dispatcher: sniffed domain: browser.events.data.msn.com 2023/02/13 15:12:37 [Info] [938791135] app/dispatcher: taking detour [proxy] for [tcp:browser.events.data.msn.com:443] 2023/02/13 15:12:37 [Info] [938791135] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:37 [Info] [938791135] proxy/vmess/outbound: tunneling request to tcp:browser.events.data.msn.com:443 via proxy.app:443 2023/02/13 15:12:37 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:37 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:37 [Info] [2086537145] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > proxy/vmess/outbound: failed to read header > common/drain: common/drain: drained connection > proxy/vmess/encoding: Failed To Decrypt Length > cipher: message authentication failed 2023/02/13 15:12:37 [Info] [2086537145] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:12:37 [Info] [3632390339] proxy/socks: TCP Connect request to tcp:www.google.com:443 2023/02/13 15:12:37 [Info] [3632390339] app/dispatcher: sniffed domain: www.google.com 2023/02/13 15:12:37 [Info] [3632390339] app/dispatcher: taking detour [proxy] for [tcp:www.google.com:443] 2023/02/13 15:12:37 [Info] [3632390339] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:37 [Info] [3632390339] proxy/vmess/outbound: tunneling request to tcp:www.google.com:443 via proxy.app:443 2023/02/13 15:12:37 tcp:127.0.0.1:11124 accepted tcp:www.google.com:443 [socks -> proxy] 2023/02/13 15:12:37 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:37 [Info] [4125203131] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > write tcp 127.0.0.1:10808->127.0.0.1:11114: wsasend: An established connection was aborted by the software in your host machine. 2023/02/13 15:12:37 [Info] [1341300645] proxy/socks: TCP Connect request to tcp:www.speedtest.net:443 2023/02/13 15:12:37 [Info] [1341300645] app/dispatcher: sniffed domain: www.speedtest.net 2023/02/13 15:12:37 [Info] [1341300645] app/dispatcher: taking detour [proxy] for [tcp:www.speedtest.net:443] 2023/02/13 15:12:37 [Info] [1341300645] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:37 [Info] [1341300645] proxy/vmess/outbound: tunneling request to tcp:www.speedtest.net:443 via proxy.app:443 2023/02/13 15:12:37 tcp:127.0.0.1:11128 accepted tcp:www.speedtest.net:443 [socks -> proxy] 2023/02/13 15:12:37 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:38 [Info] [2044592509] proxy/socks: TCP Connect request to tcp:browser.events.data.msn.com:443 2023/02/13 15:12:38 tcp:127.0.0.1:11130 accepted tcp:browser.events.data.msn.com:443 [socks -> proxy] 2023/02/13 15:12:38 [Info] [2044592509] app/dispatcher: sniffed domain: browser.events.data.msn.com 2023/02/13 15:12:38 [Info] [2044592509] app/dispatcher: taking detour [proxy] for [tcp:browser.events.data.msn.com:443] 2023/02/13 15:12:38 [Info] [2044592509] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:38 [Info] [2044592509] proxy/vmess/outbound: tunneling request to tcp:browser.events.data.msn.com:443 via proxy.app:443 2023/02/13 15:12:38 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:38 [Info] [1667889356] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > proxy/vmess/outbound: failed to read header > common/drain: common/drain: drained connection > proxy/vmess/encoding: Failed To Decrypt Length > cipher: message authentication failed 2023/02/13 15:12:38 [Info] [1667889356] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:12:38 [Info] [3502369266] proxy/socks: TCP Connect request to tcp:browser.events.data.msn.com:443 2023/02/13 15:12:38 [Info] [3502369266] app/dispatcher: sniffed domain: browser.events.data.msn.com 2023/02/13 15:12:38 [Info] [3502369266] app/dispatcher: taking detour [proxy] for [tcp:browser.events.data.msn.com:443] 2023/02/13 15:12:38 [Info] [3502369266] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:38 [Info] [3502369266] proxy/vmess/outbound: tunneling request to tcp:browser.events.data.msn.com:443 via proxy.app:443 2023/02/13 15:12:38 tcp:127.0.0.1:11132 accepted tcp:browser.events.data.msn.com:443 [socks -> proxy] 2023/02/13 15:12:38 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:38 [Info] [268152744] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > proxy/vmess/outbound: failed to read header > common/drain: common/drain: drained connection > proxy/vmess/encoding: Failed To Decrypt Length > cipher: message authentication failed 2023/02/13 15:12:38 [Info] [268152744] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:12:38 [Info] [560302352] proxy/socks: TCP Connect request to tcp:browser.events.data.msn.com:443 2023/02/13 15:12:38 [Info] [560302352] app/dispatcher: sniffed domain: browser.events.data.msn.com 2023/02/13 15:12:38 [Info] [560302352] app/dispatcher: taking detour [proxy] for [tcp:browser.events.data.msn.com:443] 2023/02/13 15:12:38 [Info] [560302352] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:38 [Info] [560302352] proxy/vmess/outbound: tunneling request to tcp:browser.events.data.msn.com:443 via proxy.app:443 2023/02/13 15:12:38 tcp:127.0.0.1:11134 accepted tcp:browser.events.data.msn.com:443 [socks -> proxy] 2023/02/13 15:12:38 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:38 [Info] [4015195873] proxy/socks: TCP Connect request to tcp:browser.events.data.msn.com:443 2023/02/13 15:12:38 [Info] [4015195873] app/dispatcher: sniffed domain: browser.events.data.msn.com 2023/02/13 15:12:38 tcp:127.0.0.1:11136 accepted tcp:browser.events.data.msn.com:443 [socks -> proxy] 2023/02/13 15:12:38 [Info] [4015195873] app/dispatcher: taking detour [proxy] for [tcp:browser.events.data.msn.com:443] 2023/02/13 15:12:38 [Info] [4015195873] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:38 [Info] [4015195873] proxy/vmess/outbound: tunneling request to tcp:browser.events.data.msn.com:443 via proxy.app:443 2023/02/13 15:12:38 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:38 [Info] [279506144] app/proxyman/inbound: connection ends > proxy/socks: connection ends > context canceled 2023/02/13 15:12:39 [Info] [3502369266] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > proxy/vmess/outbound: failed to read header > common/drain: common/drain: drained connection > proxy/vmess/encoding: Failed To Decrypt Length > cipher: message authentication failed 2023/02/13 15:12:39 [Info] [3502369266] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:12:39 [Info] [560302352] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > proxy/vmess/outbound: failed to read header > common/drain: common/drain: drained connection > proxy/vmess/encoding: Failed To Decrypt Length > cipher: message authentication failed 2023/02/13 15:12:39 [Info] [560302352] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:12:39 [Info] [1663480027] proxy/socks: TCP Connect request to tcp:ntp.msn.com:443 2023/02/13 15:12:39 [Info] [1663480027] app/dispatcher: sniffed domain: ntp.msn.com 2023/02/13 15:12:39 [Info] [1663480027] app/dispatcher: taking detour [proxy] for [tcp:ntp.msn.com:443] 2023/02/13 15:12:39 [Info] [1663480027] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:39 [Info] [1663480027] proxy/vmess/outbound: tunneling request to tcp:ntp.msn.com:443 via proxy.app:443 2023/02/13 15:12:39 tcp:127.0.0.1:11139 accepted tcp:ntp.msn.com:443 [socks -> proxy] 2023/02/13 15:12:39 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:40 [Info] [3526685699] proxy/socks: TCP Connect request to tcp:api.msn.com:443 2023/02/13 15:12:40 [Info] [3526685699] app/dispatcher: sniffed domain: api.msn.com 2023/02/13 15:12:40 [Info] [3526685699] app/dispatcher: taking detour [proxy] for [tcp:api.msn.com:443] 2023/02/13 15:12:40 [Info] [3526685699] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:40 [Info] [3526685699] proxy/vmess/outbound: tunneling request to tcp:api.msn.com:443 via proxy.app:443 2023/02/13 15:12:40 tcp:127.0.0.1:11141 accepted tcp:api.msn.com:443 [socks -> proxy] 2023/02/13 15:12:40 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:40 [Info] [4291950236] proxy/socks: TCP Connect request to tcp:zdstatic.speedtest.net:443 2023/02/13 15:12:40 [Info] [4291950236] app/dispatcher: sniffed domain: zdstatic.speedtest.net 2023/02/13 15:12:40 [Info] [4291950236] app/dispatcher: taking detour [proxy] for [tcp:zdstatic.speedtest.net:443] 2023/02/13 15:12:40 [Info] [4291950236] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:40 [Info] [4291950236] proxy/vmess/outbound: tunneling request to tcp:zdstatic.speedtest.net:443 via proxy.app:443 2023/02/13 15:12:40 tcp:127.0.0.1:11143 accepted tcp:zdstatic.speedtest.net:443 [socks -> proxy] 2023/02/13 15:12:40 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:40 [Info] [3200364906] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > proxy/vmess/outbound: failed to read header > common/drain: common/drain: unable to drain connection > websocket: close 1000 (normal) > proxy/vmess/encoding: Unable to Read Header Len > websocket: close 1000 (normal) 2023/02/13 15:12:40 [Info] [3200364906] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:12:41 [Info] [1608520263] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > proxy/vmess/outbound: failed to read header > common/drain: common/drain: unable to drain connection > websocket: close 1000 (normal) > proxy/vmess/encoding: Unable to Read Header Len > websocket: close 1000 (normal) 2023/02/13 15:12:41 [Info] [1608520263] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:12:41 [Info] [487687699] proxy/socks: TCP Connect request to tcp:192.168.31.1:8080 2023/02/13 15:12:41 [Info] [487687699] app/dispatcher: sniffed domain: 192.168.31.1 2023/02/13 15:12:41 [Info] [487687699] app/dispatcher: taking detour [proxy] for [tcp:192.168.31.1:8080] 2023/02/13 15:12:41 [Info] [487687699] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:41 [Info] [487687699] proxy/vmess/outbound: tunneling request to tcp:192.168.31.1:8080 via proxy.app:443 2023/02/13 15:12:41 tcp:127.0.0.1:11145 accepted tcp:192.168.31.1:8080 [socks -> proxy] 2023/02/13 15:12:41 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:41 [Info] [2830591709] proxy/socks: TCP Connect request to tcp:montsouris3.speedtest.orange.fr.prod.hosts.ooklaserver.net:8080 2023/02/13 15:12:41 [Info] [2830591709] app/dispatcher: sniffed domain: montsouris3.speedtest.orange.fr.prod.hosts.ooklaserver.net 2023/02/13 15:12:41 [Info] [2830591709] app/dispatcher: taking detour [proxy] for [tcp:montsouris3.speedtest.orange.fr.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:12:41 [Info] [2830591709] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:41 [Info] [2830591709] proxy/vmess/outbound: tunneling request to tcp:montsouris3.speedtest.orange.fr.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:12:41 tcp:127.0.0.1:11148 accepted tcp:montsouris3.speedtest.orange.fr.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:12:41 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:41 [Info] [725729158] proxy/socks: TCP Connect request to tcp:perf.keyyo.net:8080 2023/02/13 15:12:41 [Info] [725729158] app/dispatcher: sniffed domain: perf.keyyo.net 2023/02/13 15:12:41 [Info] [725729158] app/dispatcher: taking detour [proxy] for [tcp:perf.keyyo.net:8080] 2023/02/13 15:12:41 [Info] [725729158] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:41 [Info] [725729158] proxy/vmess/outbound: tunneling request to tcp:perf.keyyo.net:8080 via proxy.app:443 2023/02/13 15:12:41 tcp:127.0.0.1:11149 accepted tcp:perf.keyyo.net:8080 [socks -> proxy] 2023/02/13 15:12:41 tcp:127.0.0.1:11151 accepted tcp:speedtest.mire.sfr.net.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:12:41 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:41 [Info] [2146790216] proxy/socks: TCP Connect request to tcp:speedtest.mire.sfr.net.prod.hosts.ooklaserver.net:8080 2023/02/13 15:12:41 [Info] [2146790216] app/dispatcher: sniffed domain: speedtest.mire.sfr.net.prod.hosts.ooklaserver.net 2023/02/13 15:12:41 [Info] [2146790216] app/dispatcher: taking detour [proxy] for [tcp:speedtest.mire.sfr.net.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:12:41 [Info] [2146790216] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:41 [Info] [2146790216] proxy/vmess/outbound: tunneling request to tcp:speedtest.mire.sfr.net.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:12:41 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:41 [Info] [34238563] proxy/socks: TCP Connect request to tcp:sp1.asthriona.com.prod.hosts.ooklaserver.net:8080 2023/02/13 15:12:41 [Info] [34238563] app/dispatcher: sniffed domain: sp1.asthriona.com.prod.hosts.ooklaserver.net 2023/02/13 15:12:41 [Info] [34238563] app/dispatcher: taking detour [proxy] for [tcp:sp1.asthriona.com.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:12:41 [Info] [34238563] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:41 [Info] [34238563] proxy/vmess/outbound: tunneling request to tcp:sp1.asthriona.com.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:12:41 tcp:127.0.0.1:11152 accepted tcp:sp1.asthriona.com.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:12:41 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:41 [Info] [3660279712] proxy/socks: TCP Connect request to tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 2023/02/13 15:12:41 [Info] [3660279712] app/dispatcher: sniffed domain: speedtest.lekloud.net.prod.hosts.ooklaserver.net 2023/02/13 15:12:41 [Info] [3660279712] app/dispatcher: taking detour [proxy] for [tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:12:41 [Info] [3660279712] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:41 [Info] [3660279712] proxy/vmess/outbound: tunneling request to tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:12:41 [Info] [4158618225] proxy/socks: TCP Connect request to tcp:lg-par2.fdcservers.net:8080 2023/02/13 15:12:41 [Info] [299824057] proxy/socks: TCP Connect request to tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 2023/02/13 15:12:41 [Info] [4158618225] app/dispatcher: sniffed domain: lg-par2.fdcservers.net 2023/02/13 15:12:41 [Info] [4158618225] app/dispatcher: taking detour [proxy] for [tcp:lg-par2.fdcservers.net:8080] 2023/02/13 15:12:41 [Info] [4158618225] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:41 [Info] [4158618225] proxy/vmess/outbound: tunneling request to tcp:lg-par2.fdcservers.net:8080 via proxy.app:443 2023/02/13 15:12:41 [Info] [299824057] app/dispatcher: sniffed domain: speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net 2023/02/13 15:12:41 [Info] [299824057] app/dispatcher: taking detour [proxy] for [tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:12:41 [Info] [299824057] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:41 [Info] [299824057] proxy/vmess/outbound: tunneling request to tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:12:41 tcp:127.0.0.1:11153 accepted tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:12:41 tcp:127.0.0.1:11156 accepted tcp:lg-par2.fdcservers.net:8080 [socks -> proxy] 2023/02/13 15:12:41 tcp:127.0.0.1:11157 accepted tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:12:41 [Info] [2280985413] proxy/socks: TCP Connect request to tcp:speedperf.axione.fr.prod.hosts.ooklaserver.net:8080 2023/02/13 15:12:41 tcp:127.0.0.1:11158 accepted tcp:speedperf.axione.fr.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:12:41 [Info] [2280985413] app/dispatcher: sniffed domain: speedperf.axione.fr.prod.hosts.ooklaserver.net 2023/02/13 15:12:41 [Info] [2280985413] app/dispatcher: taking detour [proxy] for [tcp:speedperf.axione.fr.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:12:41 tcp:127.0.0.1:11164 accepted tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:12:41 [Info] [2280985413] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:41 [Info] [2280985413] proxy/vmess/outbound: tunneling request to tcp:speedperf.axione.fr.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:12:41 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:41 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:41 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:41 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:41 tcp:127.0.0.1:11166 accepted tcp:speedtest.milkywan.fr.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:12:41 [Info] [3301973370] proxy/socks: TCP Connect request to tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 2023/02/13 15:12:41 [Info] [3301973370] app/dispatcher: sniffed domain: speedtest.sewan.fr.prod.hosts.ooklaserver.net 2023/02/13 15:12:41 [Info] [3301973370] app/dispatcher: taking detour [proxy] for [tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:12:41 [Info] [3301973370] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:41 [Info] [3301973370] proxy/vmess/outbound: tunneling request to tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:12:41 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:41 [Info] [1926989335] proxy/socks: TCP Connect request to tcp:speedtest.milkywan.fr.prod.hosts.ooklaserver.net:8080 2023/02/13 15:12:41 [Info] [1926989335] app/dispatcher: sniffed domain: speedtest.milkywan.fr.prod.hosts.ooklaserver.net 2023/02/13 15:12:41 [Info] [1926989335] app/dispatcher: taking detour [proxy] for [tcp:speedtest.milkywan.fr.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:12:41 [Info] [1926989335] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:41 [Info] [1926989335] proxy/vmess/outbound: tunneling request to tcp:speedtest.milkywan.fr.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:12:41 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:42 [Info] [2146790216] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > proxy/vmess/outbound: failed to read header > common/drain: common/drain: drained connection > proxy/vmess/encoding: Failed To Decrypt Length > cipher: message authentication failed 2023/02/13 15:12:42 [Info] [2146790216] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:12:42 [Info] [2828691893] proxy/socks: TCP Connect request to tcp:speedtest.mire.sfr.net.prod.hosts.ooklaserver.net:8080 2023/02/13 15:12:42 [Info] [2828691893] app/dispatcher: sniffed domain: speedtest.mire.sfr.net.prod.hosts.ooklaserver.net 2023/02/13 15:12:42 [Info] [2828691893] app/dispatcher: taking detour [proxy] for [tcp:speedtest.mire.sfr.net.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:12:42 [Info] [2828691893] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:42 [Info] [2828691893] proxy/vmess/outbound: tunneling request to tcp:speedtest.mire.sfr.net.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:12:42 tcp:127.0.0.1:11168 accepted tcp:speedtest.mire.sfr.net.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:12:42 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:43 [Info] [4158618225] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > proxy/vmess/outbound: failed to read header > common/drain: common/drain: drained connection > proxy/vmess/encoding: Failed To Decrypt Length > cipher: message authentication failed 2023/02/13 15:12:43 [Info] [4158618225] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:12:43 [Info] [4154521071] proxy/socks: TCP Connect request to tcp:lg-par2.fdcservers.net:8080 2023/02/13 15:12:43 [Info] [4154521071] app/dispatcher: sniffed domain: lg-par2.fdcservers.net 2023/02/13 15:12:43 [Info] [4154521071] app/dispatcher: taking detour [proxy] for [tcp:lg-par2.fdcservers.net:8080] 2023/02/13 15:12:43 [Info] [4154521071] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:43 [Info] [4154521071] proxy/vmess/outbound: tunneling request to tcp:lg-par2.fdcservers.net:8080 via proxy.app:443 2023/02/13 15:12:43 tcp:127.0.0.1:11170 accepted tcp:lg-par2.fdcservers.net:8080 [socks -> proxy] 2023/02/13 15:12:43 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:43 [Info] [34238563] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > proxy/vmess/outbound: failed to read header > common/drain: common/drain: drained connection > proxy/vmess/encoding: Failed To Decrypt Length > cipher: message authentication failed 2023/02/13 15:12:43 [Info] [34238563] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:12:43 [Info] [4166699624] proxy/socks: TCP Connect request to tcp:sp1.asthriona.com.prod.hosts.ooklaserver.net:8080 2023/02/13 15:12:43 [Info] [4166699624] app/dispatcher: sniffed domain: sp1.asthriona.com.prod.hosts.ooklaserver.net 2023/02/13 15:12:43 [Info] [4166699624] app/dispatcher: taking detour [proxy] for [tcp:sp1.asthriona.com.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:12:43 [Info] [4166699624] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:43 [Info] [4166699624] proxy/vmess/outbound: tunneling request to tcp:sp1.asthriona.com.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:12:43 tcp:127.0.0.1:11172 accepted tcp:sp1.asthriona.com.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:12:43 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:44 [Info] [4154521071] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > proxy/vmess/outbound: failed to read header > common/drain: common/drain: drained connection > proxy/vmess/encoding: Failed To Decrypt Length > cipher: message authentication failed 2023/02/13 15:12:44 [Info] [4154521071] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:12:44 [Info] [2828691893] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > proxy/vmess/outbound: failed to read header > common/drain: common/drain: drained connection > proxy/vmess/encoding: Failed To Decrypt Length > cipher: message authentication failed 2023/02/13 15:12:44 [Info] [2828691893] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:12:44 [Info] [4065861633] proxy/socks: TCP Connect request to tcp:speedtest.mire.sfr.net.prod.hosts.ooklaserver.net:8080 2023/02/13 15:12:44 [Info] [4065861633] app/dispatcher: sniffed domain: speedtest.mire.sfr.net.prod.hosts.ooklaserver.net 2023/02/13 15:12:44 [Info] [4065861633] app/dispatcher: taking detour [proxy] for [tcp:speedtest.mire.sfr.net.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:12:44 [Info] [4065861633] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:44 [Info] [4065861633] proxy/vmess/outbound: tunneling request to tcp:speedtest.mire.sfr.net.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:12:44 tcp:127.0.0.1:11175 accepted tcp:speedtest.mire.sfr.net.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:12:44 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:44 [Info] [2511336193] proxy/socks: TCP Connect request to tcp:lg-par2.fdcservers.net:8080 2023/02/13 15:12:44 [Info] [2511336193] app/dispatcher: sniffed domain: lg-par2.fdcservers.net 2023/02/13 15:12:44 [Info] [2511336193] app/dispatcher: taking detour [proxy] for [tcp:lg-par2.fdcservers.net:8080] 2023/02/13 15:12:44 [Info] [2511336193] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:44 [Info] [2511336193] proxy/vmess/outbound: tunneling request to tcp:lg-par2.fdcservers.net:8080 via proxy.app:443 2023/02/13 15:12:44 tcp:127.0.0.1:11176 accepted tcp:lg-par2.fdcservers.net:8080 [socks -> proxy] 2023/02/13 15:12:44 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:45 [Info] [4065861633] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > proxy/vmess/outbound: failed to read header > common/drain: common/drain: drained connection > proxy/vmess/encoding: Failed To Decrypt Length > cipher: message authentication failed 2023/02/13 15:12:45 [Info] [4065861633] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:12:45 [Info] [3037438413] proxy/socks: TCP Connect request to tcp:speedtest.mire.sfr.net.prod.hosts.ooklaserver.net:8080 2023/02/13 15:12:45 [Info] [3037438413] app/dispatcher: sniffed domain: speedtest.mire.sfr.net.prod.hosts.ooklaserver.net 2023/02/13 15:12:45 [Info] [3037438413] app/dispatcher: taking detour [proxy] for [tcp:speedtest.mire.sfr.net.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:12:45 [Info] [3037438413] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:45 [Info] [3037438413] proxy/vmess/outbound: tunneling request to tcp:speedtest.mire.sfr.net.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:12:45 tcp:127.0.0.1:11180 accepted tcp:speedtest.mire.sfr.net.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:12:45 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:45 [Info] [2511336193] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > proxy/vmess/outbound: failed to read header > common/drain: common/drain: drained connection > proxy/vmess/encoding: Failed To Decrypt Length > cipher: message authentication failed 2023/02/13 15:12:45 [Info] [2511336193] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:12:45 [Info] [555082816] proxy/socks: TCP Connect request to tcp:lg-par2.fdcservers.net:8080 2023/02/13 15:12:45 [Info] [555082816] app/dispatcher: sniffed domain: lg-par2.fdcservers.net 2023/02/13 15:12:45 [Info] [555082816] app/dispatcher: taking detour [proxy] for [tcp:lg-par2.fdcservers.net:8080] 2023/02/13 15:12:45 [Info] [555082816] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:45 [Info] [555082816] proxy/vmess/outbound: tunneling request to tcp:lg-par2.fdcservers.net:8080 via proxy.app:443 2023/02/13 15:12:45 tcp:127.0.0.1:11182 accepted tcp:lg-par2.fdcservers.net:8080 [socks -> proxy] 2023/02/13 15:12:45 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:47 [Info] [3037438413] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > proxy/vmess/outbound: failed to read header > common/drain: common/drain: drained connection > proxy/vmess/encoding: Failed To Decrypt Length > cipher: message authentication failed 2023/02/13 15:12:47 [Info] [3037438413] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:12:47 [Info] [299824057] app/proxyman/inbound: connection ends > proxy/socks: connection ends > context canceled 2023/02/13 15:12:47 [Info] [3660279712] app/proxyman/inbound: connection ends > proxy/socks: connection ends > context canceled 2023/02/13 15:12:47 [Info] [3301973370] app/proxyman/inbound: connection ends > proxy/socks: connection ends > context canceled 2023/02/13 15:12:47 [Info] [2830591709] app/proxyman/inbound: connection ends > proxy/socks: connection ends > context canceled 2023/02/13 15:12:47 [Info] [725729158] app/proxyman/inbound: connection ends > proxy/socks: connection ends > context canceled 2023/02/13 15:12:47 [Info] [2280985413] app/proxyman/inbound: connection ends > proxy/socks: connection ends > context canceled 2023/02/13 15:12:47 [Info] [487687699] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > proxy/vmess/outbound: failed to read header > common/drain: common/drain: unable to drain connection > websocket: close 1000 (normal) > proxy/vmess/encoding: Unable to Read Header Len > websocket: close 1000 (normal) 2023/02/13 15:12:47 [Info] [487687699] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:12:47 [Info] [1926989335] app/proxyman/inbound: connection ends > proxy/socks: connection ends > context canceled 2023/02/13 15:12:48 [Info] [4166699624] app/proxyman/inbound: connection ends > proxy/socks: connection ends > context canceled 2023/02/13 15:12:49 [Info] [341277397] proxy/socks: TCP Connect request to tcp:192.168.31.1:8080 2023/02/13 15:12:49 [Info] [341277397] app/dispatcher: sniffed domain: 192.168.31.1 2023/02/13 15:12:49 [Info] [341277397] app/dispatcher: taking detour [proxy] for [tcp:192.168.31.1:8080] 2023/02/13 15:12:49 [Info] [341277397] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:49 [Info] [341277397] proxy/vmess/outbound: tunneling request to tcp:192.168.31.1:8080 via proxy.app:443 2023/02/13 15:12:49 tcp:127.0.0.1:11185 accepted tcp:192.168.31.1:8080 [socks -> proxy] 2023/02/13 15:12:49 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:49 [Info] [3326602054] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > websocket: close 1006 (abnormal closure): unexpected EOF 2023/02/13 15:12:49 [Info] [3326602054] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:12:50 [Info] [3632390339] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > websocket: close 1006 (abnormal closure): unexpected EOF 2023/02/13 15:12:50 [Info] [3632390339] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:12:51 [Info] [3851963512] proxy/socks: TCP Connect request to tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 2023/02/13 15:12:51 [Info] [3851963512] app/dispatcher: sniffed domain: speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net 2023/02/13 15:12:51 tcp:127.0.0.1:11188 accepted tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:12:51 [Info] [3851963512] app/dispatcher: taking detour [proxy] for [tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:12:51 [Info] [3851963512] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:51 [Info] [3851963512] proxy/vmess/outbound: tunneling request to tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:12:51 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:55 [Info] [341277397] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > proxy/vmess/outbound: failed to read header > common/drain: common/drain: unable to drain connection > websocket: close 1000 (normal) > proxy/vmess/encoding: Unable to Read Header Len > websocket: close 1000 (normal) 2023/02/13 15:12:55 [Info] [341277397] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:12:57 [Info] [1770425975] proxy/socks: TCP Connect request to tcp:edge.microsoft.com:443 2023/02/13 15:12:57 [Info] [1770425975] app/dispatcher: sniffed domain: edge.microsoft.com 2023/02/13 15:12:57 [Info] [1770425975] app/dispatcher: taking detour [proxy] for [tcp:edge.microsoft.com:443] 2023/02/13 15:12:57 [Info] [1770425975] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:57 [Info] [1770425975] proxy/vmess/outbound: tunneling request to tcp:edge.microsoft.com:443 via proxy.app:443 2023/02/13 15:12:57 tcp:127.0.0.1:11197 accepted tcp:edge.microsoft.com:443 [socks -> proxy] 2023/02/13 15:12:57 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:58 [Info] [3851963512] app/proxyman/inbound: connection ends > proxy/socks: connection ends > context canceled 2023/02/13 15:12:58 [Info] [289211224] proxy/socks: TCP Connect request to tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 2023/02/13 15:12:58 [Info] [289211224] app/dispatcher: sniffed domain: speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net 2023/02/13 15:12:58 [Info] [289211224] app/dispatcher: taking detour [proxy] for [tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:12:58 [Info] [289211224] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:58 [Info] [289211224] proxy/vmess/outbound: tunneling request to tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:12:58 tcp:127.0.0.1:11200 accepted tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:12:58 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:58 [Info] [11081846] proxy/socks: TCP Connect request to tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 2023/02/13 15:12:58 [Info] [11081846] app/dispatcher: sniffed domain: speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net 2023/02/13 15:12:58 [Info] [11081846] app/dispatcher: taking detour [proxy] for [tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:12:58 [Info] [11081846] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:58 [Info] [11081846] proxy/vmess/outbound: tunneling request to tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:12:58 tcp:127.0.0.1:11201 accepted tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:12:58 [Info] [2350682502] proxy/socks: TCP Connect request to tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 2023/02/13 15:12:58 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:58 [Info] [1908889332] proxy/socks: TCP Connect request to tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 2023/02/13 15:12:58 [Info] [2350682502] app/dispatcher: sniffed domain: speedtest.sewan.fr.prod.hosts.ooklaserver.net 2023/02/13 15:12:58 [Info] [2350682502] app/dispatcher: taking detour [proxy] for [tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:12:58 [Info] [2350682502] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:58 [Info] [2350682502] proxy/vmess/outbound: tunneling request to tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:12:58 tcp:127.0.0.1:11203 accepted tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:12:58 [Info] [1908889332] app/dispatcher: sniffed domain: speedtest.lekloud.net.prod.hosts.ooklaserver.net 2023/02/13 15:12:58 [Info] [1908889332] app/dispatcher: taking detour [proxy] for [tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:12:58 [Info] [1908889332] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:58 tcp:127.0.0.1:11204 accepted tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:12:58 [Info] [1908889332] proxy/vmess/outbound: tunneling request to tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:12:58 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:58 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:59 [Info] [11081846] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > proxy/vmess/outbound: failed to read header > common/drain: common/drain: drained connection > proxy/vmess/encoding: Failed To Decrypt Length > cipher: message authentication failed 2023/02/13 15:12:59 [Info] [11081846] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:12:59 [Info] [1672658026] proxy/socks: TCP Connect request to tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 2023/02/13 15:12:59 [Info] [1672658026] app/dispatcher: sniffed domain: speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net 2023/02/13 15:12:59 tcp:127.0.0.1:11208 accepted tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:12:59 [Info] [1672658026] app/dispatcher: taking detour [proxy] for [tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:12:59 [Info] [1672658026] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:59 [Info] [1672658026] proxy/vmess/outbound: tunneling request to tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:12:59 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:12:59 [Info] [2350682502] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > proxy/vmess/outbound: failed to read header > common/drain: common/drain: drained connection > proxy/vmess/encoding: Failed To Decrypt Length > cipher: message authentication failed 2023/02/13 15:12:59 [Info] [2350682502] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:12:59 [Info] [20142473] proxy/socks: TCP Connect request to tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 2023/02/13 15:12:59 [Info] [20142473] app/dispatcher: sniffed domain: speedtest.sewan.fr.prod.hosts.ooklaserver.net 2023/02/13 15:12:59 [Info] [20142473] app/dispatcher: taking detour [proxy] for [tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:12:59 tcp:127.0.0.1:11210 accepted tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:12:59 [Info] [20142473] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:12:59 [Info] [20142473] proxy/vmess/outbound: tunneling request to tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:12:59 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:13:01 [Info] [1672658026] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > proxy/vmess/outbound: failed to read header > common/drain: common/drain: drained connection > proxy/vmess/encoding: Failed To Decrypt Length > cipher: message authentication failed 2023/02/13 15:13:01 [Info] [1672658026] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:13:04 [Info] [476943565] proxy/socks: TCP Connect request to tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 2023/02/13 15:13:04 [Info] [476943565] app/dispatcher: sniffed domain: speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net 2023/02/13 15:13:04 [Info] [476943565] app/dispatcher: taking detour [proxy] for [tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:13:04 [Info] [476943565] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:13:04 [Info] [476943565] proxy/vmess/outbound: tunneling request to tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:13:04 tcp:127.0.0.1:11214 accepted tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:13:04 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:13:05 [Info] [1837868866] app/proxyman/inbound: connection ends > proxy/socks: connection ends > context canceled 2023/02/13 15:13:05 [Info] [938791135] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > websocket: close 1006 (abnormal closure): unexpected EOF 2023/02/13 15:13:05 [Info] [938791135] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:13:05 [Info] [4084560837] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > websocket: close 1006 (abnormal closure): unexpected EOF 2023/02/13 15:13:05 [Info] [4084560837] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:13:05 [Info] [528578751] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > websocket: close 1006 (abnormal closure): unexpected EOF 2023/02/13 15:13:05 [Info] [528578751] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:13:08 [Info] [1413904101] proxy/socks: TCP Connect request to tcp:a.nel.cloudflare.com:443 2023/02/13 15:13:08 [Info] [1413904101] app/dispatcher: sniffed domain: a.nel.cloudflare.com 2023/02/13 15:13:08 [Info] [1413904101] app/dispatcher: taking detour [proxy] for [tcp:a.nel.cloudflare.com:443] 2023/02/13 15:13:08 [Info] [1413904101] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:13:08 [Info] [1413904101] proxy/vmess/outbound: tunneling request to tcp:a.nel.cloudflare.com:443 via proxy.app:443 2023/02/13 15:13:08 tcp:127.0.0.1:11220 accepted tcp:a.nel.cloudflare.com:443 [socks -> proxy] 2023/02/13 15:13:08 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:13:11 [Info] [3026059381] proxy/socks: TCP Connect request to tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 2023/02/13 15:13:11 [Info] [3026059381] app/dispatcher: sniffed domain: speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net 2023/02/13 15:13:11 [Info] [3026059381] app/dispatcher: taking detour [proxy] for [tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:13:11 [Info] [3026059381] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:13:11 [Info] [3026059381] proxy/vmess/outbound: tunneling request to tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:13:11 tcp:127.0.0.1:11223 accepted tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:13:11 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:13:11 [Info] [3129848618] proxy/socks: TCP Connect request to tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 2023/02/13 15:13:11 [Info] [33364476] proxy/socks: TCP Connect request to tcp:lg-par2.fdcservers.net:8080 2023/02/13 15:13:11 [Info] [33364476] app/dispatcher: sniffed domain: lg-par2.fdcservers.net 2023/02/13 15:13:11 [Info] [33364476] app/dispatcher: taking detour [proxy] for [tcp:lg-par2.fdcservers.net:8080] 2023/02/13 15:13:11 [Info] [33364476] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:13:11 [Info] [33364476] proxy/vmess/outbound: tunneling request to tcp:lg-par2.fdcservers.net:8080 via proxy.app:443 2023/02/13 15:13:11 tcp:127.0.0.1:11225 accepted tcp:lg-par2.fdcservers.net:8080 [socks -> proxy] 2023/02/13 15:13:11 [Info] [1793551169] proxy/socks: TCP Connect request to tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 2023/02/13 15:13:11 [Info] [3129848618] app/dispatcher: sniffed domain: speedtest.sewan.fr.prod.hosts.ooklaserver.net 2023/02/13 15:13:11 [Info] [3129848618] app/dispatcher: taking detour [proxy] for [tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:13:11 [Info] [3129848618] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:13:11 [Info] [3129848618] proxy/vmess/outbound: tunneling request to tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:13:11 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:13:11 tcp:127.0.0.1:11224 accepted tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:13:11 tcp:127.0.0.1:11227 accepted tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:13:11 [Info] [1793551169] app/dispatcher: sniffed domain: speedtest.lekloud.net.prod.hosts.ooklaserver.net 2023/02/13 15:13:11 [Info] [1793551169] app/dispatcher: taking detour [proxy] for [tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:13:11 [Info] [1793551169] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:13:11 [Info] [1793551169] proxy/vmess/outbound: tunneling request to tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:13:11 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:13:11 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:13:12 [Info] [2367099397] proxy/socks: TCP Connect request to tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 2023/02/13 15:13:12 [Info] [2367099397] app/dispatcher: sniffed domain: speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net 2023/02/13 15:13:12 tcp:127.0.0.1:11232 accepted tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:13:12 [Info] [2367099397] app/dispatcher: taking detour [proxy] for [tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:13:12 [Info] [2367099397] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:13:12 [Info] [2367099397] proxy/vmess/outbound: tunneling request to tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:13:12 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:13:12 [Info] [4073947183] proxy/socks: TCP Connect request to tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 2023/02/13 15:13:12 [Info] [4073947183] app/dispatcher: sniffed domain: speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net 2023/02/13 15:13:12 tcp:127.0.0.1:11233 accepted tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:13:12 [Info] [4073947183] app/dispatcher: taking detour [proxy] for [tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:13:12 [Info] [4073947183] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:13:12 [Info] [4073947183] proxy/vmess/outbound: tunneling request to tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:13:12 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:13:12 [Info] [600488547] proxy/socks: TCP Connect request to tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 2023/02/13 15:13:12 [Info] [600488547] app/dispatcher: sniffed domain: speedtest.sewan.fr.prod.hosts.ooklaserver.net 2023/02/13 15:13:12 [Info] [600488547] app/dispatcher: taking detour [proxy] for [tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:13:12 [Info] [600488547] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:13:12 [Info] [600488547] proxy/vmess/outbound: tunneling request to tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:13:12 tcp:127.0.0.1:11236 accepted tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:13:12 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:13:12 [Info] [216107964] proxy/socks: TCP Connect request to tcp:lg-par2.fdcservers.net:8080 2023/02/13 15:13:12 [Info] [216107964] app/dispatcher: sniffed domain: lg-par2.fdcservers.net 2023/02/13 15:13:12 [Info] [216107964] app/dispatcher: taking detour [proxy] for [tcp:lg-par2.fdcservers.net:8080] 2023/02/13 15:13:12 [Info] [216107964] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:13:12 [Info] [216107964] proxy/vmess/outbound: tunneling request to tcp:lg-par2.fdcservers.net:8080 via proxy.app:443 2023/02/13 15:13:12 tcp:127.0.0.1:11238 accepted tcp:lg-par2.fdcservers.net:8080 [socks -> proxy] 2023/02/13 15:13:12 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:13:12 [Info] [686687561] proxy/socks: TCP Connect request to tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 2023/02/13 15:13:12 [Info] [686687561] app/dispatcher: sniffed domain: speedtest.lekloud.net.prod.hosts.ooklaserver.net 2023/02/13 15:13:12 [Info] [686687561] app/dispatcher: taking detour [proxy] for [tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:13:12 [Info] [686687561] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:13:12 [Info] [686687561] proxy/vmess/outbound: tunneling request to tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:13:12 tcp:127.0.0.1:11240 accepted tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:13:12 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:13:12 [Info] [3129848618] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > proxy/vmess/outbound: failed to read header > common/drain: common/drain: drained connection > proxy/vmess/encoding: Failed To Decrypt Length > cipher: message authentication failed 2023/02/13 15:13:12 [Info] [3129848618] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:13:12 [Info] [927642814] proxy/socks: TCP Connect request to tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 2023/02/13 15:13:12 [Info] [927642814] app/dispatcher: sniffed domain: speedtest.sewan.fr.prod.hosts.ooklaserver.net 2023/02/13 15:13:12 [Info] [927642814] app/dispatcher: taking detour [proxy] for [tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:13:12 [Info] [927642814] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:13:12 tcp:127.0.0.1:11242 accepted tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:13:12 [Info] [927642814] proxy/vmess/outbound: tunneling request to tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:13:12 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:13:12 [Info] [2459104040] proxy/socks: TCP Connect request to tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 2023/02/13 15:13:12 [Info] [2459104040] app/dispatcher: sniffed domain: speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net 2023/02/13 15:13:12 [Info] [2459104040] app/dispatcher: taking detour [proxy] for [tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:13:12 [Info] [2459104040] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:13:12 [Info] [2459104040] proxy/vmess/outbound: tunneling request to tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:13:12 tcp:127.0.0.1:11244 accepted tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:13:12 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:13:13 [Info] [2002156825] proxy/socks: TCP Connect request to tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 2023/02/13 15:13:13 [Info] [2002156825] app/dispatcher: sniffed domain: speedtest.sewan.fr.prod.hosts.ooklaserver.net 2023/02/13 15:13:13 [Info] [2002156825] app/dispatcher: taking detour [proxy] for [tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:13:13 [Info] [2002156825] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:13:13 [Info] [2002156825] proxy/vmess/outbound: tunneling request to tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:13:13 tcp:127.0.0.1:11246 accepted tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:13:13 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:13:13 [Info] [1789286717] proxy/socks: TCP Connect request to tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 2023/02/13 15:13:13 [Info] [1789286717] app/dispatcher: sniffed domain: speedtest.lekloud.net.prod.hosts.ooklaserver.net 2023/02/13 15:13:13 [Info] [1789286717] app/dispatcher: taking detour [proxy] for [tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:13:13 [Info] [1789286717] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:13:13 [Info] [1789286717] proxy/vmess/outbound: tunneling request to tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:13:13 tcp:127.0.0.1:11248 accepted tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:13:13 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:13:13 [Info] [4073947183] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > proxy/vmess/outbound: failed to read header > common/drain: common/drain: drained connection > proxy/vmess/encoding: Failed To Decrypt Length > cipher: message authentication failed 2023/02/13 15:13:13 [Info] [4073947183] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:13:13 [Info] [3480927556] proxy/socks: TCP Connect request to tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 2023/02/13 15:13:13 [Info] [3480927556] app/dispatcher: sniffed domain: speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net 2023/02/13 15:13:13 [Info] [3480927556] app/dispatcher: taking detour [proxy] for [tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:13:13 [Info] [3480927556] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:13:13 [Info] [3480927556] proxy/vmess/outbound: tunneling request to tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:13:13 tcp:127.0.0.1:11250 accepted tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:13:13 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:13:13 [Info] [4113319662] proxy/socks: TCP Connect request to tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 2023/02/13 15:13:13 [Info] [4113319662] app/dispatcher: sniffed domain: speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net 2023/02/13 15:13:13 [Info] [4113319662] app/dispatcher: taking detour [proxy] for [tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:13:13 [Info] [4113319662] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:13:13 tcp:127.0.0.1:11252 accepted tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:13:13 [Info] [4113319662] proxy/vmess/outbound: tunneling request to tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:13:13 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:13:13 [Info] [600488547] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > proxy/vmess/outbound: failed to read header > common/drain: common/drain: drained connection > proxy/vmess/encoding: Failed To Decrypt Length > cipher: message authentication failed 2023/02/13 15:13:13 [Info] [600488547] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:13:13 [Info] [114607372] proxy/socks: TCP Connect request to tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 2023/02/13 15:13:13 [Info] [114607372] app/dispatcher: sniffed domain: speedtest.sewan.fr.prod.hosts.ooklaserver.net 2023/02/13 15:13:13 [Info] [114607372] app/dispatcher: taking detour [proxy] for [tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:13:13 [Info] [114607372] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:13:13 [Info] [114607372] proxy/vmess/outbound: tunneling request to tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:13:13 tcp:127.0.0.1:11254 accepted tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:13:13 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:13:13 [Info] [1246260940] proxy/socks: TCP Connect request to tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 2023/02/13 15:13:13 [Info] [1246260940] app/dispatcher: sniffed domain: speedtest.lekloud.net.prod.hosts.ooklaserver.net 2023/02/13 15:13:13 [Info] [1246260940] app/dispatcher: taking detour [proxy] for [tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:13:13 [Info] [1246260940] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:13:13 [Info] [1246260940] proxy/vmess/outbound: tunneling request to tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:13:13 tcp:127.0.0.1:11256 accepted tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:13:13 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:13:13 [Info] [1637880748] proxy/socks: TCP Connect request to tcp:lg-par2.fdcservers.net:8080 2023/02/13 15:13:13 [Info] [1637880748] app/dispatcher: sniffed domain: lg-par2.fdcservers.net 2023/02/13 15:13:13 [Info] [1637880748] app/dispatcher: taking detour [proxy] for [tcp:lg-par2.fdcservers.net:8080] 2023/02/13 15:13:13 [Info] [1637880748] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:13:13 [Info] [1637880748] proxy/vmess/outbound: tunneling request to tcp:lg-par2.fdcservers.net:8080 via proxy.app:443 2023/02/13 15:13:13 tcp:127.0.0.1:11259 accepted tcp:lg-par2.fdcservers.net:8080 [socks -> proxy] 2023/02/13 15:13:13 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:13:13 [Info] [3781825460] proxy/socks: TCP Connect request to tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 2023/02/13 15:13:13 [Info] [3781825460] app/dispatcher: sniffed domain: speedtest.lekloud.net.prod.hosts.ooklaserver.net 2023/02/13 15:13:13 [Info] [3781825460] app/dispatcher: taking detour [proxy] for [tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:13:13 [Info] [3781825460] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:13:13 tcp:127.0.0.1:11261 accepted tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:13:13 [Info] [3781825460] proxy/vmess/outbound: tunneling request to tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:13:13 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:13:14 [Info] [1069518042] proxy/socks: TCP Connect request to tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 2023/02/13 15:13:14 [Info] [418482778] proxy/socks: TCP Connect request to tcp:lg-par2.fdcservers.net:8080 2023/02/13 15:13:14 [Info] [1069518042] app/dispatcher: sniffed domain: speedtest.sewan.fr.prod.hosts.ooklaserver.net 2023/02/13 15:13:14 [Info] [1069518042] app/dispatcher: taking detour [proxy] for [tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:13:14 [Info] [1069518042] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:13:14 [Info] [1069518042] proxy/vmess/outbound: tunneling request to tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:13:14 [Info] [544074813] proxy/socks: TCP Connect request to tcp:lg-par2.fdcservers.net:8080 2023/02/13 15:13:14 tcp:127.0.0.1:11263 accepted tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:13:14 tcp:127.0.0.1:11265 accepted tcp:lg-par2.fdcservers.net:8080 [socks -> proxy] 2023/02/13 15:13:14 tcp:127.0.0.1:11264 accepted tcp:lg-par2.fdcservers.net:8080 [socks -> proxy] 2023/02/13 15:13:14 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:13:14 [Info] [418482778] app/dispatcher: sniffed domain: lg-par2.fdcservers.net 2023/02/13 15:13:14 [Info] [418482778] app/dispatcher: taking detour [proxy] for [tcp:lg-par2.fdcservers.net:8080] 2023/02/13 15:13:14 [Info] [418482778] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:13:14 [Info] [418482778] proxy/vmess/outbound: tunneling request to tcp:lg-par2.fdcservers.net:8080 via proxy.app:443 2023/02/13 15:13:14 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:13:14 [Info] [544074813] app/dispatcher: sniffed domain: lg-par2.fdcservers.net 2023/02/13 15:13:14 [Info] [544074813] app/dispatcher: taking detour [proxy] for [tcp:lg-par2.fdcservers.net:8080] 2023/02/13 15:13:14 [Info] [544074813] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:13:14 [Info] [544074813] proxy/vmess/outbound: tunneling request to tcp:lg-par2.fdcservers.net:8080 via proxy.app:443 2023/02/13 15:13:14 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:13:14 [Info] [1750543968] proxy/socks: TCP Connect request to tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 2023/02/13 15:13:14 [Info] [1750543968] app/dispatcher: sniffed domain: speedtest.sewan.fr.prod.hosts.ooklaserver.net 2023/02/13 15:13:14 [Info] [1750543968] app/dispatcher: taking detour [proxy] for [tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:13:14 [Info] [1750543968] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:13:14 [Info] [1750543968] proxy/vmess/outbound: tunneling request to tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:13:14 tcp:127.0.0.1:11269 accepted tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:13:14 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:13:14 [Info] [1789286717] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > proxy/vmess/outbound: failed to read header > common/drain: common/drain: drained connection > proxy/vmess/encoding: Failed To Decrypt Length > cipher: message authentication failed 2023/02/13 15:13:14 [Info] [1789286717] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:13:14 [Info] [3755644385] proxy/socks: TCP Connect request to tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 2023/02/13 15:13:14 [Info] [3755644385] app/dispatcher: sniffed domain: speedtest.lekloud.net.prod.hosts.ooklaserver.net 2023/02/13 15:13:14 [Info] [3755644385] app/dispatcher: taking detour [proxy] for [tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:13:14 [Info] [3755644385] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:13:14 [Info] [3755644385] proxy/vmess/outbound: tunneling request to tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:13:14 tcp:127.0.0.1:11271 accepted tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:13:14 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:13:14 [Info] [2002156825] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > proxy/vmess/outbound: failed to read header > common/drain: common/drain: drained connection > proxy/vmess/encoding: Failed To Decrypt Length > cipher: message authentication failed 2023/02/13 15:13:14 [Info] [2002156825] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:13:14 [Info] [3911904120] proxy/socks: TCP Connect request to tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 2023/02/13 15:13:14 [Info] [3911904120] app/dispatcher: sniffed domain: speedtest.sewan.fr.prod.hosts.ooklaserver.net 2023/02/13 15:13:14 [Info] [3911904120] app/dispatcher: taking detour [proxy] for [tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:13:14 [Info] [3911904120] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:13:14 [Info] [3911904120] proxy/vmess/outbound: tunneling request to tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:13:14 tcp:127.0.0.1:11273 accepted tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:13:14 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:13:15 [Info] [2044592509] app/proxyman/inbound: connection ends > proxy/socks: connection ends > context canceled 2023/02/13 15:13:15 [Info] [4015195873] app/proxyman/inbound: connection ends > proxy/socks: connection ends > context canceled 2023/02/13 15:13:15 [Info] [3781825460] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > proxy/vmess/outbound: failed to read header > common/drain: common/drain: drained connection > proxy/vmess/encoding: Failed To Decrypt Length > cipher: message authentication failed 2023/02/13 15:13:15 [Info] [3781825460] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:13:15 [Info] [382970405] proxy/socks: TCP Connect request to tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 2023/02/13 15:13:15 tcp:127.0.0.1:11275 accepted tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:13:15 [Info] [382970405] app/dispatcher: sniffed domain: speedtest.lekloud.net.prod.hosts.ooklaserver.net 2023/02/13 15:13:15 [Info] [382970405] app/dispatcher: taking detour [proxy] for [tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:13:15 [Info] [382970405] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:13:15 [Info] [382970405] proxy/vmess/outbound: tunneling request to tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:13:15 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:13:15 [Info] [544074813] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > proxy/vmess/outbound: failed to read header > common/drain: common/drain: drained connection > proxy/vmess/encoding: Failed To Decrypt Length > cipher: message authentication failed 2023/02/13 15:13:15 [Info] [544074813] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:13:15 [Info] [1095775069] proxy/socks: TCP Connect request to tcp:lg-par2.fdcservers.net:8080 2023/02/13 15:13:15 [Info] [1095775069] app/dispatcher: sniffed domain: lg-par2.fdcservers.net 2023/02/13 15:13:15 [Info] [1095775069] app/dispatcher: taking detour [proxy] for [tcp:lg-par2.fdcservers.net:8080] 2023/02/13 15:13:15 [Info] [1095775069] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:13:15 [Info] [1095775069] proxy/vmess/outbound: tunneling request to tcp:lg-par2.fdcservers.net:8080 via proxy.app:443 2023/02/13 15:13:15 tcp:127.0.0.1:11277 accepted tcp:lg-par2.fdcservers.net:8080 [socks -> proxy] 2023/02/13 15:13:15 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:13:15 [Info] [1069518042] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > proxy/vmess/outbound: failed to read header > common/drain: common/drain: drained connection > proxy/vmess/encoding: Failed To Decrypt Length > cipher: message authentication failed 2023/02/13 15:13:15 [Info] [1069518042] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:13:15 [Info] [4160533151] proxy/socks: TCP Connect request to tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 2023/02/13 15:13:15 [Info] [4160533151] app/dispatcher: sniffed domain: speedtest.sewan.fr.prod.hosts.ooklaserver.net 2023/02/13 15:13:15 [Info] [4160533151] app/dispatcher: taking detour [proxy] for [tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:13:15 tcp:127.0.0.1:11279 accepted tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:13:15 [Info] [4160533151] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:13:15 [Info] [4160533151] proxy/vmess/outbound: tunneling request to tcp:speedtest.sewan.fr.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:13:15 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:13:16 [Info] [382970405] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > proxy/vmess/outbound: failed to read header > common/drain: common/drain: drained connection > proxy/vmess/encoding: Failed To Decrypt Length > cipher: message authentication failed 2023/02/13 15:13:16 [Info] [382970405] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:13:18 [Info] [4038832564] proxy/socks: TCP Connect request to tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 2023/02/13 15:13:18 [Info] [4038832564] app/dispatcher: sniffed domain: speedtest.lekloud.net.prod.hosts.ooklaserver.net 2023/02/13 15:13:18 [Info] [4038832564] app/dispatcher: taking detour [proxy] for [tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:13:18 [Info] [4038832564] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:13:18 [Info] [4038832564] proxy/vmess/outbound: tunneling request to tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:13:18 tcp:127.0.0.1:11283 accepted tcp:speedtest.lekloud.net.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:13:18 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:13:20 [Info] [114607372] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > wsasend tcp 127.0.0.1:10808->127.0.0.1:11254: wsasend: An established connection was aborted by the software in your host machine. 2023/02/13 15:13:20 [Info] [3026059381] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > wsasend tcp 127.0.0.1:10808->127.0.0.1:11223: wsasend: An established connection was aborted by the software in your host machine. 2023/02/13 15:13:20 [Info] [216107964] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > wsasend tcp 127.0.0.1:10808->127.0.0.1:11238: wsasend: An established connection was aborted by the software in your host machine. 2023/02/13 15:13:20 [Info] [1246260940] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > wsasend tcp 127.0.0.1:10808->127.0.0.1:11256: wsasend: An established connection was aborted by the software in your host machine. 2023/02/13 15:13:20 [Info] [2459104040] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > wsasend tcp 127.0.0.1:10808->127.0.0.1:11244: wsasend: An established connection was aborted by the software in your host machine. 2023/02/13 15:13:20 [Info] [20142473] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > wsasend tcp 127.0.0.1:10808->127.0.0.1:11210: wsasend: An established connection was aborted by the software in your host machine. 2023/02/13 15:13:20 [Info] [4113319662] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > wsasend tcp 127.0.0.1:10808->127.0.0.1:11252: wsasend: An established connection was aborted by the software in your host machine. 2023/02/13 15:13:20 [Info] [555082816] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > wsasend tcp 127.0.0.1:10808->127.0.0.1:11182: wsasend: An established connection was aborted by the software in your host machine. 2023/02/13 15:13:20 [Info] [3480927556] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > wsasend tcp 127.0.0.1:10808->127.0.0.1:11250: wsasend: An established connection was aborted by the software in your host machine. 2023/02/13 15:13:20 [Info] [1750543968] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > wsasend tcp 127.0.0.1:10808->127.0.0.1:11269: wsasend: An established connection was aborted by the software in your host machine. 2023/02/13 15:13:20 [Info] [3911904120] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > wsasend tcp 127.0.0.1:10808->127.0.0.1:11273: wsasend: An established connection was aborted by the software in your host machine. 2023/02/13 15:13:20 [Info] [1908889332] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > wsasend tcp 127.0.0.1:10808->127.0.0.1:11204: wsasend: An established connection was aborted by the software in your host machine. 2023/02/13 15:13:20 [Info] [33364476] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > wsasend tcp 127.0.0.1:10808->127.0.0.1:11225: wsasend: An established connection was aborted by the software in your host machine. 2023/02/13 15:13:20 [Info] [476943565] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > wsasend tcp 127.0.0.1:10808->127.0.0.1:11214: wsasend: An established connection was aborted by the software in your host machine. 2023/02/13 15:13:20 [Info] [3755644385] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > wsasend tcp 127.0.0.1:10808->127.0.0.1:11271: wsasend: An established connection was aborted by the software in your host machine. 2023/02/13 15:13:21 [Info] [4038832564] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > write tcp 127.0.0.1:10808->127.0.0.1:11283: wsasend: An established connection was aborted by the software in your host machine. 2023/02/13 15:13:21 [Info] [898646671] proxy/socks: TCP Connect request to tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 2023/02/13 15:13:21 [Info] [898646671] app/dispatcher: sniffed domain: speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net 2023/02/13 15:13:21 [Info] [898646671] app/dispatcher: taking detour [proxy] for [tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:13:21 [Info] [898646671] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:13:21 [Info] [898646671] proxy/vmess/outbound: tunneling request to tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:13:21 tcp:127.0.0.1:11302 accepted tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:13:21 [Info] [3299042420] proxy/socks: TCP Connect request to tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 2023/02/13 15:13:21 [Info] [3299042420] app/dispatcher: sniffed domain: speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net 2023/02/13 15:13:21 [Info] [3299042420] app/dispatcher: taking detour [proxy] for [tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080] 2023/02/13 15:13:21 [Info] [3299042420] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:13:21 [Info] [3299042420] proxy/vmess/outbound: tunneling request to tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 via proxy.app:443 2023/02/13 15:13:21 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:13:21 tcp:127.0.0.1:11303 accepted tcp:speedtest-ookla-par.as62000.net.prod.hosts.ooklaserver.net:8080 [socks -> proxy] 2023/02/13 15:13:21 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:13:22 [Info] [289211224] app/proxyman/inbound: connection ends > proxy/socks: connection ends > context canceled 2023/02/13 15:13:22 [Info] [1986996964] proxy/socks: TCP Connect request to tcp:192.168.31.1:8080 2023/02/13 15:13:22 [Info] [1986996964] app/dispatcher: sniffed domain: 192.168.31.1 2023/02/13 15:13:22 [Info] [1986996964] app/dispatcher: taking detour [proxy] for [tcp:192.168.31.1:8080] 2023/02/13 15:13:22 [Info] [1986996964] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:13:22 [Info] [1986996964] proxy/vmess/outbound: tunneling request to tcp:192.168.31.1:8080 via proxy.app:443 2023/02/13 15:13:22 tcp:127.0.0.1:11316 accepted tcp:192.168.31.1:8080 [socks -> proxy] 2023/02/13 15:13:22 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:13:23 [Info] [3705705522] proxy/socks: TCP Connect request to tcp:192.168.31.1:8080 2023/02/13 15:13:23 [Info] [3705705522] app/dispatcher: sniffed domain: 192.168.31.1 2023/02/13 15:13:23 [Info] [3705705522] app/dispatcher: taking detour [proxy] for [tcp:192.168.31.1:8080] 2023/02/13 15:13:23 [Info] [3705705522] transport/internet/websocket: creating connection to tcp:proxy.app:443 2023/02/13 15:13:23 tcp:127.0.0.1:11326 accepted tcp:192.168.31.1:8080 [socks -> proxy] 2023/02/13 15:13:23 [Info] [3705705522] proxy/vmess/outbound: tunneling request to tcp:192.168.31.1:8080 via proxy.app:443 2023/02/13 15:13:23 [Debug] transport/internet: dialing to tcp:proxy.app:443 2023/02/13 15:13:29 [Info] [1986996964] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > proxy/vmess/outbound: failed to read header > common/drain: common/drain: unable to drain connection > websocket: close 1000 (normal) > proxy/vmess/encoding: Unable to Read Header Len > websocket: close 1000 (normal) 2023/02/13 15:13:29 [Info] [1986996964] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:13:31 [Info] [3705705522] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > transport/internet/websocket: failed to dial WebSocket > transport/internet/websocket: failed to dial to (wss://proxy.app/secret/vm): > read tcp 192.168.31.132:11327->162.159.129.81:443: i/o timeout 2023/02/13 15:13:31 [Info] [3705705522] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:13:33 [Info] [2805762324] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > websocket: close 1006 (abnormal closure): unexpected EOF 2023/02/13 15:13:33 [Info] [2805762324] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:13:33 [Info] [1663480027] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > websocket: close 1006 (abnormal closure): unexpected EOF 2023/02/13 15:13:33 [Info] [1663480027] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:13:34 [Info] [3526685699] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > websocket: close 1006 (abnormal closure): unexpected EOF 2023/02/13 15:13:34 [Info] [3526685699] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:13:34 [Info] [2374202587] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > websocket: close 1006 (abnormal closure): unexpected EOF 2023/02/13 15:13:34 [Info] [2374202587] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:13:35 [Info] [1341300645] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > websocket: close 1006 (abnormal closure): unexpected EOF 2023/02/13 15:13:35 [Info] [1341300645] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:13:35 [Info] [4291950236] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > websocket: close 1006 (abnormal closure): unexpected EOF 2023/02/13 15:13:35 [Info] [4291950236] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2023/02/13 15:13:35 [Info] [1770425975] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > websocket: close 1006 (abnormal closure): unexpected EOF 2023/02/13 15:13:35 [Info] [1770425975] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe ```
nekohasekai commented 1 year ago

尝试使用 sing-box 作为客户端,并检查错误变化并提交日志。

wy580477 commented 1 year ago

尝试使用 sing-box 作为客户端,并检查错误变化并提交日志。

Singbox 客户端完全连不上

客户端配置:

{
  "log": {
    "level": "debug"
  },
  "inbounds": [
    {
      "type": "socks",
      "listen": "::",
      "listen_port": 5353
    }
  ],
  "outbounds": [
    {
      "type": "vmess",
      "server": "proxy.app",
      "server_port": 443,
      "uuid": "myuuid",
      "security": "auto",
      "alter_id": 0,
      "transport": {
        "type": "ws",
        "path": "/secret/vm",
        "max_early_data": 2048,
        "early_data_header_name": "Sec-WebSocket-Protocol"
      },
      "tls": {
        "enabled": true
      }
    }
  ]
}

服务端日志:

INFO[622573] [982621229] inbound/vmess[0]: inbound connection from 1.1.1.1:44480
INFO[622573] [1978293360] inbound/vmess[0]: [0] inbound connection to fonts.googleapis.com:443
INFO[622574] [2827301464] inbound/vmess[0]: inbound connection from 1.1.1.1:44482
INFO[622574] [2932862006] inbound/vmess[0]: [0] inbound connection to www.youtube.com:443
INFO[622574] [1978293360] outbound/direct[direct]: outbound connection to fonts.googleapis.com:443
INFO[622574] [1978293360] dns: lookup succeed for fonts.googleapis.com: 209.85.233.95 2a00:1450:4010:c03::5f
ERROR[622574] [982621229] inbound/vmess[0]: process connection from 1.1.1.1:44480: upload: readfrom tcp 10.10.0.67:46348->209.85.233.95:443: read tcp [::1]:61800->[::1]:44480: i/o timeout | download: read tcp 10.10.0.67:46348->209.85.233.95:443: use of closed network connection
INFO[622574] [2932862006] outbound/direct[direct]: outbound connection to www.youtube.com:443
INFO[622574] [2932862006] dns: lookup succeed for www.youtube.com: 216.58.209.174 216.58.209.206 216.58.210.142 216.58.210.174 2a00:1450:4026:802::200e 2a00:1450:4026:803::200e 2a00:1450:4026:804::200e 2a00:1450:4026:805::200e
ERROR[622574] [2827301464] inbound/vmess[0]: process connection from 1.1.1.1:44482: download: read tcp 10.10.0.67:58496->216.58.209.174:443: use of closed network connection | upload: readfrom tcp 10.10.0.67:58496->216.58.209.174:443: read tcp [::1]:61800->[::1]:44482: i/o timeout
INFO[622574] [2716608812] inbound/vmess[0]: inbound connection from 1.1.1.1:44488
INFO[622574] [3445866287] inbound/vmess[0]: [0] inbound connection to jnn-pa.googleapis.com:443
INFO[622574] [3445866287] outbound/direct[direct]: outbound connection to jnn-pa.googleapis.com:443
INFO[622574] [3445866287] dns: lookup succeed for jnn-pa.googleapis.com: 173.194.222.95 64.233.161.95 209.85.233.95 64.233.164.95 64.233.165.95 142.251.1.95 64.233.162.95 173.194.221.95 2a00:1450:4010:c0a::5f 2a00:1450:4010:c0b::5f 2a00:1450:4010:c01::5f 2a00:1450:4010:c0d::5f
ERROR[622574] [2716608812] inbound/vmess[0]: process connection from 1.1.1.1:44488: download: read tcp 10.10.0.67:41876->173.194.222.95:443: use of closed network connection | upload: readfrom tcp 10.10.0.67:41876->173.194.222.95:443: read tcp [::1]:61800->[::1]:44488: i/o timeout
INFO[622575] [1224488043] inbound/vmess[0]: inbound connection from 1.1.1.1:44492
INFO[622575] [1124331456] inbound/vmess[0]: [0] inbound connection to www.youtube.com:443
INFO[622576] [1124331456] outbound/direct[direct]: outbound connection to www.youtube.com:443
INFO[622576] [1124331456] dns: lookup succeed for www.youtube.com: 216.58.209.174 216.58.209.206 216.58.210.142 216.58.210.174 2a00:1450:4026:802::200e 2a00:1450:4026:803::200e 2a00:1450:4026:804::200e 2a00:1450:4026:805::200e
ERROR[622576] [1224488043] inbound/vmess[0]: process connection from 1.1.1.1:44492: download: read tcp 10.10.0.67:58504->216.58.209.174:443: use of closed network connection | upload: readfrom tcp 10.10.0.67:58504->216.58.209.174:443: read tcp [::1]:61800->[::1]:44492: i/o timeout
INFO[622576] [824965631] inbound/vmess[0]: inbound connection from 1.1.1.1:44496
INFO[622576] [3129183629] inbound/vmess[0]: [0] inbound connection to jnn-pa.googleapis.com:443
INFO[622576] [3129183629] outbound/direct[direct]: outbound connection to jnn-pa.googleapis.com:443
INFO[622576] [3129183629] dns: lookup succeed for jnn-pa.googleapis.com: 173.194.222.95 64.233.161.95 209.85.233.95 64.233.164.95 64.233.165.95 142.251.1.95 64.233.162.95 173.194.221.95 2a00:1450:4010:c0a::5f 2a00:1450:4010:c0b::5f 2a00:1450:4010:c01::5f 2a00:1450:4010:c0d::5f
ERROR[622576] [824965631] inbound/vmess[0]: process connection from 1.1.1.1:44496: download: read tcp 10.10.0.67:41884->173.194.222.95:443: use of closed network connection | upload: readfrom tcp 10.10.0.67:41884->173.194.222.95:443: read tcp [::1]:61800->[::1]:44496: i/o timeout

客户端日志:


DEBUG[0279] [2741477373] dns: lookup domain proxy.app
INFO[0279] [2741477373] dns: lookup succeed for proxy.app: 198.18.6.193
DEBUG[0279] [1547445625] inbound/socks[0]: connection closed: process connection from 127.0.0.1:10986: download: EOF | upload: EOF
INFO[0279] [4169936876] inbound/socks[0]: inbound connection from 127.0.0.1:11002
INFO[0279] [4169936876] inbound/socks[0]: inbound connection to www.youtube.com:443
INFO[0279] [4169936876] outbound/vmess[0]: outbound connection to www.youtube.com:443
DEBUG[0279] [4169936876] dns: lookup domain proxy.app
INFO[0279] [4169936876] dns: lookup succeed for proxy.app: 198.18.6.193
DEBUG[0279] [4279472669] inbound/socks[0]: connection closed: process connection from 127.0.0.1:10980: download: EOF | upload: EOF
DEBUG[0280] [3138500745] inbound/socks[0]: connection closed: process connection from 127.0.0.1:10990: download: EOF | upload: EOF
INFO[0280] [3351305964] inbound/socks[0]: inbound connection from 127.0.0.1:11005
INFO[0280] [3351305964] inbound/socks[0]: inbound connection to fonts.googleapis.com:443
INFO[0280] [3351305964] outbound/vmess[0]: outbound connection to fonts.googleapis.com:443
DEBUG[0280] [3351305964] dns: lookup domain proxy.app
INFO[0280] [3351305964] dns: lookup succeed for proxy.app: 198.18.6.193
INFO[0280] [2681491528] inbound/socks[0]: inbound connection from 127.0.0.1:11007
INFO[0280] [2681491528] inbound/socks[0]: inbound connection to www.youtube.com:443
INFO[0280] [2681491528] outbound/vmess[0]: outbound connection to www.youtube.com:443
DEBUG[0280] [2681491528] dns: lookup domain proxy.app
INFO[0280] [2681491528] dns: lookup succeed for proxy.app: 198.18.6.193
DEBUG[0280] [2744976440] inbound/socks[0]: connection closed: process connection from 127.0.0.1:10992: download: EOF | upload: EOF
DEBUG[0280] [3068841213] inbound/socks[0]: connection closed: process connection from 127.0.0.1:10972: download: EOF | upload: EOF
DEBUG[0280] [2746826764] inbound/socks[0]: connection closed: process connection from 127.0.0.1:10994: download: EOF | upload: EOF
INFO[0280] [1789895395] inbound/socks[0]: inbound connection from 127.0.0.1:11009
INFO[0280] [1789895395] inbound/socks[0]: inbound connection to jnn-pa.googleapis.com:443
INFO[0280] [1789895395] outbound/vmess[0]: outbound connection to jnn-pa.googleapis.com:443
DEBUG[0280] [1789895395] dns: lookup domain proxy.app
INFO[0280] [1789895395] dns: lookup succeed for proxy.app: 198.18.6.193
DEBUG[0281] [4169936876] inbound/socks[0]: connection closed: process connection from 127.0.0.1:11002: download: EOF | upload: EOF
DEBUG[0281] [3882014619] inbound/socks[0]: connection closed: process connection from 127.0.0.1:10996: download: EOF | upload: EOF
DEBUG[0281] [1714051656] inbound/socks[0]: connection closed: process connection from 127.0.0.1:10998: download: EOF | upload: EOF
DEBUG[0281] [2741477373] inbound/socks[0]: connection closed: process connection from 127.0.0.1:11000: download: EOF | upload: EOF
DEBUG[0282] [3351305964] inbound/socks[0]: connection closed: process connection from 127.0.0.1:11005: download: EOF | upload: EOF
DEBUG[0282] [2681491528] inbound/socks[0]: connection closed: process connection from 127.0.0.1:11007: download: EOF | upload: EOF
INFO[0282] [3531423341] inbound/socks[0]: inbound connection from 127.0.0.1:11024
INFO[0282] [3531423341] inbound/socks[0]: inbound connection to www.youtube.com:443
INFO[0282] [3531423341] outbound/vmess[0]: outbound connection to www.youtube.com:443
DEBUG[0282] [3531423341] dns: lookup domain proxy.app
INFO[0282] [3531423341] dns: lookup succeed for proxy.app: 198.18.6.193
DEBUG[0282] [1789895395] inbound/socks[0]: connection closed: process connection from 127.0.0.1:11009: download: EOF | upload: EOF
INFO[0282] [2908755885] inbound/socks[0]: inbound connection from 127.0.0.1:11030
INFO[0282] [2908755885] inbound/socks[0]: inbound connection to jnn-pa.googleapis.com:443
INFO[0282] [2908755885] outbound/vmess[0]: outbound connection to jnn-pa.googleapis.com:443
DEBUG[0282] [2908755885] dns: lookup domain proxy.app
INFO[0282] [2908755885] dns: lookup succeed for proxy.app: 198.18.6.193
DEBUG[0284] [3531423341] inbound/socks[0]: connection closed: process connection from 127.0.0.1:11024: download: EOF | upload: EOF
DEBUG[0284] [2908755885] inbound/socks[0]: connection closed: process connection from 127.0.0.1:11030: download: EOF | upload: EOF
```console
hronro commented 1 year ago

可以复现同样的问题

zcluo commented 1 year ago

我是在v2ray的server caddy tls + vmess + ws。在sing-box_1.2_beta5之后也在客户端报错,出现无法连接情况,日志如下: +0000 2023-03-07 14:05:42 ERROR [1970717734] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64221: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:42 ERROR [2466792384] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64220: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:43 ERROR [1336256611] dns: exchange failed for www.googleapis.com. IN A: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:43 ERROR [3163582713] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64222: unexpected EOF +0000 2023-03-07 14:05:43 ERROR [2897702548] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64224: unexpected EOF +0000 2023-03-07 14:05:43 ERROR [1891423840] dns: exchange failed for firestore.googleapis.com. IN A: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:43 ERROR [2588513505] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64225: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:43 ERROR [2375494873] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64226: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:44 ERROR [3638097932] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64227: unexpected EOF +0000 2023-03-07 14:05:44 ERROR [1336256611] dns: exchange failed for www.googleapis.com. IN A: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:44 ERROR [993423133] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64231: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:44 ERROR [1891423840] dns: exchange failed for firestore.googleapis.com. IN A: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:45 ERROR [1629695843] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64235: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:45 ERROR [655471785] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64236: unexpected EOF +0000 2023-03-07 14:05:45 ERROR [1891423840] dns: exchange failed for firestore.googleapis.com. IN A: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:45 ERROR [905195834] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64237: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:45 ERROR [1009778115] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64238: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:45 ERROR [1336256611] dns: exchange failed for www.googleapis.com. IN A: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:46 ERROR [1336256611] dns: exchange failed for www.googleapis.com. IN A: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:46 ERROR [2335757629] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64242: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:46 ERROR [404751872] dns: exchange failed for firebaseremoteconfig.googleapis.com. IN A: unexpected EOF +0000 2023-03-07 14:05:47 ERROR [2040636730] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64246: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:47 ERROR [4043204977] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64247: unexpected EOF +0000 2023-03-07 14:05:47 ERROR [404751872] dns: exchange failed for firebaseremoteconfig.googleapis.com. IN A: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:47 ERROR [1012538266] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64248: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:47 ERROR [404751872] dns: exchange failed for firebaseremoteconfig.googleapis.com. IN A: unexpected EOF +0000 2023-03-07 14:05:48 ERROR [404751872] dns: exchange failed for firebaseremoteconfig.googleapis.com. IN A: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:48 ERROR [2883134938] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64252: unexpected EOF +0000 2023-03-07 14:05:48 ERROR [1120987619] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64254: unexpected EOF +0000 2023-03-07 14:05:48 ERROR [1891423840] dns: exchange failed for firestore.googleapis.com. IN A: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:49 ERROR [1957342791] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64255: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:49 ERROR [3389390555] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64256: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:49 ERROR [1891423840] dns: exchange failed for firestore.googleapis.com. IN A: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:49 ERROR [4280945595] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64258: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:49 ERROR [1971281691] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64259: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:49 ERROR [1336256611] dns: exchange failed for www.googleapis.com. IN A: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:49 ERROR [3439519912] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64263: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:50 ERROR [3239079279] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64264: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:50 ERROR [1336256611] dns: exchange failed for www.googleapis.com. IN A: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:50 ERROR [305228818] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64266: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:50 ERROR [4021448776] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64265: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:51 ERROR [404751872] dns: exchange failed for firebaseremoteconfig.googleapis.com. IN A: malformed HTTP response

zcluo commented 1 year ago

我是在v2ray的server caddy tls + vmess + ws。在sing-box_1.2_beta5之后也在客户端报错,出现无法连接情况,日志如下: +0000 2023-03-07 14:05:42 ERROR [1970717734] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64221: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:42 ERROR [2466792384] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64220: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:43 ERROR [1336256611] dns: exchange failed for www.googleapis.com. IN A: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:43 ERROR [3163582713] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64222: unexpected EOF +0000 2023-03-07 14:05:43 ERROR [2897702548] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64224: unexpected EOF +0000 2023-03-07 14:05:43 ERROR [1891423840] dns: exchange failed for firestore.googleapis.com. IN A: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:43 ERROR [2588513505] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64225: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:43 ERROR [2375494873] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64226: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:44 ERROR [3638097932] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64227: unexpected EOF +0000 2023-03-07 14:05:44 ERROR [1336256611] dns: exchange failed for www.googleapis.com. IN A: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:44 ERROR [993423133] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64231: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:44 ERROR [1891423840] dns: exchange failed for firestore.googleapis.com. IN A: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:45 ERROR [1629695843] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64235: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:45 ERROR [655471785] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64236: unexpected EOF +0000 2023-03-07 14:05:45 ERROR [1891423840] dns: exchange failed for firestore.googleapis.com. IN A: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:45 ERROR [905195834] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64237: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:45 ERROR [1009778115] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64238: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:45 ERROR [1336256611] dns: exchange failed for www.googleapis.com. IN A: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:46 ERROR [1336256611] dns: exchange failed for www.googleapis.com. IN A: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:46 ERROR [2335757629] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64242: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:46 ERROR [404751872] dns: exchange failed for firebaseremoteconfig.googleapis.com. IN A: unexpected EOF +0000 2023-03-07 14:05:47 ERROR [2040636730] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64246: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:47 ERROR [4043204977] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64247: unexpected EOF +0000 2023-03-07 14:05:47 ERROR [404751872] dns: exchange failed for firebaseremoteconfig.googleapis.com. IN A: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:47 ERROR [1012538266] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64248: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:47 ERROR [404751872] dns: exchange failed for firebaseremoteconfig.googleapis.com. IN A: unexpected EOF +0000 2023-03-07 14:05:48 ERROR [404751872] dns: exchange failed for firebaseremoteconfig.googleapis.com. IN A: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:48 ERROR [2883134938] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64252: unexpected EOF +0000 2023-03-07 14:05:48 ERROR [1120987619] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64254: unexpected EOF +0000 2023-03-07 14:05:48 ERROR [1891423840] dns: exchange failed for firestore.googleapis.com. IN A: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:49 ERROR [1957342791] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64255: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:49 ERROR [3389390555] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64256: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:49 ERROR [1891423840] dns: exchange failed for firestore.googleapis.com. IN A: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:49 ERROR [4280945595] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64258: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:49 ERROR [1971281691] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64259: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:49 ERROR [1336256611] dns: exchange failed for www.googleapis.com. IN A: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:49 ERROR [3439519912] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64263: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:50 ERROR [3239079279] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64264: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:50 ERROR [1336256611] dns: exchange failed for www.googleapis.com. IN A: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:50 ERROR [305228818] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64266: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:50 ERROR [4021448776] inbound/redirect[redirect-in]: process connection from 10.0.0.198:64265: malformed HTTP response "\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x00\x05\x00\x10\x00\x00\x00\x03\x00\x00\x00\xfa\x00\x06\x00\x10\x01@\x00\x01\x00\x00\x10\x00\x00\x04\x00\x10\x00\x00" +0000 2023-03-07 14:05:51 ERROR [404751872] dns: exchange failed for firebaseremoteconfig.googleapis.com. IN A: malformed HTTP response

1.2_beta5及之前版本不会有该问题。

nekohasekai commented 1 year ago

请尝试最新 beta 版。

wy580477 commented 1 year ago

请尝试最新 beta 版。

感谢,经测试,xray 客户端搭配 sing-box 服务端 vmess 已经完全正常了。