V2ray-core: vmess出站的域名是双栈时,部分流量走了IPv6

Created on 9 Nov 2019  ·  4Comments  ·  Source: v2ray/v2ray-core

提交 Issue 之前请先阅读 Issue 指引,然后回答下面的问题,谢谢。
除非特殊情况,请完整填写所有问题。不按模板发的 issue 将直接被关闭。
如果你遇到的问题不是 V2Ray 的 bug,比如你不清楚要如何配置,请使用Discussion进行讨论。

1) 你正在使用哪个版本的 V2Ray?(如果服务器和客户端使用了不同版本,请注明)
4.21.3
2) 你的使用场景是什么?比如使用 Chrome 通过 Socks/VMess 代理观看 YouTube 视频。
win10上开socks代理看Youtube
3) 你看到的不正常的现象是什么?(请描述具体现象,比如访问超时,TLS 证书错误等)
vmess出站的域名是双栈时,部分流量走了IPv6
4) 你期待看到的正确表现是怎样的?
不配置sendthrough时,默认值是0.0.0.0,应该只走IPv4
5) 请附上你的配置(提交 Issue 前请隐藏服务器端IP地址)。

服务器端配置:

    // 在这里附上服务器端配置文件

客户端配置:

{
    "log": {
        "loglevel": "info"
    },
    "inbounds": [
        {
            "port": 1080,
            "listen": "0.0.0.0",
            "protocol": "socks"
        }
    ],
    "outbounds": [
        {
            "protocol": "freedom",
            "tag": "direct"
        },
        {
            "protocol": "vmess",
            "tag": "ws",
            "settings": {
                "vnext": [
                    {
                        "address": "???", //双栈域名
                        "port": 443,
                        "users": [
                            {
                                "security": "none",
                                "id": "?"
                            }
                        ]
                    }
                ]
            },
            "streamSettings": {
                "network": "ws",
                "security": "tls",
                "wsSettings": {
                    "path": "?"
                }
            }
        }
    ],
    "routing": {
        "rules": [
            {
                "type": "field",
                "outboundTag": "ws",
                "domain": [     
                    "ext:h2y.dat:gfw"
                ]
            }
        ]
    }
}

6) 请附上出错时软件输出的错误日志。在 Linux 中,日志通常在 /var/log/v2ray/error.log 文件中。

服务器端错误日志:

    // 在这里附上服务器端日志

客户端错误日志:

