v2ray / v2ray-core

A platform for building proxies to bypass network restrictions.
https://www.v2ray.com/
MIT License
45.09k stars 8.94k forks source link

macOS使用时出现大量“v2ray.com/core/app/proxyman/inbound: connection ends”“v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic”警告 #2753

Closed mingcenwei closed 3 years ago

mingcenwei commented 3 years ago

除非特殊情况,请完整填写所有问题。不按模板发的 issue 将直接被关闭。 如果你遇到的问题不是 V2Ray 的 bug,比如你不清楚要如何配置,请使用Discussion进行讨论。

1) 你正在使用哪个版本的 V2Ray?(如果服务器和客户端使用了不同版本,请注明)

服务器和客户端一致,从v4.27.0到v4.30.0都有类似的问题,目前是v4.30.0

2) 你的使用场景是什么?比如使用 Chrome 通过 Socks/VMess 代理观看 YouTube 视频。

Firefox/Chrome通过macOS系统代理(设置了SOCKS/HTTP/HTTPS代理)用VMess+WS+TLS+Apache反向代理+Cloudflare Proxied DNS访问墙外网页

3) 你看到的不正常的现象是什么?(请描述具体现象,比如访问超时,TLS 证书错误等)

日志中出现大量类似于[Warning] [XXXXXXXXXX] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic[Warning] [XXXXXXXX] v2ray.com/core/app/proxyman/inbound: connection ends的警告。 经常无法正常访问墙外网页,网页一直加载不出来,显示一片空白,或者甚至提示连接超时,例如Firefox可能出现“The connection has timed out”的错误,如下图:

image

然后反复点刷新,过很长很长一段时间后又可能突然可以加载出网页了。手机上使用V2rayNG从来没有遇到过类似的问题。电脑、手机、服务器端的时间是一致的。

4) 你期待看到的正确表现是怎样的?

能像手机端一样流畅访问墙外网页,而不是等很长一段时间然后凭运气突然加载出来。

5) 请附上你的配置(提交 Issue 前请隐藏服务器端IP地址)。

服务器端配置:

// 00_log.json
{
    "log": {
        "access": "/var/log/v2ray/access.log",
        "error": "/var/log/v2ray/error.log",
        "loglevel": "warning"
    }
}

// 01_api.json
{}

// 02_dns.json
{
    "dns": {}
}

// 03_routing.json
{
    "routing": {
        "domainStrategy": "AsIs",
        "rules": [
            {
                "type": "field",
                "ip": [
                    "geoip:private"
                ],
                "outboundTag": "blocked"
            }
        ]
    }
}

// 04_policy.json
{
    "policy": {}
}

// 05_inbounds.json
{
    "inbounds": [
        {
            "tag": "in-vmess-http2-tls",
            "port": XXXX,
            "protocol": "vmess",
            "settings": {
                "udp": true,
                "clients": [
                    {
                        "alterId": 64,
                        "security": "auto",
                        "id": "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"
                    },
                    {
                        "alterId": 64,
                        "security": "auto",
                        "id": "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"
                    }
                ]
            },
            "streamSettings": {
                "network": "http",
                "security": "tls",
                "httpSettings": {
                    "path": "/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
                    "host": [
                        "XXXXXXXXXXXXXXX.com"
                    ]
                },
                "tlsSettings": {
                    "certificates": [
                        {
                            "certificateFile": "/path/to/certificateFile/XXXXXXXX",
                            "keyFile": "/path/to/keyFile/XXXXXXXX"
                        }
                    ]
                }
            }
        },
        {
            "tag": "in-vmess-ws",
            "listen": "127.0.0.1",
            "port": XXXX,
            "protocol": "vmess",
            "settings": {
                "udp": true,
                "clients": [
                    {
                        "alterId": 64,
                        "security": "auto",
                        "id": "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"
                    },
                    {
                        "alterId": 64,
                        "security": "auto",
                        "id": "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"
                    }
                ]
            },
            "streamSettings": {
                "network": "ws",
                "security": "none",
                "wsSettings": {
                    "path": "/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
                }
            }
        }
    ]
}

// 06_outbounds.json
{
    "outbounds": [
        {
            "tag": "direct",
            "protocol": "freedom",
            "settings": {}
        },
        {
            "tag": "blocked",
            "protocol": "blackhole",
            "settings": {}
        }
    ]
}

// 07_transport.json
{
    "transport": {}
}

// 08_stats.json
{
    "stats": {}
}

// 09_reverse.json
{
    "reverse": {}
}

客户端配置:

{
    "api": {
        "services": [
            "HandlerService",
            "LoggerService",
            "StatsService"
        ],
        "tag": "_QV2RAY_API_"
    },
    "dns": {
        "hosts": {
            "dns.google": "8.8.8.8",
            "doh.pub": "119.29.29.29"
        },
        "servers": [
            "localhost",
            "https://dns.google/dns-query",
            {
                "QV2RAY_DNS_IS_COMPLEX_DNS": true,
                "address": "https+local://223.5.5.5/dns-query",
                "domains": [
                    "geosite:cn"
                ],
                "expectIPs": [
                    "geoip:cn"
                ],
                "port": 53
            },
            {
                "QV2RAY_DNS_IS_COMPLEX_DNS": true,
                "address": "https://1.1.1.1/dns-query",
                "domains": [
                    "geosite:geolocation-!cn"
                ],
                "expectIPs": [
                ],
                "port": 53
            },
            "8.8.8.8",
            {
                "QV2RAY_DNS_IS_COMPLEX_DNS": true,
                "address": "114.114.114.114",
                "domains": [
                    "geosite:cn"
                ],
                "expectIPs": [
                ],
                "port": 53
            },
            "223.5.5.5",
            {
                "QV2RAY_DNS_IS_COMPLEX_DNS": true,
                "address": "1.1.1.1",
                "domains": [
                    "geosite:geolocation-!cn"
                ],
                "expectIPs": [
                ],
                "port": 53
            },
            "8.8.4.4"
        ]
    },
    "inbounds": [
        {
            "listen": "127.0.0.1",
            "port": 15490,
            "protocol": "dokodemo-door",
            "settings": {
                "address": "127.0.0.1"
            },
            "sniffing": {
            },
            "tag": "_QV2RAY_API_INBOUND_"
        },
        {
            "listen": "127.0.0.1",
            "port": 8889,
            "protocol": "http",
            "settings": {
            },
            "sniffing": {
                "destOverride": [
                    "http",
                    "tls"
                ],
                "enabled": true
            },
            "tag": "http_IN"
        },
        {
            "listen": "127.0.0.1",
            "port": 1089,
            "protocol": "socks",
            "settings": {
                "auth": "noauth",
                "ip": "127.0.0.1",
                "udp": true,
                "userLevel": 0
            },
            "sniffing": {
                "destOverride": [
                    "http",
                    "tls"
                ],
                "enabled": true
            },
            "tag": "socks_IN"
        }
    ],
    "log": {
        "loglevel": "warning"
    },
    "outbounds": [
        {
            "_QV2RAY_USE_GLOBAL_FORWARD_PROXY_": false,
            "protocol": "vmess",
            "sendThrough": "0.0.0.0",
            "settings": {
                "vnext": [
                    {
                        "address": "XXXXXXXXXXXXXXX.com",
                        "port": 443,
                        "users": [
                            {
                                "alterId": 64,
                                "id": "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX",
                                "level": 0,
                                "security": "auto",
                                "testsEnabled": "none"
                            }
                        ]
                    }
                ]
            },
            "streamSettings": {
                "dsSettings": {
                    "path": "/"
                },
                "httpSettings": {
                    "host": [
                    ],
                    "path": "/"
                },
                "kcpSettings": {
                    "congestion": false,
                    "downlinkCapacity": 20,
                    "header": {
                        "type": "none"
                    },
                    "mtu": 1350,
                    "readBufferSize": 1,
                    "tti": 20,
                    "uplinkCapacity": 5,
                    "writeBufferSize": 1
                },
                "network": "ws",
                "quicSettings": {
                    "header": {
                        "type": "none"
                    },
                    "key": "",
                    "security": ""
                },
                "security": "tls",
                "sockopt": {
                    "mark": 0,
                    "tcpFastOpen": false,
                    "tproxy": "off"
                },
                "tcpSettings": {
                    "header": {
                        "request": {
                            "headers": {
                            },
                            "method": "GET",
                            "path": [
                            ],
                            "version": "1.1"
                        },
                        "response": {
                            "headers": {
                            },
                            "reason": "OK",
                            "status": "200",
                            "version": "1.1"
                        },
                        "type": "none"
                    }
                },
                "tlsSettings": {
                    "allowInsecure": false,
                    "allowInsecureCiphers": false,
                    "alpn": [
                    ],
                    "certificates": [
                    ],
                    "disableSessionResumption": true,
                    "disableSystemRoot": false,
                    "serverName": "XXXXXXXXXXXXXXX.com"
                },
                "wsSettings": {
                    "headers": {
                    },
                    "path": "/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
                }
            },
            "tag": "Vultr-WebSocket"
        },
        {
            "protocol": "freedom",
            "sendThrough": "0.0.0.0",
            "settings": {
                "domainStrategy": "AsIs",
                "redirect": ":0",
                "userLevel": 0
            },
            "streamSettings": {
                "kcpSettings": {
                }
            },
            "tag": "outBound_DIRECT"
        },
        {
            "protocol": "blackhole",
            "sendThrough": "0.0.0.0",
            "settings": {
                "response": {
                    "type": "none"
                }
            },
            "streamSettings": {
                "kcpSettings": {
                }
            },
            "tag": "outBound_BLACKHOLE"
        },
        {
            "protocol": "dns",
            "streamSettings": {
                "kcpSettings": {
                }
            },
            "tag": "dns-out"
        }
    ],
    "policy": {
        "system": {
            "statsInboundDownlink": true,
            "statsInboundUplink": true,
            "statsOutboundDownlink": true,
            "statsOutboundUplink": true
        }
    },
    "routing": {
        "domainStrategy": "IPIfNonMatch",
        "rules": [
            {
                "inboundTag": [
                    "_QV2RAY_API_INBOUND_"
                ],
                "outboundTag": "_QV2RAY_API_",
                "type": "field"
            },
            {
                "outboundTag": "outBound_DIRECT",
                "protocol": [
                    "bittorrent"
                ],
                "type": "field"
            },
            {
                "inboundTag": [
                    "socks_IN"
                ],
                "outboundTag": "dns-out",
                "port": "53",
                "type": "field"
            },
            {
                "ip": [
                    "geoip:private"
                ],
                "outboundTag": "outBound_DIRECT",
                "type": "field"
            },
            {
                "domain": [
                    "geosite:category-ads-all"
                ],
                "outboundTag": "outBound_BLACKHOLE",
                "type": "field"
            },
            {
                "ip": [
                    "1.1.1.1/32",
                    "1.0.0.1/32",
                    "8.8.8.8/32",
                    "8.8.4.4/32",
                    "geoip:us",
                    "geoip:ca",
                    "91.108.4.0/22",
                    "91.108.8.0/22",
                    "91.108.12.0/22",
                    "91.108.20.0/22",
                    "91.108.36.0/23",
                    "91.108.38.0/23",
                    "91.108.56.0/22",
                    "149.154.160.0/20",
                    "149.154.164.0/22",
                    "149.154.172.0/22",
                    "74.125.0.0/16",
                    "173.194.0.0/16",
                    "172.217.0.0/16",
                    "216.58.200.0/24",
                    "216.58.220.0/24",
                    "91.108.56.116",
                    "91.108.56.0/24",
                    "109.239.140.0/24",
                    "149.154.167.0/24",
                    "149.154.175.0/24"
                ],
                "outboundTag": "Vultr-WebSocket",
                "type": "field"
            },
            {
                "domain": [
                    "geosite:geolocation-!cn",
                    "geosite:google",
                    "geosite:github",
                    "geosite:netflix",
                    "geosite:steam",
                    "geosite:telegram",
                    "geosite:tumblr",
                    "domain:naver.com",
                    "geosite:bbc",
                    "domain:gvt1.com",
                    "domain:textnow.com",
                    "domain:twitch.tv",
                    "domain:wikileaks.org"
                ],
                "outboundTag": "Vultr-WebSocket",
                "type": "field"
            },
            {
                "ip": [
                    "223.5.5.5/32",
                    "119.29.29.29/32",
                    "180.76.76.76/32",
                    "114.114.114.114/32",
                    "geoip:cn",
                    "geoip:private"
                ],
                "outboundTag": "outBound_DIRECT",
                "type": "field"
            },
            {
                "domain": [
                    "geosite:tld-cn",
                    "geosite:cn",
                    "domain:12306.com",
                    "domain:51ym.me",
                    "domain:52pojie.cn",
                    "domain:8686c.com",
                    "domain:abercrombie.com",
                    "domain:adobesc.com",
                    "domain:air-matters.com",
                    "domain:air-matters.io",
                    "domain:airtable.com",
                    "domain:akadns.net",
                    "domain:apache.org",
                    "domain:api.crisp.chat",
                    "domain:api.termius.com",
                    "domain:appshike.com",
                    "domain:appstore.com",
                    "domain:aweme.snssdk.com",
                    "domain:bababian.com",
                    "domain:battle.net",
                    "domain:beatsbydre.com",
                    "domain:bet365.com",
                    "domain:bilibili.cn",
                    "domain:ccgslb.com",
                    "domain:ccgslb.net",
                    "domain:chunbo.com",
                    "domain:chunboimg.com",
                    "domain:clashroyaleapp.com",
                    "domain:cloudsigma.com",
                    "domain:cloudxns.net",
                    "domain:cmfu.com",
                    "domain:culturedcode.com",
                    "domain:dct-cloud.com",
                    "domain:didialift.com",
                    "domain:douyutv.com",
                    "domain:duokan.com",
                    "domain:dytt8.net",
                    "domain:easou.com",
                    "domain:ecitic.net",
                    "domain:eclipse.org",
                    "domain:eudic.net",
                    "domain:ewqcxz.com",
                    "domain:fir.im",
                    "domain:frdic.com",
                    "domain:fresh-ideas.cc",
                    "domain:godic.net",
                    "domain:goodread.com",
                    "domain:haibian.com",
                    "domain:hdslb.net",
                    "domain:hollisterco.com",
                    "domain:hongxiu.com",
                    "domain:hxcdn.net",
                    "domain:images.unsplash.com",
                    "domain:img4me.com",
                    "domain:ipify.org",
                    "domain:ixdzs.com",
                    "domain:jd.hk",
                    "domain:jianshuapi.com",
                    "domain:jomodns.com",
                    "domain:jsboxbbs.com",
                    "domain:knewone.com",
                    "domain:kuaidi100.com",
                    "domain:lemicp.com",
                    "domain:letvcloud.com",
                    "domain:lizhi.io",
                    "domain:localizecdn.com",
                    "domain:lucifr.com",
                    "domain:luoo.net",
                    "domain:mai.tn",
                    "domain:maven.org",
                    "domain:miwifi.com",
                    "domain:moji.com",
                    "domain:moke.com",
                    "domain:mtalk.google.com",
                    "domain:mxhichina.com",
                    "domain:myqcloud.com",
                    "domain:myunlu.com",
                    "domain:netease.com",
                    "domain:nfoservers.com",
                    "domain:nssurge.com",
                    "domain:nuomi.com",
                    "domain:ourdvs.com",
                    "domain:overcast.fm",
                    "domain:paypal.com",
                    "domain:paypalobjects.com",
                    "domain:pgyer.com",
                    "domain:qdaily.com",
                    "domain:qdmm.com",
                    "domain:qin.io",
                    "domain:qingmang.me",
                    "domain:qingmang.mobi",
                    "domain:qqurl.com",
                    "domain:rarbg.to",
                    "domain:rrmj.tv",
                    "domain:ruguoapp.com",
                    "domain:sm.ms",
                    "domain:snwx.com",
                    "domain:soku.com",
                    "domain:startssl.com",
                    "domain:store.steampowered.com",
                    "domain:symcd.com",
                    "domain:teamviewer.com",
                    "domain:tmzvps.com",
                    "domain:trello.com",
                    "domain:trellocdn.com",
                    "domain:ttmeiju.com",
                    "domain:udache.com",
                    "domain:uxengine.net",
                    "domain:weather.bjango.com",
                    "domain:weather.com",
                    "domain:webqxs.com",
                    "domain:weico.cc",
                    "domain:wenku8.net",
                    "domain:werewolf.53site.com",
                    "domain:windowsupdate.com",
                    "domain:wkcdn.com",
                    "domain:workflowy.com",
                    "domain:xdrig.com",
                    "domain:xiaojukeji.com",
                    "domain:xiaomi.net",
                    "domain:xiaomicp.com",
                    "domain:ximalaya.com",
                    "domain:xitek.com",
                    "domain:xmcdn.com",
                    "domain:xslb.net",
                    "domain:xteko.com",
                    "domain:yach.me",
                    "domain:yixia.com",
                    "domain:yunjiasu-cdn.net",
                    "domain:zealer.com",
                    "domain:zgslb.net",
                    "domain:zimuzu.tv",
                    "domain:zmz002.com",
                    "domain:samsungdm.com"
                ],
                "outboundTag": "outBound_DIRECT",
                "type": "field"
            },
            {
                "ip": [
                    "geoip:cn"
                ],
                "outboundTag": "outBound_DIRECT",
                "type": "field"
            },
            {
                "domain": [
                    "geosite:cn"
                ],
                "outboundTag": "outBound_DIRECT",
                "type": "field"
            }
        ]
    },
    "stats": {
    }
}

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