V2Ray 4.21.3 (V2Fly, a community-driven edition of V2Ray.) Custom
A unified platform for anti-censorship.
2019/11/09 15:44:08 [Warning] v2ray.com/core: V2Ray 4.21.3 started
2019/11/09 15:44:08 [Info] [3333385144] v2ray.com/core/proxy/socks: TCP Connect request to tcp:live.github.com:443
2019/11/09 15:44:08 tcp:127.0.0.1:53365 accepted tcp:live.github.com:443 [ws]
2019/11/09 15:44:08 [Info] [3333385144] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:live.github.com:443]
2019/11/09 15:44:08 [Info] [3333385144] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:44:09 [Info] [2774331670] v2ray.com/core/proxy/socks: TCP Connect request to tcp:live.github.com:443
2019/11/09 15:44:09 [Info] [2774331670] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:live.github.com:443]
2019/11/09 15:44:09 tcp:127.0.0.1:53363 accepted tcp:live.github.com:443 [ws]
2019/11/09 15:44:09 tcp:127.0.0.1:53364 accepted tcp:live.github.com:443 [ws]
2019/11/09 15:44:09 [Info] [2774331670] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:44:09 [Info] [2223073842] v2ray.com/core/proxy/socks: TCP Connect request to tcp:live.github.com:443
2019/11/09 15:44:09 [Info] [2223073842] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:live.github.com:443]
2019/11/09 15:44:09 [Info] [2223073842] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:44:10 [Info] [2223073842] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:live.github.com:443 via tcp:???:443
2019/11/09 15:44:10 [Info] [3333385144] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:live.github.com:443 via tcp:???:443
2019/11/09 15:44:10 [Info] [2774331670] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:live.github.com:443 via tcp:???:443
2019/11/09 15:44:12 [Info] [2579708292] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443
2019/11/09 15:44:12 [Info] [2579708292] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:www.youtube.com:443]
2019/11/09 15:44:12 tcp:127.0.0.1:53371 accepted tcp:www.youtube.com:443 [ws]
2019/11/09 15:44:12 [Info] [2579708292] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:44:13 [Info] [2579708292] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:www.youtube.com:443 via tcp:???:443
2019/11/09 15:44:19 [Info] [3592358198] v2ray.com/core/proxy/socks: TCP Connect request to tcp:fonts.googleapis.com:443
2019/11/09 15:44:19 [Info] [3592358198] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:fonts.googleapis.com:443]
2019/11/09 15:44:19 [Info] [3592358198] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:44:19 tcp:127.0.0.1:53373 accepted tcp:fonts.googleapis.com:443 [ws]
2019/11/09 15:44:19 [Info] [2652465924] v2ray.com/core/proxy/socks: TCP Connect request to tcp:fonts.gstatic.com:443
2019/11/09 15:44:19 tcp:127.0.0.1:53374 accepted tcp:fonts.gstatic.com:443 [ws]
2019/11/09 15:44:19 [Info] [2652465924] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:fonts.gstatic.com:443]
2019/11/09 15:44:19 [Info] [2652465924] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:44:20 [Info] [3592358198] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:fonts.googleapis.com:443 via tcp:???:443
2019/11/09 15:44:20 [Info] [3466788818] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443
2019/11/09 15:44:20 [Info] [3466788818] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:i.ytimg.com:443]
2019/11/09 15:44:20 [Info] [3466788818] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:44:20 tcp:127.0.0.1:53377 accepted tcp:i.ytimg.com:443 [ws]
2019/11/09 15:44:20 [Info] [4007622444] v2ray.com/core/proxy/socks: TCP Connect request to tcp:fonts.gstatic.com:443
2019/11/09 15:44:20 [Info] [4007622444] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:fonts.gstatic.com:443]
2019/11/09 15:44:20 tcp:127.0.0.1:53379 accepted tcp:fonts.gstatic.com:443 [ws]
2019/11/09 15:44:20 [Info] [4007622444] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:44:20 [Info] [3334263461] v2ray.com/core/proxy/socks: TCP Connect request to tcp:clients4.google.com:443
2019/11/09 15:44:20 tcp:127.0.0.1:53381 accepted tcp:clients4.google.com:443 [ws]
2019/11/09 15:44:20 [Info] [3334263461] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:clients4.google.com:443]
2019/11/09 15:44:20 [Info] [3334263461] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:44:21 [Info] [2652465924] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:fonts.gstatic.com:443 via tcp:???:443
2019/11/09 15:44:21 [Info] [1398528184] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443
2019/11/09 15:44:21 [Info] [1398528184] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:i.ytimg.com:443]
2019/11/09 15:44:21 [Info] [1398528184] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:44:21 tcp:127.0.0.1:53384 accepted tcp:i.ytimg.com:443 [ws]
2019/11/09 15:44:21 tcp:127.0.0.1:53385 accepted tcp:i.ytimg.com:443 [ws]
2019/11/09 15:44:21 tcp:127.0.0.1:53386 accepted tcp:i.ytimg.com:443 [ws]
2019/11/09 15:44:21 tcp:127.0.0.1:53387 accepted tcp:i.ytimg.com:443 [ws]
2019/11/09 15:44:21 tcp:127.0.0.1:53388 accepted tcp:i.ytimg.com:443 [ws]
2019/11/09 15:44:21 [Info] [2724557779] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443
2019/11/09 15:44:21 [Info] [2724557779] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:i.ytimg.com:443]
2019/11/09 15:44:21 [Info] [2724557779] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:44:21 [Info] [3130935966] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443
2019/11/09 15:44:21 [Info] [3130935966] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:i.ytimg.com:443]
2019/11/09 15:44:21 [Info] [3130935966] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:44:21 [Info] [2529123471] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443
2019/11/09 15:44:21 [Info] [2529123471] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:i.ytimg.com:443]
2019/11/09 15:44:21 [Info] [2529123471] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:44:21 [Info] [3382221503] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443
2019/11/09 15:44:21 [Info] [3382221503] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:i.ytimg.com:443]
2019/11/09 15:44:21 [Info] [3382221503] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:44:21 [Info] [3334263461] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:clients4.google.com:443 via tcp:???:443
2019/11/09 15:44:21 [Info] [3466788818] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:i.ytimg.com:443 via tcp:???:443
2019/11/09 15:44:22 [Info] [2724557779] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:i.ytimg.com:443 via tcp:???:443
2019/11/09 15:44:22 [Info] [1398528184] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:i.ytimg.com:443 via tcp:???:443
2019/11/09 15:44:22 [Info] [3130935966] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:i.ytimg.com:443 via tcp:???:443
2019/11/09 15:44:22 [Info] [2529123471] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:i.ytimg.com:443 via tcp:???:443
2019/11/09 15:44:23 [Info] [3382221503] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:i.ytimg.com:443 via tcp:???:443
2019/11/09 15:44:23 [Info] [4007622444] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:fonts.gstatic.com:443 via tcp:???:443
2019/11/09 15:44:23 [Info] [3130935966] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > v2ray.com/core/proxy/socks: failed to transport all TCP response > write tcp 127.0.0.1:1080->127.0.0.1:53386: wsasend: An established connection was aborted by the software in your host machine.
2019/11/09 15:44:23 [Info] [3130935966] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled
2019/11/09 15:44:23 [Info] [2529123471] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > v2ray.com/core/proxy/socks: failed to transport all TCP response > write tcp 127.0.0.1:1080->127.0.0.1:53387: wsasend: An established connection was aborted by the software in your host machine.
2019/11/09 15:44:23 [Info] [2529123471] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled
2019/11/09 15:44:23 [Info] [3382221503] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled
2019/11/09 15:44:23 [Info] [2724557779] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled
2019/11/09 15:44:23 [Info] [2724557779] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled
2019/11/09 15:44:23 [Info] [3382221503] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled
2019/11/09 15:44:24 [Info] [1398528184] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > websocket: close 1000 (normal)
2019/11/09 15:44:24 [Info] [1398528184] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > v2ray.com/core/proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2019/11/09 15:44:24 [Info] [382214947] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443
2019/11/09 15:44:24 [Info] [382214947] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:yt3.ggpht.com:443]
2019/11/09 15:44:24 [Info] [382214947] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:44:24 tcp:127.0.0.1:53394 accepted tcp:yt3.ggpht.com:443 [ws]
2019/11/09 15:44:25 [Info] [382214947] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:yt3.ggpht.com:443 via tcp:???:443
2019/11/09 15:44:26 [Info] [2094777934] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r2---sn-n4v7sney.googlevideo.com:443
2019/11/09 15:44:26 tcp:127.0.0.1:53396 accepted tcp:r2---sn-n4v7sney.googlevideo.com:443 [ws]
2019/11/09 15:44:26 [Info] [2094777934] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:r2---sn-n4v7sney.googlevideo.com:443]
2019/11/09 15:44:26 tcp:127.0.0.1:53397 accepted tcp:r2---sn-n4v7sney.googlevideo.com:443 [ws]
2019/11/09 15:44:26 [Info] [2094777934] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:44:26 [Info] [76598316] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r2---sn-n4v7sney.googlevideo.com:443
2019/11/09 15:44:26 [Info] [76598316] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:r2---sn-n4v7sney.googlevideo.com:443]
2019/11/09 15:44:26 [Info] [76598316] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:44:26 [Info] [214678449] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r2---sn-n4v7sney.googlevideo.com:443
2019/11/09 15:44:26 tcp:127.0.0.1:53401 accepted tcp:r2---sn-n4v7sney.googlevideo.com:443 [ws]
2019/11/09 15:44:26 tcp:127.0.0.1:53402 accepted tcp:r2---sn-n4v7sney.googlevideo.com:443 [ws]
2019/11/09 15:44:26 [Info] [214678449] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:r2---sn-n4v7sney.googlevideo.com:443]
2019/11/09 15:44:26 [Info] [214678449] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:44:26 [Info] [2481403907] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r2---sn-n4v7sney.googlevideo.com:443
2019/11/09 15:44:26 [Info] [2481403907] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:r2---sn-n4v7sney.googlevideo.com:443]
2019/11/09 15:44:26 [Info] [2481403907] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:44:27 [Info] [76598316] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:r2---sn-n4v7sney.googlevideo.com:443 via tcp:???:443
2019/11/09 15:44:27 [Info] [2094777934] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:r2---sn-n4v7sney.googlevideo.com:443 via tcp:???:443
2019/11/09 15:44:27 [Info] [214678449] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:r2---sn-n4v7sney.googlevideo.com:443 via tcp:???:443
2019/11/09 15:44:27 [Info] [2481403907] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:r2---sn-n4v7sney.googlevideo.com:443 via tcp:???:443
2019/11/09 15:44:28 [Info] [2774331670] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled
2019/11/09 15:44:28 [Info] [2774331670] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled
2019/11/09 15:44:30 [Info] [3731584432] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r2---sn-a5meknsd.googlevideo.com:443
2019/11/09 15:44:30 tcp:127.0.0.1:53405 accepted tcp:r2---sn-a5meknsd.googlevideo.com:443 [ws]
2019/11/09 15:44:30 [Info] [3731584432] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:r2---sn-a5meknsd.googlevideo.com:443]
2019/11/09 15:44:30 [Info] [3731584432] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:44:31 [Info] [3731584432] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:r2---sn-a5meknsd.googlevideo.com:443 via tcp:???:443
2019/11/09 15:44:31 [Info] [408288883] v2ray.com/core/proxy/socks: TCP Connect request to tcp:beacons.gcp.gvt2.com:443
2019/11/09 15:44:31 [Info] [408288883] v2ray.com/core/app/dispatcher: taking detour [direct] for [tcp:beacons.gcp.gvt2.com:443]
2019/11/09 15:44:31 [Info] [408288883] v2ray.com/core/proxy/freedom: opening connection to tcp:beacons.gcp.gvt2.com:443
2019/11/09 15:44:31 [Info] [408288883] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:beacons.gcp.gvt2.com:443
2019/11/09 15:44:31 tcp:127.0.0.1:53407 accepted tcp:beacons.gcp.gvt2.com:443 [direct]
2019/11/09 15:44:32 [Info] [3592358198] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled
2019/11/09 15:44:32 [Info] [3592358198] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled
2019/11/09 15:44:35 [Info] [2652465924] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled
2019/11/09 15:44:35 [Info] [2652465924] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled
2019/11/09 15:44:44 [Info] [4007622444] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled
2019/11/09 15:44:44 [Info] [4007622444] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled
2019/11/09 15:45:00 [Info] [214678449] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled
2019/11/09 15:45:00 [Info] [214678449] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled
2019/11/09 15:45:01 [Info] [76598316] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > v2ray.com/core/proxy/socks: failed to transport all TCP response > wsasend tcp 127.0.0.1:1080->127.0.0.1:53397: wsasend: An established connection was aborted by the software in your host machine.
2019/11/09 15:45:01 [Info] [76598316] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled
2019/11/09 15:45:01 [Info] [2094777934] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > v2ray.com/core/proxy/socks: failed to transport all TCP response > wsasend tcp 127.0.0.1:1080->127.0.0.1:53396: wsasend: An established connection was aborted by the software in your host machine.
2019/11/09 15:45:01 [Info] [2094777934] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled
2019/11/09 15:45:01 [Info] [3246629544] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r2---sn-a5meknsd.googlevideo.com:443
2019/11/09 15:45:01 [Info] [3246629544] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:r2---sn-a5meknsd.googlevideo.com:443]
2019/11/09 15:45:01 tcp:127.0.0.1:53409 accepted tcp:r2---sn-a5meknsd.googlevideo.com:443 [ws]
2019/11/09 15:45:01 [Info] [3246629544] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:45:02 [Info] [2340004943] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r2---sn-a5meknsd.googlevideo.com:443
2019/11/09 15:45:02 [Info] [2340004943] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:r2---sn-a5meknsd.googlevideo.com:443]
2019/11/09 15:45:02 tcp:127.0.0.1:53412 accepted tcp:r2---sn-a5meknsd.googlevideo.com:443 [ws]
2019/11/09 15:45:02 [Info] [2340004943] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:45:03 [Info] [2340004943] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:r2---sn-a5meknsd.googlevideo.com:443 via tcp:???:443
2019/11/09 15:45:04 [Info] [2481403907] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled
2019/11/09 15:45:04 [Info] [2481403907] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled
2019/11/09 15:45:05 [Info] [3246629544] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:r2---sn-a5meknsd.googlevideo.com:443 via tcp:???:443
2019/11/09 15:45:17 [Info] [2948045990] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r2---sn-n4v7sney.googlevideo.com:443
2019/11/09 15:45:17 tcp:127.0.0.1:53414 accepted tcp:r2---sn-n4v7sney.googlevideo.com:443 [ws]
2019/11/09 15:45:17 [Info] [2948045990] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:r2---sn-n4v7sney.googlevideo.com:443]
2019/11/09 15:45:17 [Info] [2948045990] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:45:18 [Info] [3246629544] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled
2019/11/09 15:45:18 [Info] [3246629544] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled
2019/11/09 15:45:19 [Info] [2948045990] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:r2---sn-n4v7sney.googlevideo.com:443 via tcp:???:443
2019/11/09 15:45:31 [Info] [1991397070] v2ray.com/core/proxy/socks: TCP Connect request to tcp:beacons5.gvt3.com:443
2019/11/09 15:45:31 tcp:127.0.0.1:53417 accepted tcp:beacons5.gvt3.com:443 [ws]
2019/11/09 15:45:31 [Info] [1991397070] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:beacons5.gvt3.com:443]
2019/11/09 15:45:31 [Info] [1991397070] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:45:33 [Info] [1991397070] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:beacons5.gvt3.com:443 via tcp:???:443
2019/11/09 15:45:38 [Info] [3113860390] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r2---sn-n4v7sney.googlevideo.com:443
2019/11/09 15:45:38 tcp:127.0.0.1:53419 accepted tcp:r2---sn-n4v7sney.googlevideo.com:443 [ws]
2019/11/09 15:45:38 [Info] [3113860390] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:r2---sn-n4v7sney.googlevideo.com:443]
2019/11/09 15:45:38 [Info] [3113860390] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:45:39 [Info] [3113860390] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:r2---sn-n4v7sney.googlevideo.com:443 via tcp:???:443
2019/11/09 15:45:49 [Info] [3731584432] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled
2019/11/09 15:45:49 [Info] [3731584432] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled
2019/11/09 15:45:52 [Info] [2340004943] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled
2019/11/09 15:45:52 [Info] [2340004943] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled
2019/11/09 15:45:56 [Info] [389125497] v2ray.com/core/proxy/socks: TCP Connect request to tcp:clients1.google.com:443
2019/11/09 15:45:56 [Info] [389125497] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:clients1.google.com:443]
2019/11/09 15:45:56 [Info] [389125497] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:45:56 tcp:127.0.0.1:53426 accepted tcp:clients1.google.com:443 [ws]
2019/11/09 15:45:57 [Info] [389125497] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:clients1.google.com:443 via tcp:???:443
2019/11/09 15:46:01 [Info] [3243508191] v2ray.com/core/proxy/socks: TCP Connect request to tcp:github.com:443
2019/11/09 15:46:01 tcp:127.0.0.1:53428 accepted tcp:github.com:443 [ws]
2019/11/09 15:46:01 [Info] [3243508191] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:github.com:443]
2019/11/09 15:46:01 [Info] [3243508191] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:46:03 [Info] [3243508191] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:github.com:443 via tcp:???:443
2019/11/09 15:46:04 [Info] [4107491956] v2ray.com/core/proxy/socks: TCP Connect request to tcp:github.com:443
2019/11/09 15:46:04 tcp:127.0.0.1:53431 accepted tcp:github.com:443 [ws]
2019/11/09 15:46:04 [Info] [4107491956] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:github.com:443]
2019/11/09 15:46:04 [Info] [4107491956] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:46:04 [Info] [4204290046] v2ray.com/core/proxy/socks: TCP Connect request to tcp:github.githubassets.com:443
2019/11/09 15:46:04 [Info] [4204290046] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:github.githubassets.com:443]
2019/11/09 15:46:04 tcp:127.0.0.1:53432 accepted tcp:github.githubassets.com:443 [ws]
2019/11/09 15:46:04 [Info] [4204290046] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:46:05 [Info] [4107491956] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:github.com:443 via tcp:???:443
2019/11/09 15:46:06 [Info] [4204290046] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:github.githubassets.com:443 via tcp:???:443
2019/11/09 15:46:06 [Info] [882127933] v2ray.com/core/proxy/socks: TCP Connect request to tcp:avatars2.githubusercontent.com:443
2019/11/09 15:46:07 tcp:127.0.0.1:53435 accepted tcp:avatars2.githubusercontent.com:443 [ws]
2019/11/09 15:46:07 [Info] [882127933] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:avatars2.githubusercontent.com:443]
2019/11/09 15:46:07 [Info] [882127933] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:46:07 [Info] [1171500569] v2ray.com/core/proxy/socks: TCP Connect request to tcp:avatars1.githubusercontent.com:443
2019/11/09 15:46:07 [Info] [1171500569] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:avatars1.githubusercontent.com:443]
2019/11/09 15:46:07 tcp:127.0.0.1:53437 accepted tcp:avatars1.githubusercontent.com:443 [ws]
2019/11/09 15:46:07 [Info] [1171500569] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:46:07 [Info] [477239675] v2ray.com/core/proxy/socks: TCP Connect request to tcp:live.github.com:443
2019/11/09 15:46:07 tcp:127.0.0.1:53439 accepted tcp:live.github.com:443 [ws]
2019/11/09 15:46:07 [Info] [477239675] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:live.github.com:443]
2019/11/09 15:46:07 [Info] [477239675] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:46:07 [Info] [3919567578] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.google-analytics.com:443
2019/11/09 15:46:07 [Info] [3919567578] v2ray.com/core/app/dispatcher: taking detour [direct] for [tcp:www.google-analytics.com:443]
2019/11/09 15:46:07 tcp:127.0.0.1:53441 accepted tcp:www.google-analytics.com:443 [direct]
2019/11/09 15:46:07 [Info] [3919567578] v2ray.com/core/proxy/freedom: opening connection to tcp:www.google-analytics.com:443
2019/11/09 15:46:07 [Info] [3919567578] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:www.google-analytics.com:443
2019/11/09 15:46:07 [Info] [3243508191] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled
2019/11/09 15:46:07 [Info] [3243508191] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled
2019/11/09 15:46:08 [Info] [1171500569] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:avatars1.githubusercontent.com:443 via tcp:???:443
2019/11/09 15:46:08 [Info] [882127933] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:avatars2.githubusercontent.com:443 via tcp:???:443
2019/11/09 15:46:09 [Info] [4084332874] v2ray.com/core/proxy/socks: TCP Connect request to tcp:collector.githubapp.com:443
2019/11/09 15:46:09 [Info] [3762112530] v2ray.com/core/proxy/socks: TCP Connect request to tcp:api.github.com:443
2019/11/09 15:46:09 [Info] [3762112530] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:api.github.com:443]
2019/11/09 15:46:09 [Info] [3762112530] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:46:09 tcp:127.0.0.1:53445 accepted tcp:api.github.com:443 [ws]
2019/11/09 15:46:09 [Info] [4084332874] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:collector.githubapp.com:443]
2019/11/09 15:46:09 tcp:127.0.0.1:53444 accepted tcp:collector.githubapp.com:443 [ws]
2019/11/09 15:46:09 [Info] [4084332874] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:46:10 [Info] [3762112530] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:api.github.com:443 via tcp:???:443
2019/11/09 15:46:10 [Info] [4084332874] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:collector.githubapp.com:443 via tcp:???:443
2019/11/09 15:46:11 [Info] [766209158] v2ray.com/core/proxy/socks: TCP Connect request to tcp:live.github.com:443
2019/11/09 15:46:11 tcp:127.0.0.1:53448 accepted tcp:live.github.com:443 [ws]
2019/11/09 15:46:11 [Info] [766209158] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:live.github.com:443]
2019/11/09 15:46:11 [Info] [766209158] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:46:11 [Info] [382214947] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > websocket: close 1006 (abnormal closure): unexpected EOF
2019/11/09 15:46:11 [Info] [382214947] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > v2ray.com/core/proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2019/11/09 15:46:12 [Info] [766209158] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:live.github.com:443 via tcp:???:443
2019/11/09 15:46:12 [Info] [3466788818] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > websocket: close 1006 (abnormal closure): unexpected EOF
2019/11/09 15:46:12 [Info] [3466788818] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > v2ray.com/core/proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2019/11/09 15:46:14 [Info] [477239675] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:live.github.com:443 via tcp:???:443
2019/11/09 15:46:17 [Info] [1838191953] v2ray.com/core/proxy/socks: TCP Connect request to tcp:live.github.com:443
2019/11/09 15:46:17 tcp:127.0.0.1:53450 accepted tcp:live.github.com:443 [ws]
2019/11/09 15:46:17 [Info] [1838191953] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:live.github.com:443]
2019/11/09 15:46:17 [Info] [1838191953] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:46:17 [Info] [3334263461] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > websocket: close 1006 (abnormal closure): unexpected EOF
2019/11/09 15:46:17 [Info] [3334263461] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > v2ray.com/core/proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2019/11/09 15:46:17 [Info] [554298289] v2ray.com/core/proxy/socks: TCP Connect request to tcp:clients4.google.com:443
2019/11/09 15:46:17 [Info] [554298289] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:clients4.google.com:443]
2019/11/09 15:46:17 [Info] [554298289] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:46:17 tcp:127.0.0.1:53452 accepted tcp:clients4.google.com:443 [ws]
2019/11/09 15:46:18 [Info] [1838191953] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:live.github.com:443 via tcp:???:443
2019/11/09 15:46:18 [Info] [4204290046] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled
2019/11/09 15:46:18 [Info] [4204290046] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled
2019/11/09 15:46:20 [Info] [554298289] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:clients4.google.com:443 via tcp:???:443
2019/11/09 15:46:24 [Info] [3446913389] v2ray.com/core/proxy/socks: TCP Connect request to tcp:github.com:443
2019/11/09 15:46:24 tcp:127.0.0.1:53454 accepted tcp:github.com:443 [ws]
2019/11/09 15:46:24 [Info] [3446913389] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:github.com:443]
2019/11/09 15:46:24 [Info] [3446913389] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:46:24 tcp:127.0.0.1:53455 accepted tcp:github.githubassets.com:443 [ws]
2019/11/09 15:46:24 [Info] [3779956709] v2ray.com/core/proxy/socks: TCP Connect request to tcp:github.githubassets.com:443
2019/11/09 15:46:24 [Info] [3779956709] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:github.githubassets.com:443]
2019/11/09 15:46:24 [Info] [3779956709] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:46:25 [Info] [3446913389] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:github.com:443 via tcp:???:443
2019/11/09 15:46:26 [Info] [3779956709] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:github.githubassets.com:443 via tcp:???:443
2019/11/09 15:46:26 [Info] [1680638296] v2ray.com/core/proxy/socks: TCP Connect request to tcp:clients1.google.com:443
2019/11/09 15:46:26 tcp:127.0.0.1:53458 accepted tcp:clients1.google.com:443 [ws]
2019/11/09 15:46:26 [Info] [1680638296] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:clients1.google.com:443]
2019/11/09 15:46:26 [Info] [1680638296] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:46:26 [Info] [3049697419] v2ray.com/core/proxy/socks: TCP Connect request to tcp:live.github.com:443
2019/11/09 15:46:26 [Info] [3049697419] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:live.github.com:443]
2019/11/09 15:46:26 tcp:127.0.0.1:53460 accepted tcp:live.github.com:443 [ws]
2019/11/09 15:46:26 [Info] [3049697419] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:46:28 [Info] [3049697419] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:live.github.com:443 via tcp:???:443
2019/11/09 15:46:30 [Info] [4254735850] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r2---sn-a5meknsd.googlevideo.com:443
2019/11/09 15:46:30 tcp:127.0.0.1:53463 accepted tcp:r2---sn-a5meknsd.googlevideo.com:443 [ws]
2019/11/09 15:46:30 [Info] [4254735850] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:r2---sn-a5meknsd.googlevideo.com:443]
2019/11/09 15:46:30 [Info] [4254735850] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:46:31 [Info] [4254735850] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:r2---sn-a5meknsd.googlevideo.com:443 via tcp:???:443
2019/11/09 15:46:32 [Info] [1680638296] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:clients1.google.com:443 via tcp:???:443
2019/11/09 15:46:32 [Warning] [1680638296] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > v2ray.com/core/proxy/vmess/outbound: failed to read header > v2ray.com/core/proxy/vmess/encoding: failed to read response header > websocket: close 1000 (normal)
2019/11/09 15:46:32 [Info] [1680638296] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > v2ray.com/core/proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2019/11/09 15:46:33 [Info] [4106766625] v2ray.com/core/proxy/socks: TCP Connect request to tcp:clients1.google.com:443
2019/11/09 15:46:33 [Info] [4106766625] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:clients1.google.com:443]
2019/11/09 15:46:33 [Info] [4106766625] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:46:33 tcp:127.0.0.1:53465 accepted tcp:clients1.google.com:443 [ws]
2019/11/09 15:46:34 [Info] [4106766625] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:clients1.google.com:443 via tcp:???:443
2019/11/09 15:46:38 [Info] [3779956709] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled
2019/11/09 15:46:38 [Info] [3446913389] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled
2019/11/09 15:46:38 [Info] [3779956709] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled
2019/11/09 15:46:38 [Info] [3446913389] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled
2019/11/09 15:47:11 [Info] [2948045990] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > v2ray.com/core/proxy/socks: failed to transport all TCP response > wsasend tcp 127.0.0.1:1080->127.0.0.1:53414: wsasend: An established connection was aborted by the software in your host machine.
2019/11/09 15:47:11 [Info] [2948045990] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled
2019/11/09 15:47:12 [Info] [3754093576] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r2---sn-a5meknsd.googlevideo.com:443
2019/11/09 15:47:12 [Info] [3754093576] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:r2---sn-a5meknsd.googlevideo.com:443]
2019/11/09 15:47:12 tcp:127.0.0.1:53469 accepted tcp:r2---sn-a5meknsd.googlevideo.com:443 [ws]
2019/11/09 15:47:12 [Info] [3754093576] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:47:13 [Info] [3754093576] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:r2---sn-a5meknsd.googlevideo.com:443 via tcp:???:443
2019/11/09 15:47:15 [Info] [1991397070] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > websocket: close 1006 (abnormal closure): unexpected EOF
2019/11/09 15:47:15 [Info] [1991397070] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > v2ray.com/core/proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2019/11/09 15:47:24 [Info] [660786599] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r2---sn-a5meknsd.googlevideo.com:443
2019/11/09 15:47:24 tcp:127.0.0.1:53471 accepted tcp:r2---sn-a5meknsd.googlevideo.com:443 [ws]
2019/11/09 15:47:24 [Info] [660786599] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:r2---sn-a5meknsd.googlevideo.com:443]
2019/11/09 15:47:24 [Info] [660786599] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:47:25 [Info] [660786599] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:r2---sn-a5meknsd.googlevideo.com:443 via tcp:???:443
2019/11/09 15:47:25 [Info] [3754093576] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled
2019/11/09 15:47:25 [Info] [3754093576] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled
2019/11/09 15:47:28 [Info] [4107491956] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled
2019/11/09 15:47:28 [Info] [4107491956] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled
2019/11/09 15:47:28 [Info] [3762112530] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled
2019/11/09 15:47:28 [Info] [3762112530] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled
2019/11/09 15:47:28 [Info] [3159871344] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r2---sn-n4v7sney.googlevideo.com:443
2019/11/09 15:47:28 tcp:127.0.0.1:53473 accepted tcp:r2---sn-n4v7sney.googlevideo.com:443 [ws]
2019/11/09 15:47:28 [Info] [3159871344] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:r2---sn-n4v7sney.googlevideo.com:443]
2019/11/09 15:47:28 [Info] [3159871344] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:47:29 [Info] [4084332874] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled
2019/11/09 15:47:29 [Info] [4084332874] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled
2019/11/09 15:47:30 [Info] [3159871344] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:r2---sn-n4v7sney.googlevideo.com:443 via tcp:???:443
2019/11/09 15:47:38 [Info] [389125497] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > websocket: close 1006 (abnormal closure): unexpected EOF
2019/11/09 15:47:38 [Info] [389125497] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > v2ray.com/core/proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2019/11/09 15:47:47 [Info] [4254735850] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled
2019/11/09 15:47:47 [Info] [4254735850] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled
2019/11/09 15:47:48 [Info] [4243875118] v2ray.com/core/proxy/socks: TCP Connect request to tcp:ssl.gstatic.com:443
2019/11/09 15:47:48 tcp:127.0.0.1:53475 accepted tcp:ssl.gstatic.com:443 [ws]
2019/11/09 15:47:48 [Info] [4243875118] v2ray.com/core/app/dispatcher: taking detour [ws] for [tcp:ssl.gstatic.com:443]
2019/11/09 15:47:48 [Info] [4243875118] v2ray.com/core/transport/internet/websocket: creating connection to tcp:???:443
2019/11/09 15:47:49 [Info] [882127933] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > websocket: close 1006 (abnormal closure): unexpected EOF
2019/11/09 15:47:49 [Info] [882127933] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > v2ray.com/core/proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2019/11/09 15:47:49 [Info] [4243875118] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:ssl.gstatic.com:443 via tcp:???:443
2019/11/09 15:47:58 [Info] [660786599] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled
2019/11/09 15:47:58 [Info] [660786599] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled
2019/11/09 15:48:06 [Info] [1171500569] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > websocket: close 1006 (abnormal closure): unexpected EOF
2019/11/09 15:48:06 [Info] [1171500569] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > v2ray.com/core/proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2019/11/09 15:48:16 [Info] [4106766625] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > websocket: close 1006 (abnormal closure): unexpected EOF
2019/11/09 15:48:16 [Info] [4106766625] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > v2ray.com/core/proxy/socks: failed to transport all TCP response > io: read/write on closed pipe

7) 请附上访问日志。在 Linux 中,日志通常在 /var/log/v2ray/access.log 文件中。

2019/11/09 07:44:22 222.79.???:???:43702 accepted tcp:i.ytimg.com:443 
2019/11/09 07:44:22 222.79.???:???:43706 accepted tcp:i.ytimg.com:443 
2019/11/09 07:44:22 222.79.???:???:43704 accepted tcp:i.ytimg.com:443 
2019/11/09 07:44:23 [240e:d0:2831:9904:71fb:c71c:????:????]:43714 accepted tcp:fonts.gstatic.com:443 
2019/11/09 07:44:25 222.79.???:???:43728 accepted tcp:yt3.ggpht.com:443 
2019/11/09 07:44:27 222.79.???:???:43732 accepted tcp:r2---sn-n4v7sney.googlevideo.com:443 
2019/11/09 07:44:27 [240e:d0:2831:9904:71fb:c71c:????:????]:43734 accepted tcp:r2---sn-n4v7sney.googlevideo.com:443 
2019/11/09 07:44:27 222.79.???:???:43738 accepted tcp:r2---sn-n4v7sney.googlevideo.com:443 
2019/11/09 07:44:27 222.79.???:???:43742 accepted tcp:r2---sn-n4v7sney.googlevideo.com:443 
2019/11/09 07:44:31 222.79.???:???:43750 accepted tcp:r2---sn-a5meknsd.googlevideo.com:443 
2019/11/09 07:45:03 222.79.???:???:43762 accepted tcp:r2---sn-a5meknsd.googlevideo.com:443 
2019/11/09 07:45:05 [240e:d0:2831:9904:71fb:c71c:????:????]:43766 accepted tcp:r2---sn-a5meknsd.googlevideo.com:443 
2019/11/09 07:45:19 222.79.???:???:43774 accepted tcp:r2---sn-n4v7sney.googlevideo.com:443 
2019/11/09 07:45:32 222.79.???:???:43780 accepted tcp:beacons5.gvt3.com:443 
2019/11/09 07:45:39 222.79.???:???:43786 accepted tcp:r2---sn-n4v7sney.googlevideo.com:443 
2019/11/09 07:45:57 222.79.???:???:43792 accepted tcp:clients1.google.com:443 
2019/11/09 07:46:03 [240e:d0:2831:9904:71fb:c71c:????:????]:43800 accepted tcp:github.com:443 
2019/11/09 07:46:05 222.79.???:???:43804 accepted tcp:github.com:443 
2019/11/09 07:46:06 222.79.???:???:43808 accepted tcp:github.githubassets.com:443 
2019/11/09 07:46:07 222.79.???:???:43812 accepted tcp:avatars1.githubusercontent.com:443 
2019/11/09 07:46:08 222.79.???:???:43818 accepted tcp:avatars2.githubusercontent.com:443 
2019/11/09 07:46:10 222.79.???:???:43822 accepted tcp:api.github.com:443 
2019/11/09 07:46:10 222.79.???:???:43824 accepted tcp:collector.githubapp.com:443 
2019/11/09 07:46:12 222.79.???:???:43830 accepted tcp:live.github.com:443 
2019/11/09 07:46:14 [240e:d0:2831:9904:71fb:c71c:????:????]:43834 accepted tcp:live.github.com:443 
2019/11/09 07:46:18 222.79.???:???:43838 accepted tcp:live.github.com:443 
2019/11/09 07:46:20 222.79.???:???:43840 accepted tcp:clients4.google.com:443 
2019/11/09 07:46:25 222.79.???:???:43858 accepted tcp:github.com:443 
2019/11/09 07:46:25 222.79.???:???:43856 accepted tcp:github.githubassets.com:443 
2019/11/09 07:46:28 222.79.???:???:43864 accepted tcp:live.github.com:443 
2019/11/09 07:46:30 222.79.???:???:43872 accepted tcp:r2---sn-a5meknsd.googlevideo.com:443 
2019/11/09 07:46:32 222.79.???:???:43868 rejected  v2ray.com/core/proxy/vmess/encoding: failed to read request header > read tcp 127.0.0.1:10000->222.79.???:???:43868: i/o timeout
2019/11/09 07:46:34 222.79.???:???:43876 accepted tcp:clients1.google.com:443

8) 其它相关的配置文件(如 Nginx)和相关日志。

9) 如果 V2Ray 无法启动,请附上 --test 输出。

通常的命令为 /usr/bin/v2ray/v2ray --test --config /etc/v2ray/config.json。请按实际情况修改。

10) 如果 V2Ray 服务运行不正常,请附上 journal 日志。

通常的命令为 journalctl -u v2ray

请预览一下你填的内容再提交。

All 4 comments

不用ipv6为什么不从系统关闭ipv6

看你的日志我 Chrome 都卡住了。。不知道为什么,你能具体指出

vmess出站的域名是双栈时,部分流量走了IPv6

出现在错误日志的哪里吗?

这是因为请求DNS时使用了IPV6地址,解决掉这个问题就可以了。

看你的日志我 Chrome 都卡住了。。不知道为什么,你能具体指出

vmess出站的域名是双栈时,部分流量走了IPv6

出现在错误日志的哪里吗?

服务端的access.log可以看到有ipv6的连接

Was this page helpful?
0 / 5 - 0 ratings