服务器端错误日志:

2020/10/02 01:40:11 [Warning] v2ray.com/core: V2Ray 4.29.0 started
2020/10/04 07:26:55 [Warning] v2ray.com/core: V2Ray 4.30.0 started

客户端错误日志:

2020/10/05 01:31:27 [Warning] v2ray.com/core: V2Ray 4.30.0 started
2020/10/05 01:31:31 127.0.0.1:52843 accepted tcp:127.0.0.1:0 [_QV2RAY_API_]
2020/10/05 01:31:33 tcp:127.0.0.1:52844 accepted tcp:XXX.XXX.XXX.XXX:443 [Vultr-WebSocket]
2020/10/05 01:31:38 127.0.0.1:52845 accepted //mtalk.google.com:443 [Vultr-WebSocket]
2020/10/05 01:31:38 127.0.0.1:52846 accepted //ssl.gstatic.com:443 [Vultr-WebSocket]
2020/10/05 01:31:50 127.0.0.1:52851 accepted //play.google.com:443 [Vultr-WebSocket]
2020/10/05 01:31:53 tcp:127.0.0.1:52847 accepted tcp:XXX.XXX.XXX.XXX:443 [Vultr-WebSocket]
2020/10/05 01:31:56 127.0.0.1:52856 accepted //docs.google.com:443 [Vultr-WebSocket]
2020/10/05 01:32:06 127.0.0.1:52855 accepted //firefox.settings.services.mozilla.com:443 [Vultr-WebSocket]
2020/10/05 01:32:11 127.0.0.1:52859 accepted http://ocsp.apple.com/ocsp04-devid01/XXXXXXX [Vultr-WebSocket]
2020/10/05 01:32:11 127.0.0.1:52860 accepted //github.com:443 [Vultr-WebSocket]
2020/10/05 01:32:13 127.0.0.1:52861 accepted //play.google.com:443 [Vultr-WebSocket]
2020/10/05 01:32:14 [Warning] [2822812427] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: failed to find an available destination > v2ray.com/core/common/retry: [v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52849->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52853->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52858->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > dial tcp: operation was canceled] > v2ray.com/core/common/retry: all retry attempts failed
2020/10/05 01:32:14 127.0.0.1:52862 accepted http://ocsp.apple.com/ocsp04-devid01/XXXXXXX [Vultr-WebSocket]
2020/10/05 01:32:15 127.0.0.1:52869 accepted //github.com:443 [Vultr-WebSocket]
2020/10/05 01:32:16 [Warning] [3246785022] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write response > write tcp 127.0.0.1:8889->127.0.0.1:52859: write: protocol wrong type for socket
2020/10/05 01:32:17 tcp:127.0.0.1:52870 accepted tcp:XXX.XXX.XXX.XXX:443 [Vultr-WebSocket]
2020/10/05 01:32:27 127.0.0.1:52875 accepted //www.google.com:443 [Vultr-WebSocket]
2020/10/05 01:32:29 [Warning] [1026272978] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: failed to find an available destination > v2ray.com/core/common/retry: [v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > read tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52857->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52867->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52872->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://):  > dial tcp: operation was canceled] > v2ray.com/core/common/retry: all retry attempts failed
2020/10/05 01:32:34 127.0.0.1:52876 accepted //aa.google.com:443 [Vultr-WebSocket]
2020/10/05 01:32:36 127.0.0.1:52882 accepted //docs.google.com:443 [Vultr-WebSocket]
2020/10/05 01:32:51 127.0.0.1:52888 accepted //docs.google.com:443 [Vultr-WebSocket]
2020/10/05 01:32:55 127.0.0.1:52889 accepted //github.com:443 [Vultr-WebSocket]
2020/10/05 01:32:55 [Warning] [3316286594] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: failed to find an available destination > v2ray.com/core/common/retry: [v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52868->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52873->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52877->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52887->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > dial tcp: operation was canceled] > v2ray.com/core/common/retry: all retry attempts failed
2020/10/05 01:32:56 [Warning] [420484152] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: failed to find an available destination > v2ray.com/core/common/retry: [v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52871->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52879->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52886->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > dial tcp: operation was canceled] > v2ray.com/core/common/retry: all retry attempts failed
2020/10/05 01:32:56 [Warning] [380187324] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: failed to find an available destination > v2ray.com/core/common/retry: [v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52874->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52880->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52885->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > dial tcp: operation was canceled] > v2ray.com/core/common/retry: all retry attempts failed
2020/10/05 01:32:59 [Warning] [304818989] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: failed to find an available destination > v2ray.com/core/common/retry: [v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52881->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52884->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > dial tcp: operation was canceled] > v2ray.com/core/common/retry: all retry attempts failed
2020/10/05 01:33:06 127.0.0.1:52890 accepted //www.google.com:443 [Vultr-WebSocket]
2020/10/05 01:33:09 [Warning] [4005652474] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: failed to find an available destination > v2ray.com/core/common/retry: [v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52883->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > dial tcp: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > dial tcp: operation was canceled] > v2ray.com/core/common/retry: all retry attempts failed
2020/10/05 01:33:11 tcp:127.0.0.1:52894 accepted tcp:mail.XXX.com:143 [outBound_DIRECT]
2020/10/05 01:33:16 127.0.0.1:52895 accepted //github.com:443 [Vultr-WebSocket]
2020/10/05 01:33:22 tcp:127.0.0.1:52899 accepted tcp:mail.XXX.com:143 [outBound_DIRECT]
2020/10/05 01:33:25 127.0.0.1:52900 accepted //mtalk.google.com:5228 [Vultr-WebSocket]
2020/10/05 01:33:26 127.0.0.1:52901 accepted //peoplestackwebexperiments-pa.clients6.google.com:443 [Vultr-WebSocket]
2020/10/05 01:33:26 127.0.0.1:52902 accepted //peoplestackwebexperiments-pa.clients6.google.com:443 [Vultr-WebSocket]
2020/10/05 01:33:33 127.0.0.1:52908 accepted //peoplestackwebexperiments-pa.clients6.google.com:443 [Vultr-WebSocket]
2020/10/05 01:33:33 127.0.0.1:52909 accepted //peoplestackwebexperiments-pa.clients6.google.com:443 [Vultr-WebSocket]
2020/10/05 01:33:44 [Warning] [4040985591] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: failed to find an available destination > v2ray.com/core/common/retry: [v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52891->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52897->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52906->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52911->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > dial tcp: operation was canceled] > v2ray.com/core/common/retry: all retry attempts failed
2020/10/05 01:33:44 127.0.0.1:52913 accepted //github.com:443 [Vultr-WebSocket]
2020/10/05 01:33:55 127.0.0.1:52919 accepted //staticcdn.duckduckgo.com:443 [Vultr-WebSocket]
2020/10/05 01:33:55 127.0.0.1:52920 accepted //duckduckgo.com:443 [Vultr-WebSocket]
2020/10/05 01:33:57 tcp:127.0.0.1:52914 accepted tcp:XXX.XXX.XXX.XXX:443 [Vultr-WebSocket]
2020/10/05 01:34:05 [Warning] [744768344] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: failed to find an available destination > v2ray.com/core/common/retry: [v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52912->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52917->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52926->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > dial tcp: operation was canceled] > v2ray.com/core/common/retry: all retry attempts failed
2020/10/05 01:34:06 [Warning] [2806908723] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: failed to find an available destination > v2ray.com/core/common/retry: [v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52910->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52918->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52923->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > dial tcp: operation was canceled] > v2ray.com/core/common/retry: all retry attempts failed
2020/10/05 01:34:21 tcp:127.0.0.1:52927 accepted tcp:XXX.XXX.XXX.XXX:443 [Vultr-WebSocket]
2020/10/05 01:34:22 127.0.0.1:52931 accepted //github.com:443 [Vultr-WebSocket]
2020/10/05 01:34:30 [Warning] [3880772614] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: failed to find an available destination > v2ray.com/core/common/retry: [v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52916->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52925->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss:/XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52928->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52934->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > dial tcp: operation was canceled] > v2ray.com/core/common/retry: all retry attempts failed
2020/10/05 01:34:30 [Warning] [2382623583] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: failed to find an available destination > v2ray.com/core/common/retry: [v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > read tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52922->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52930->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52936->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > dial tcp: operation was canceled] > v2ray.com/core/common/retry: all retry attempts failed
2020/10/05 01:34:30 [Warning] [2519124406] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: failed to find an available destination > v2ray.com/core/common/retry: [v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > read tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52924->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52929->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52933->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > dial tcp: operation was canceled] > v2ray.com/core/common/retry: all retry attempts failed
2020/10/05 01:34:32 127.0.0.1:52938 accepted //github.com:443 [Vultr-WebSocket]
2020/10/05 01:34:37 127.0.0.1:52937 accepted //firefox.settings.services.mozilla.com:443 [Vultr-WebSocket]
2020/10/05 01:34:38 tcp:127.0.0.1:52940 accepted tcp:XXX.XXX.XXX.XXX:443 [Vultr-WebSocket]
2020/10/05 01:34:43 127.0.0.1:52941 accepted //incoming.telemetry.mozilla.org:443 [outBound_BLACKHOLE]
2020/10/05 01:34:58 127.0.0.1:52946 accepted //user-images.githubusercontent.com:443 [Vultr-WebSocket]
2020/10/05 01:34:59 tcp:127.0.0.1:52947 accepted tcp:XXX.XXX.XXX.XXX:443 [Vultr-WebSocket]
2020/10/05 01:35:01 [Warning] [3451613696] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: failed to find an available destination > v2ray.com/core/common/retry: [v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52942->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52945->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > dial tcp: operation was canceled] > v2ray.com/core/common/retry: all retry attempts failed
2020/10/05 01:35:08 127.0.0.1:52948 accepted //az764295.vo.msecnd.net:443 [Vultr-WebSocket]
2020/10/05 01:35:13 127.0.0.1:52953 accepted //mtalk.google.com:5228 [Vultr-WebSocket]
2020/10/05 01:35:14 127.0.0.1:52954 accepted http://get.sogou.com/q [outBound_DIRECT]
2020/10/05 01:35:15 127.0.0.1:52955 accepted http://get.sogou.com/q [outBound_DIRECT]
2020/10/05 01:35:19 tcp:127.0.0.1:52960 accepted tcp:XXX.XXX.XXX.XXX:443 [Vultr-WebSocket]
2020/10/05 01:35:22 [Warning] [2224008159] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: failed to find an available destination > v2ray.com/core/common/retry: [v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52943->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52944->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52952->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52956->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > dial tcp: operation was canceled] > v2ray.com/core/common/retry: all retry attempts failed
2020/10/05 01:35:24 127.0.0.1:52961 accepted http://suconfig.apple.com/resource/registration/v1/config.plist [Vultr-WebSocket]
2020/10/05 01:35:25 [Warning] [2175963295] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write response > write tcp 127.0.0.1:8889->127.0.0.1:52954: write: broken pipe
2020/10/05 01:35:25 [Warning] [796930957] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write response > write tcp 127.0.0.1:8889->127.0.0.1:52955: write: broken pipe
2020/10/05 01:35:26 127.0.0.1:52964 accepted //vscode-sync.trafficmanager.net:443 [Vultr-WebSocket]
2020/10/05 01:35:27 127.0.0.1:52965 accepted //github.com:443 [Vultr-WebSocket]
2020/10/05 01:35:31 127.0.0.1:52973 accepted http://suconfig.apple.com/resource/registration/v1/blacklist.plist [Vultr-WebSocket]
2020/10/05 01:35:34 [Warning] [3593076502] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: failed to find an available destination > v2ray.com/core/common/retry: [v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52951->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52957->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52968->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > dial tcp: operation was canceled] > v2ray.com/core/common/retry: all retry attempts failed
2020/10/05 01:35:34 [Warning] [3300046252] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: failed to find an available destination > v2ray.com/core/common/retry: [v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52950->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52959->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52970->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > dial tcp: operation was canceled] > v2ray.com/core/common/retry: all retry attempts failed
2020/10/05 01:35:40 tcp:127.0.0.1:52976 accepted tcp:XXX.XXX.XXX.XXX:443 [Vultr-WebSocket]
2020/10/05 01:35:41 127.0.0.1:52972 accepted //firefox.settings.services.mozilla.com:443 [Vultr-WebSocket]
2020/10/05 01:35:59 127.0.0.1:52981 accepted //profile.accounts.firefox.com:443 [Vultr-WebSocket]
2020/10/05 01:36:02 [Warning] [874978483] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: failed to find an available destination > v2ray.com/core/common/retry: [v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52967->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52975->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52978->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52986->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > dial tcp: operation was canceled] > v2ray.com/core/common/retry: all retry attempts failed
2020/10/05 01:36:05 [Warning] [3466270865] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: failed to find an available destination > v2ray.com/core/common/retry: [v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52977->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52984->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > dial tcp: operation was canceled] > v2ray.com/core/common/retry: all retry attempts failed
2020/10/05 01:36:08 tcp:127.0.0.1:52988 accepted tcp:XXX.XXX.XXX.XXX:443 [Vultr-WebSocket]
2020/10/05 01:36:10 127.0.0.1:52982 accepted //sync-1-us-west1-g.sync.services.mozilla.com:443 [Vultr-WebSocket]
2020/10/05 01:36:12 127.0.0.1:52994 accepted http://ocsp.digicert.com/ [Vultr-WebSocket]
2020/10/05 01:36:15 tcp:127.0.0.1:52995 accepted tcp:XXX.XXX.XXX.XXX:443 [Vultr-WebSocket]
2020/10/05 01:36:15 [Warning] [2802798225] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: failed to find an available destination > v2ray.com/core/common/retry: [v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52980->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52987->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52990->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > dial tcp: operation was canceled] > v2ray.com/core/common/retry: all retry attempts failed
2020/10/05 01:36:18 127.0.0.1:52996 accepted //gateway.icloud.com.cn:443 [outBound_DIRECT]
2020/10/05 01:36:23 tcp:127.0.0.1:52993 accepted tcp:XXX.XXX.XXX.XXX:443 [Vultr-WebSocket]
2020/10/05 01:36:23 [Warning] [3074578001] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: failed to find an available destination > v2ray.com/core/common/retry: [v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52974->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52979->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52985->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52991->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://XXXXXXXXXXXXXXX.com/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX):  > write tcp [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:52999->[XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:443: i/o timeout] > v2ray.com/core/common/retry: all retry attempts failed
2020/10/05 01:36:23 [Warning] [3074578001] v2ray.com/core/proxy/http: failed to read response from suconfig.apple.com > io: read/write on closed pipe
2020/10/05 01:36:23 127.0.0.1:53000 accepted http://ocsp.digicert.com/ [Vultr-WebSocket]

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

2020/10/04 17:30:06 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35788 accepted tcp:github.com:443 [direct]
2020/10/04 17:30:17 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35792 accepted tcp:alive.github.com:443 [direct]
2020/10/04 17:30:32 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35798 accepted udp:8.8.8.8:53 [direct]
2020/10/04 17:30:39 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35800 accepted tcp:github.com:443 [direct]
2020/10/04 17:31:10 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35806 accepted tcp:github.com:443 [direct]
2020/10/04 17:31:45 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35818 accepted tcp:mtalk.google.com:443 [direct]
2020/10/04 17:31:45 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35820 accepted tcp:ssl.gstatic.com:443 [direct]
2020/10/04 17:31:55 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35828 accepted tcp:play.google.com:443 [direct]
2020/10/04 17:31:55 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35826 accepted tcp:push.services.mozilla.com:443 [direct]
2020/10/04 17:32:16 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35838 accepted tcp:ocsp.apple.com:80 [direct]
2020/10/04 17:32:16 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35834 accepted tcp:ocsp.apple.com:80 [direct]
2020/10/04 17:32:16 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35836 accepted tcp:github.com:443 [direct]
2020/10/04 17:32:16 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35840 accepted tcp:play.google.com:443 [direct]
2020/10/04 17:32:36 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35850 accepted tcp:aa.google.com:443 [direct]
2020/10/04 17:33:11 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35854 accepted tcp:docs.google.com:443 [direct]
2020/10/04 17:33:12 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35856 accepted tcp:www.google.com:443 [direct]
2020/10/04 17:33:22 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35862 accepted tcp:github.com:443 [direct]
2020/10/04 17:33:32 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35870 accepted tcp:peoplestackwebexperiments-pa.clients6.google.com:443 [direct]
2020/10/04 17:33:32 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35868 accepted tcp:mtalk.google.com:5228 [direct]
2020/10/04 17:33:32 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35866 accepted tcp:peoplestackwebexperiments-pa.clients6.google.com:443 [direct]
2020/10/04 17:34:03 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35878 rejected  v2ray.com/core/proxy/vmess/encoding: failed to read request header > websocket: close 1006 (abnormal closure): unexpected EOF
2020/10/04 17:34:04 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35882 rejected  v2ray.com/core/proxy/vmess/encoding: failed to read request header > websocket: close 1006 (abnormal closure): unexpected EOF
2020/10/04 17:34:04 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35880 accepted tcp:push.services.mozilla.com:443 [direct]
2020/10/04 17:34:26 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35886 accepted tcp:push.services.mozilla.com:443 [direct]
2020/10/04 17:34:26 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35888 accepted tcp:github.com:443 [direct]
2020/10/04 17:34:37 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35894 accepted tcp:github.com:443 [direct]
2020/10/04 17:35:10 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35898 accepted tcp:az764295.vo.msecnd.net:443 [direct]
2020/10/04 17:35:20 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35902 accepted tcp:mtalk.google.com:5228 [direct]
2020/10/04 17:35:30 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35906 accepted tcp:suconfig.apple.com:80 [direct]
2020/10/04 17:35:30 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35908 accepted tcp:github.com:443 [direct]
2020/10/04 17:35:30 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35910 accepted tcp:vscode-sync.trafficmanager.net:443 [direct]
2020/10/04 17:36:01 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35918 accepted tcp:profile.accounts.firefox.com:443 [direct]
2020/10/04 17:36:12 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35924 accepted tcp:alive.github.com:443 [direct]
2020/10/04 17:36:12 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35922 accepted tcp:sync-1-us-west1-g.sync.services.mozilla.com:443 [direct]
2020/10/04 17:36:23 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35930 accepted tcp:alive.github.com:443 [direct]
2020/10/04 17:36:33 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35936 accepted tcp:github.com:443 [direct]
2020/10/04 17:36:33 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35934 accepted tcp:alive.github.com:443 [direct]
2020/10/04 17:36:44 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35942 accepted tcp:alive.github.com:443 [direct]
2020/10/04 17:36:54 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35948 accepted tcp:push.services.mozilla.com:443 [direct]
2020/10/04 17:36:54 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35946 accepted tcp:suconfig.apple.com:80 [direct]
2020/10/04 17:36:54 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35950 accepted tcp:alive.github.com:443 [direct]
2020/10/04 17:37:05 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35958 rejected  v2ray.com/core/proxy/vmess/encoding: failed to read request header > websocket: close 1006 (abnormal closure): unexpected EOF
2020/10/04 17:37:05 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35960 accepted tcp:mtalk.google.com:5228 [direct]
2020/10/04 17:37:26 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35964 accepted tcp:alive.github.com:443 [direct]
2020/10/04 17:37:36 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35968 accepted tcp:alive.github.com:443 [direct]
2020/10/04 17:37:36 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35970 accepted tcp:services.addons.mozilla.org:443 [direct]
2020/10/04 17:37:36 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35972 accepted tcp:aa.google.com:443 [direct]
2020/10/04 17:37:36 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35974 accepted tcp:github.com:443 [direct]
2020/10/04 17:37:46 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35986 accepted tcp:alive.github.com:443 [direct]
2020/10/04 17:37:57 [XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX]:35990 accepted tcp:alive.github.com:443 [direct]

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

Apache 配置文件:

<VirtualHost *:80>
ServerName XXXXXXXXXXXXXXX.com

Redirect permanent "/" "https://XXXXXXXXXXXXXXX.com/"
</VirtualHost>

<IfModule mod_ssl.c>
<VirtualHost *:443>
    # The ServerName directive sets the request scheme, hostname and port that
    # the server uses to identify itself. This is used when creating
    # redirection URLs. In the context of virtual hosts, the ServerName
    # specifies what hostname must appear in the request's Host: header to
    # match this virtual host. For the default virtual host (this file) this
    # value is not decisive as it is used as a last resort host regardless.
    # However, you must set it for any further virtual host explicitly.
    #ServerName www.example.com

    ServerAdmin 404@localhost
    DocumentRoot /var/www/XXXXX

    # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
    # error, crit, alert, emerg.
    # It is also possible to configure the loglevel for particular
    # modules, e.g.
    #LogLevel info ssl:warn

    ErrorLog ${APACHE_LOG_DIR}/v2ray_error.log
    CustomLog ${APACHE_LOG_DIR}/v2ray_access.log combined

    # For most configuration files from conf-available/, which are
    # enabled or disabled at a global level, it is possible to
    # include a line for only one particular virtual host. For example the
    # following line enables the CGI configuration for this host only
    # after it has been globally disabled with "a2disconf".
    #Include conf-available/serve-cgi-bin.conf

ServerName XXXXXXXXXXXXXXX.com

Include /etc/letsencrypt/options-ssl-apache.conf
SSLCertificateFile /etc/letsencrypt/live/XXXXXXXXXXXXXXX.com/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/XXXXXXXXXXXXXXX.com/privkey.pem

ProxyPass /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX ws://127.0.0.1:XXXX/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
ProxyPassReverse /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX ws://127.0.0.1:XXXX/v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Options -Indexes

Alias /formtools-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX /var/www/formtools
DirectoryIndex index.html index.php
</VirtualHost>
</IfModule>

Apache access.log

XXX.XXX.XXX.XXX - - [04/Oct/2020:17:31:10 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 10722 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:32:15 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 7471 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:32:15 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 7458 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:32:15 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 10927 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:31:44 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 8889 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:33:32 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 4933 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:31:54 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 8246 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:34:03 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 4013 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:34:03 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 4013 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:34:03 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 8075 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:32:36 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 14918 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:33:21 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 10933 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:31:54 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 6794 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:33:11 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 5620 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:33:32 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 6067 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:33:32 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 8888 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:34:26 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 10853 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:35:30 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 34422 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:34:26 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 4762 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:36:12 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 8742 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:36:22 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 8764 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:35:30 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 10988 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:36:33 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 8746 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:36:43 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 8821 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:35:09 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 14262 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:36:53 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 8340 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:36:54 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 8815 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:35:19 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 8830 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:36:01 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 8595 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:37:05 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 4013 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:35:30 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 8925 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:37:25 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 8764 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:36:33 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 10866 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:37:36 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 8705 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:34:36 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 60983 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:37:46 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 8696 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:37:56 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 8812 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:36:54 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 8194 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:37:36 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 10908 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:37:05 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 8801 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:36:12 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 9032 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:37:36 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 31134 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:37:36 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 14768 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:32:15 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 16471 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:38:27 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 15500 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:38:17 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 9862 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:38:17 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 9877 "-" "Go-http-client/1.1"
XXX.XXX.XXX.XXX - - [04/Oct/2020:17:38:17 +0000] "GET /v2ray-path/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX HTTP/1.1" 200 9955 "-" "Go-http-client/1.1"

Apache error.log 为空。

使用Qv2ray作为macOS的前端,其日志输出为:

[INIT]: Qv2ray PreInitialization: OK
[INIT]: Qv2ray 2.6.3 on macOS 10.15 x86_64
[CORE-UI]: Successfully installed a translator for en_US
[LICENCE]:
This program comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to redistribute it
under certain conditions.

Copyright (c) 2019-2020 Qv2ray Development Group.
Third-party libraries that have been used in Qv2ray can be found in the About page.

[INIT]: Application exec path: /Applications/qv2ray.app/Contents/MacOS
[INIT]: Path: /Applications/qv2ray.app/Contents/MacOS/config/ does not contain a valid config file.
[CORE-SETTINGS]: Found a config file, v= path=/Users/XXXXX/Library/Preferences/qv2ray/
[INIT]: Using /Users/XXXXX/Library/Preferences/qv2ray/ as the config path.
[CORE-UI]: Removed translations
[CORE-UI]: Successfully installed a translator for en_US
[COMMON-NETWORK]: Current OpenSSL version: Secure Transport, macOS 10.15
[CORE-UI]: Found factory style: macintosh
[CORE-UI]: Found factory style: Windows
[CORE-UI]: Found factory style: Fusion
[CORE-UI]: Found QSS style at: ":/uistyles/flatwhite.css"
[CORE-UI]: Found QSS style at: ":/uistyles/psblack.css"
[COMPONENT-PLUGINHOST]: Reloading plugin list
[CORE-UI]: Applying UI style: macintosh
[CORE-UI]: Loading data...
[CORE-CONNECTION]: Inserting default values to simple config
[QV2RAY-CORE]: Cannot disconnect when there's nothing connected.
[CORE-CONNECTION]: Outbound protocol vmess is not a registered plugin outbound.
[CORE-CONNECTION]: Outbound protocol freedom is not a registered plugin outbound.
[CORE-CONNECTION]: Outbound protocol blackhole is not a registered plugin outbound.
[CORE-CONNECTION]: Outbound protocol dns is not a registered plugin outbound.
[CORE-CONNECTION]: Applying new outbound settings.
[CORE-VCORE]: Starting kernels with V2RayIntegration.
[CORE-VCORE]: Core ABI: macOS Mach-O executable
[CORE-VCORE]: Host ABI: macOS Mach-O executable
[CORE-VCORE]: Host is compatible with core
[CORE-VCORE]: V2Ray output: V2Ray 4.28.2 (V2Fly, a community-driven edition of V2Ray.) Custom (go1.15.2 darwin/amd64);A unified platform for anti-censorship.
[CORE-UI]: ProxyAddress: 127.0.0.1
[COMPONENT-PROXY]: Setting up System Proxy
[COMPONENT-PROXY]: Qv2ray will set system proxy to use HTTP
[COMPONENT-PROXY]: Qv2ray will set system proxy to use SOCKS
[COMPONENT-PROXY]: Unknown error
[COMPONENT-PROXY]: Found 2 network services: Wi-Fi;Bluetooth PAN
[COMPONENT-PROXY]: Setting proxy for interface: Wi-Fi
[CORE-VCORE]: gRPC Version: 1.30.2
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[COMPONENT-PROXY]: Setting proxy for interface: Bluetooth PAN
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-UI]: Setting current item.
[COMMON-NETWORK]: Start checking update for channel ID: 0
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)

[COMMON-NETWORK]: Network error: ConnectionRefusedError

[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)

[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)

[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)

[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)

[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)

[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)

[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)

[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)

[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)
[CORE-VCORE]: API call returns: 14 (failed to connect to all addresses)

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

可以正常启动。

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

服务运行正常,手机端用V2rayNG可以正常连接。

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

langongjin commented 3 years ago

我在ubuntu20.04里也遇到了一样的问题,请问怎么解决?

mingcenwei commented 3 years ago

我在ubuntu20.04里也遇到了一样的问题,请问怎么解决?

关掉IPv6只用IPv4就行了~

langongjin commented 3 years ago

我在ubuntu20.04里也遇到了一样的问题,请问怎么解决?

关掉IPv6只用IPv4就行了~

谢谢!我试试,不过目前我发现,有的节点会有这个问题,有的节点就不存在这个问题。

weijiang1994 commented 2 years ago

请问怎么解决的呀?我手机端访问正常,电脑端有时候就会出现这种问题。

PaulusChen commented 2 years ago

我在ubuntu20.04里也遇到了一样的问题,请问怎么解决?

关掉IPv6只用IPv4就行了~

谢谢!我试试,不过目前我发现,有的节点会有这个问题,有的节点就不存在这个问题。

亲 解决了么 我也遇到了同样问题 关掉了ipv6好像也有问题 如果你那边可以的话 请问你是怎么关闭ipv6的

miaobang commented 2 years ago

请问怎么解决的呀?我手机端访问正常,电脑端有时候就会出现这种问题。

我也遇到这个问题,请问解决了吗?求教

foxyZeng commented 2 years ago

我也出现了这种情况,同步下windows时间就好了

358383948 commented 2 years ago

我也出现了这种情况,同步下windows时间就好了

请问怎么同步windows的时间呢?求指教

AnmoWu commented 2 years ago

我也出现了这种情况,同步下windows时间就好了

请问怎么同步windows的时间呢?求指教

设置->日期和时间->立即同步

358383948 commented 2 years ago

这是来自QQ邮箱的假期自动回复邮件。你好,现在我不在线。我在看到后,尽快给你回复。

wenge110110 commented 1 year ago

关掉IPv6只用IPv4就行了~

谢谢!我试试,不过目前我发现,有的节点会有这个问题,有的节点就不存在这个问题。

正解

358383948 commented 1 year ago

这是来自QQ邮箱的假期自动回复邮件。你好,现在我不在线。我在看到后,尽快给你回复。