v2ray / v2ray-core

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

HTTPS连接无规律性中断,浏览器一直显示“TLS握手中” #662

Closed AbraxasVi closed 6 years ago

AbraxasVi commented 7 years ago

提交 Issue 之前请先阅读 Issue 指引,然后回答下面的问题,谢谢。 Please read the instruction and answer the following questions before submitting your issue. Thank you.

1) 你正在使用哪个版本的 V2Ray?(如果服务器和客户端使用了不同版本,请注明) What version of V2Ray are you using (If you deploy different version on server and client, please explicitly point out)? C/S端均为2.44

2) 你的使用场景是什么?比如使用 Chrome 通过 Socks/VMess 代理观看 YouTube 视频。 What's your scenario of using V2Ray? E.g., Watching YouTube videos in Chrome via Socks/VMess proxy. 使用 Chrome 通过 Socks 代理连接 Wikipedia/GitHub 等HTTPS网站。

3) 你看到的不正常的现象是什么? What did you see? HTTPS连接无规律性中断,浏览器一直显示“TLS握手中”

4) 你期待看到的正确表现是怎样的? What's your expectation? 正常连接

5) 请附上你的配置文件(提交 Issue 前请隐藏服务器端IP地址)。 Please attach your configuration file (Mask IP addresses before submit this issue).

Server Configuration File(服务器端配置文件):
    // 在这里附上服务器端配置文件
    // Please attach your server configuration file here.
    {
 "outbound": {
  "streamSettings": null, 
  "tag": null, 
  "protocol": "freedom", 
  "mux": null, 
  "settings": null
 }, 
 "log": {
  "access": "/var/log/v2ray/access.log", 
  "loglevel": "info", 
  "error": "/var/log/v2ray/error.log"
 }, 
 "inboundDetour": null, 
 "inbound": {
  "streamSettings": {
   "network": "kcp", 
   "kcpSettings": {
    "uplinkCapacity": 100, 
    "downlinkCapacity": 100, 
    "readBufferSize": 2, 
    "mtu": 1350, 
    "header": {
     "request": null, 
     "type": "none", 
     "response": null
    }, 
    "tti": 50, 
    "congestion": false, 
    "writeBufferSize": 2
   }, 
   "wsSettings": null, 
   "tcpSettings": null, 
   "tlsSettings": {}, 
   "security": ""
  }, 
  "listen": null, 
  "protocol": "vmess", 
  "port": 575, 
  "settings": {
   "ip": null, 
   "udp": true, 
   "clients": [
    {
     "alterId": 100, 
     "security": "chacha20-poly1305", 
     "id": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
    }
   ], 
   "auth": null
  }
 }, 
 "outboundDetour": [
  {
   "tag": "blocked", 
   "protocol": "blackhole", 
   "settings": null
  }
 ], 
 "routing": {
  "strategy": "rules", 
  "settings": {
   "rules": [
    {
     "ip": [
      "0.0.0.0/8", 
      "10.0.0.0/8", 
      "100.64.0.0/10", 
      "127.0.0.0/8", 
      "169.254.0.0/16", 
      "172.16.0.0/12", 
      "192.0.0.0/24", 
      "192.0.2.0/24", 
      "192.168.0.0/16", 
      "198.18.0.0/15", 
      "198.51.100.0/24", 
      "203.0.113.0/24", 
      "::1/128", 
      "fc00::/7", 
      "fe80::/10"
     ], 
     "domain": null, 
     "type": "field", 
     "port": null, 
     "outboundTag": "blocked"
    }
   ], 
   "domainStrategy": null
  }
 }, 
 "dns": null
Client Configuration File(客户端配置文件):
    // 在这里附上客户端配置文件
    // Please attach your client configuration file here.
{
    "outbound": {
        "streamSettings": {
            "network": "kcp",
            "kcpSettings": {
                "uplinkCapacity": 100,
                "downlinkCapacity": 100,
                "readBufferSize": 2,
                "mtu": 1350,
                "header": {
                    "type": "none",
                    "request": null,
                    "response": null
                },
                "tti": 50,
                "congestion": false,
                "writeBufferSize": 2
            },
            "wsSettings": null,
            "tcpSettings": null,
            "tlsSettings": {},
            "security": ""
        },
        "tag": "agentout",
        "protocol": "vmess",
        "mux": {
            "enabled": true
        },
        "settings": {
            "vnext": [{
                "users": [{
                    "alterId": 100,
                    "security": "chacha20-poly1305",
                    "id": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
                }],
                "port": 575,
                "address": "xxx.xxx.xxx.xxx"
            }]
        }
    },
    "log": {
        "access": "",
        "loglevel": "info",
        "error": ""
    },
    "outboundDetour": [{
            "tag": "direct",
            "protocol": "freedom",
            "settings": {
                "response": null
            }
        },
        {
            "tag": "blockout",
            "protocol": "blackhole",
            "settings": {
                "response": {
                    "type": "http"
                }
            }
        }
    ],
    "inbound": {
        "streamSettings": null,
        "settings": {
            "ip": "127.0.0.1",
            "udp": true,
            "clients": null,
            "auth": "noauth"
        },
        "protocol": "socks",
        "port": 1082,
        "listen": "0.0.0.0"
    },
    "inboundDetour": null,
    "routing": {
        "settings": {
            "rules": [{
                    "ip": [
                        "0.0.0.0/8",
                        "10.0.0.0/8",
                        "100.64.0.0/10",
                        "127.0.0.0/8",
                        "169.254.0.0/16",
                        "172.16.0.0/12",
                        "192.0.0.0/24",
                        "192.0.2.0/24",
                        "192.168.0.0/16",
                        "198.18.0.0/15",
                        "198.51.100.0/24",
                        "203.0.113.0/24",
                        "::1/128",
                        "fc00::/7",
                        "fe80::/10"
                    ],
                    "domain": null,
                    "type": "field",
                    "port": null,
                    "outboundTag": "direct"
                },
                {
                    "type": "chinaip",
                    "outboundTag": "direct"
                },
                {
                    "type": "chinasites",
                    "outboundTag": "direct"
                }
            ],
            "domainStrategy": "IPIfNonMatch"
        },
        "strategy": "rules"
    },
    "dns": {
        "servers": [
            "8.8.8.8",
            "8.8.4.4",
            "localhost"
        ]
    }
}

6) 请附上出错时软件输出的日志。在 Linux 中,日志通常在 /var/log/v2ray/error.log 文件中。 Please attach the log file, especially the bottom lines if the file is large. Log file is usually /var/log/v2ray/error.log on Linux.

Server Log File(服务器端日志):
    // 在这里附上服务器端日志
    // Please attach your server log here.
2017/10/28 20:06:00 [Info]Transport|Internet|mKCP: closing connection to cli.ent.i.p:28272
2017/10/28 20:06:00 [Info]App|Proxyman|Inbound: connection ends > Proxy|VMess|Inbound: connection ends > io: read/write on closed pipe
2017/10/28 20:06:00 [Info]App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2017/10/28 20:06:00 [Info]App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2017/10/28 20:06:00 [Info]App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2017/10/28 20:06:25 [Info]Transport|Internet|mKCP: terminating connection to cli.ent.i.p:28272
2017/10/28 20:06:26 [Info]Transport|Internet|mKCP: creating connection 47240
2017/10/28 20:06:26 [Info]Proxy|VMess|Inbound: received request for tcp:v1.mux.cool:9527
2017/10/28 20:06:26 [Info]App|Proxyman|Mux: received request for udp:8.8.4.4:53
2017/10/28 20:06:26 [Info]App|Dispatcher|Default: default route for udp:8.8.4.4:53
2017/10/28 20:06:26 [Info]Proxy|Freedom: opening connection to udp:8.8.4.4:53
2017/10/28 20:06:26 [Info]Transport|Internet|mKCP: creating connection 47241
2017/10/28 20:06:26 [Info]Proxy|VMess|Inbound: received request for tcp:v1.mux.cool:9527
2017/10/28 20:06:26 [Info]App|Proxyman|Mux: received request for tcp:tch225403.tch.quora.com:443
2017/10/28 20:06:26 [Info]App|Proxyman|Mux: received request for tcp:tch403569.tch.quora.com:443
2017/10/28 20:06:26 [Info]App|Dispatcher|Default: default route for tcp:tch403569.tch.quora.com:443
2017/10/28 20:06:26 [Info]Proxy|Freedom: opening connection to tcp:tch403569.tch.quora.com:443
2017/10/28 20:06:26 [Info]Transport|Internet|TCP: dailing TCP to tcp:tch403569.tch.quora.com:443
2017/10/28 20:06:26 [Info]App|Dispatcher|Default: default route for tcp:tch225403.tch.quora.com:443
2017/10/28 20:06:26 [Info]Proxy|Freedom: opening connection to tcp:tch225403.tch.quora.com:443
2017/10/28 20:06:26 [Info]Transport|Internet|TCP: dailing TCP to tcp:tch225403.tch.quora.com:443
2017/10/28 20:06:26 [Info]App|Proxyman|Mux: received request for tcp:github.com:443
2017/10/28 20:06:26 [Info]App|Proxyman|Mux: received request for tcp:api.userstyles.org:443
2017/10/28 20:06:26 [Info]App|Dispatcher|Default: default route for tcp:github.com:443
2017/10/28 20:06:26 [Info]Proxy|Freedom: opening connection to tcp:github.com:443
2017/10/28 20:06:26 [Info]Transport|Internet|TCP: dailing TCP to tcp:github.com:443
2017/10/28 20:06:26 [Info]App|Dispatcher|Default: default route for tcp:api.userstyles.org:443
2017/10/28 20:06:26 [Info]Proxy|Freedom: opening connection to tcp:api.userstyles.org:443
2017/10/28 20:06:26 [Info]Transport|Internet|TCP: dailing TCP to tcp:api.userstyles.org:443
2017/10/28 20:06:26 [Info]App|Proxyman|Mux: received request for tcp:lp-push-server-343.lastpass.com:443
2017/10/28 20:06:26 [Info]App|Proxyman|Mux: received request for udp:8.8.4.4:53
2017/10/28 20:06:26 [Info]App|Proxyman|Mux: received request for tcp:api.userstyles.org:443
2017/10/28 20:06:26 [Info]App|Proxyman|Mux: received request for tcp:greasyfork.org:443
2017/10/28 20:06:26 [Info]App|Proxyman|Mux: received request for tcp:greasyfork.org:443
2017/10/28 20:06:26 [Info]App|Proxyman|Mux: received request for tcp:twitter.com:443
2017/10/28 20:06:26 [Info]App|Proxyman|Mux: received request for tcp:twitter.com:443
2017/10/28 20:06:26 [Info]App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > Proxy|Freedom: failed to process response > io: read/write on closed pipe
2017/10/28 20:06:26 [Info]App|Dispatcher|Default: default route for tcp:lp-push-server-343.lastpass.com:443
2017/10/28 20:06:26 [Info]Proxy|Freedom: opening connection to tcp:lp-push-server-343.lastpass.com:443
2017/10/28 20:06:26 [Info]Transport|Internet|TCP: dailing TCP to tcp:lp-push-server-343.lastpass.com:443
2017/10/28 20:06:26 [Info]App|Dispatcher|Default: default route for tcp:greasyfork.org:443
2017/10/28 20:06:26 [Info]Proxy|Freedom: opening connection to tcp:greasyfork.org:443
2017/10/28 20:06:26 [Info]Transport|Internet|TCP: dailing TCP to tcp:greasyfork.org:443
2017/10/28 20:06:26 [Info]App|Dispatcher|Default: default route for udp:8.8.4.4:53
2017/10/28 20:06:26 [Info]Proxy|Freedom: opening connection to udp:8.8.4.4:53
2017/10/28 20:06:26 [Info]App|Dispatcher|Default: default route for tcp:api.userstyles.org:443
2017/10/28 20:06:26 [Info]Proxy|Freedom: opening connection to tcp:api.userstyles.org:443
2017/10/28 20:06:26 [Info]App|Dispatcher|Default: default route for tcp:greasyfork.org:443
2017/10/28 20:06:26 [Info]Proxy|Freedom: opening connection to tcp:greasyfork.org:443
2017/10/28 20:06:26 [Info]Transport|Internet|TCP: dailing TCP to tcp:api.userstyles.org:443
2017/10/28 20:06:26 [Info]Transport|Internet|TCP: dailing TCP to tcp:greasyfork.org:443
2017/10/28 20:06:26 [Info]App|Dispatcher|Default: default route for tcp:twitter.com:443
2017/10/28 20:06:26 [Info]Proxy|Freedom: opening connection to tcp:twitter.com:443
2017/10/28 20:06:26 [Info]Transport|Internet|TCP: dailing TCP to tcp:twitter.com:443
2017/10/28 20:06:26 [Info]App|Dispatcher|Default: default route for tcp:twitter.com:443
2017/10/28 20:06:26 [Info]Proxy|Freedom: opening connection to tcp:twitter.com:443
2017/10/28 20:06:26 [Info]Transport|Internet|TCP: dailing TCP to tcp:twitter.com:443
2017/10/28 20:06:26 [Info]App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > Proxy|Freedom: failed to process response > io: read/write on closed pipe
2017/10/28 20:06:27 [Info]App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > Proxy|Freedom: failed to process response > io: read/write on closed pipe
2017/10/28 20:06:27 [Info]App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > Proxy|Freedom: failed to process response > io: read/write on closed pipe
2017/10/28 20:06:56 [Info]Transport|Internet|mKCP: closing connection to cli.ent.i.p:28577
2017/10/28 20:06:56 [Info]App|Proxyman|Inbound: connection ends > Proxy|VMess|Inbound: connection ends > io: read/write on closed pipe
2017/10/28 20:06:56 [Info]App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2017/10/28 20:06:56 [Info]App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2017/10/28 20:06:57 [Info]Transport|Internet|mKCP: closing connection to cli.ent.i.p:28515
2017/10/28 20:06:57 [Info]App|Proxyman|Inbound: connection ends > Proxy|VMess|Inbound: connection ends > io: read/write on closed pipe
2017/10/28 20:06:57 [Info]App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2017/10/28 20:06:57 [Info]App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2017/10/28 20:06:57 [Info]App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2017/10/28 20:06:57 [Info]App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2017/10/28 20:07:06 [Info]Transport|Internet|mKCP: terminating connection to cli.ent.i.p:28515
2017/10/28 20:07:21 [Info]Transport|Internet|mKCP: terminating connection to cli.ent.i.p:28577
Client Log File(客户端日志):
    // 在这里附上客户端日志
    // Please attach your client log here.
2017/10/28 20:06:42 [Warning]failed to handler mux client connection > Proxy|VMess|Outbound: connection ends > io: read/write on closed pipe
2017/10/28 20:06:42 [Info]App|Proxyman|Mux: failed to read metadata > io: read/write on closed pipe
2017/10/28 20:06:42 [Info]Proxy|VMess|Encoding: failed to read response header > EOF
2017/10/28 20:06:44 [Info]App|Proxyman|Inbound: connection ends > Proxy|Socks: connection ends > context canceled
2017/10/28 20:06:44 [Info]App|Proxyman|Inbound: connection ends > Proxy|Socks: connection ends > context canceled
2017/10/28 20:06:44 [Info]App|Proxyman|Inbound: connection ends > Proxy|Socks: connection ends > context canceled
2017/10/28 20:06:44 [Info]App|Proxyman|Inbound: connection ends > Proxy|Socks: connection ends > context canceled
2017/10/28 20:06:44 [Info]Proxy|Socks: TCP Connect request to tcp:tch225403.tch.quora.com:443
2017/10/28 20:06:44 [Info]App|Router: looking up IP for tcp:tch225403.tch.quora.com:443
2017/10/28 20:06:44 [Info]Proxy|Socks: TCP Connect request to tcp:tch403569.tch.quora.com:443
2017/10/28 20:06:44 [Info]Proxy|Socks: TCP Connect request to tcp:twitter.com:443
2017/10/28 20:06:44 [Info]Proxy|Socks: TCP Connect request to tcp:twitter.com:443
2017/10/28 20:06:44 [Info]App|Dispatcher|Default: default route for tcp:tch225403.tch.quora.com:443
2017/10/28 20:06:44 [Info]App|Router: looking up IP for tcp:tch403569.tch.quora.com:443
2017/10/28 20:06:44 [Info]App|Router: looking up IP for tcp:twitter.com:443
2017/10/28 20:06:44 [Info]App|Router: looking up IP for tcp:twitter.com:443
2017/10/28 20:06:44 [Info]App|Proxyman|Mux: dispatching request to tcp:tch225403.tch.quora.com:443
2017/10/28 20:06:44 [Info]Transport|Internet|mKCP: dialing mKCP to udp:xxx.xxx.xxx.xxx:575
2017/10/28 20:06:44 [Info]App|Dispatcher|Default: default route for tcp:tch403569.tch.quora.com:443
2017/10/28 20:06:44 [Info]App|Dispatcher|Default: default route for tcp:twitter.com:443
2017/10/28 20:06:44 [Info]App|Dispatcher|Default: default route for tcp:twitter.com:443
2017/10/28 20:06:44 [Info]App|Proxyman|Mux: dispatching request to tcp:twitter.com:443
2017/10/28 20:06:44 [Info]App|Proxyman|Mux: dispatching request to tcp:tch403569.tch.quora.com:443
2017/10/28 20:06:44 [Info]Transport|Internet|mKCP: creating connection 47243
2017/10/28 20:06:44 [Info]App|Proxyman|Mux: dispatching request to tcp:twitter.com:443
2017/10/28 20:06:44 [Info]Proxy|VMess|Outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxx.xxx.xxx.xxx:575
2017/10/28 20:06:48 [Info]App|Proxyman|Inbound: connection ends > Proxy|Socks: connection ends > context canceled
2017/10/28 20:06:48 [Info]App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2017/10/28 20:06:50 [Info]App|Proxyman|Inbound: connection ends > Proxy|Socks: connection ends > context canceled
2017/10/28 20:06:50 [Info]App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2017/10/28 20:06:50 [Info]Proxy|Socks: TCP Connect request to tcp:api.bilibili.com:80
2017/10/28 20:06:50 [Info]App|Dispatcher|Default: taking detour [direct] for [tcp:api.bilibili.com:80]
2017/10/28 20:06:50 [Info]Proxy|Freedom: opening connection to tcp:api.bilibili.com:80
2017/10/28 20:06:50 [Info]Transport|Internet|TCP: dailing TCP to tcp:api.bilibili.com:80
2017/10/28 20:06:50 [Info]Transport|Internet|mKCP: terminating connection to xxx.xxx.xxx.xxx:575
2017/10/28 20:06:52 [Info]Proxy|Socks: TCP Connect request to tcp:data.bilibili.com:80
2017/10/28 20:06:52 [Info]App|Dispatcher|Default: taking detour [direct] for [tcp:data.bilibili.com:80]
2017/10/28 20:06:52 [Info]Proxy|Freedom: opening connection to tcp:data.bilibili.com:80
2017/10/28 20:06:52 [Info]Transport|Internet|TCP: dailing TCP to tcp:data.bilibili.com:80
2017/10/28 20:06:54 [Info]Proxy|Socks: TCP Connect request to tcp:en.wikipedia.org:443
2017/10/28 20:06:54 [Info]App|Router: looking up IP for tcp:en.wikipedia.org:443
2017/10/28 20:06:54 [Info]Proxy|Socks: TCP Connect request to tcp:upload.wikimedia.org:443
2017/10/28 20:06:54 [Info]App|Dispatcher|Default: default route for tcp:en.wikipedia.org:443
2017/10/28 20:06:54 [Info]App|Proxyman|Mux: dispatching request to tcp:en.wikipedia.org:443
2017/10/28 20:06:54 [Info]App|Router: looking up IP for tcp:upload.wikimedia.org:443
2017/10/28 20:06:54 [Info]App|Dispatcher|Default: default route for tcp:upload.wikimedia.org:443
2017/10/28 20:06:54 [Info]App|Proxyman|Mux: dispatching request to tcp:upload.wikimedia.org:443
2017/10/28 20:06:54 [Info]Proxy|Socks: TCP Connect request to tcp:github.com:443
2017/10/28 20:06:54 [Info]App|Router: looking up IP for tcp:github.com:443
2017/10/28 20:06:54 [Info]App|Dispatcher|Default: default route for tcp:github.com:443
2017/10/28 20:06:54 [Info]App|Proxyman|Mux: dispatching request to tcp:github.com:443
2017/10/28 20:06:59 [Info]App|Proxyman|Inbound: connection ends > Proxy|Socks: connection ends > context canceled
2017/10/28 20:07:00 [Info]App|Proxyman|Inbound: connection ends > Proxy|Socks: connection ends > context canceled
2017/10/28 20:07:00 [Info]App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > Proxy|Freedom: failed to process request > io: read/write on closed pipe
2017/10/28 20:07:14 [Info]Transport|Internet|mKCP: closing connection to xxx.xxx.xxx.xxx:575
2017/10/28 20:07:19 [Info]App|Proxyman|Inbound: connection ends > Proxy|Socks: connection ends > context canceled
2017/10/28 20:07:24 [Info]Proxy|VMess|Encoding: failed to read response header > EOF
2017/10/28 20:07:24 [Warning]failed to handler mux client connection > Proxy|VMess|Outbound: connection ends > io: read/write on closed pipe
2017/10/28 20:07:24 [Info]Transport|Internet|mKCP: terminating connection to xxx.xxx.xxx.xxx:575
2017/10/28 20:07:32 [Info]App|Proxyman|Inbound: connection ends > Proxy|Socks: connection ends > context canceled
2017/10/28 20:07:32 [Info]App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2017/10/28 20:08:15 [Info]App|Proxyman|Inbound: connection ends > Proxy|Socks: connection ends > Proxy|Socks: failed to transport all TCP response > wsasend tcp 127.0.0.1:1082->127.0.0.1:34614: wsasend: An established connection was aborted by the software in your host machine.
2017/10/28 20:08:15 [Info]App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2017/10/28 20:08:16 [Info]App|Proxyman|Inbound: connection ends > Proxy|Socks: connection ends > context canceled
2017/10/28 20:08:19 [Info]App|Proxyman|Inbound: connection ends > Proxy|Socks: connection ends > Proxy|Socks: failed to transport all TCP response > wsasend tcp 127.0.0.1:1082->127.0.0.1:34699: wsasend: An established connection was aborted by the software in your host machine.
2017/10/28 20:08:34 [Info]App|Proxyman|Inbound: connection ends > Proxy|Socks: connection ends > context canceled
2017/10/28 20:08:34 [Info]App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2017/10/28 20:09:47 [Info]App|Proxyman|Inbound: connection ends > Proxy|Socks: connection ends > context canceled
2017/10/28 20:09:47 [Info]App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2017/10/28 20:09:47 [Info]App|Proxyman|Inbound: connection ends > Proxy|Socks: connection ends > context canceled
2017/10/28 20:09:47 [Info]App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2017/10/28 20:09:54 [Info]App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2017/10/28 20:10:14 [Info]App|Proxyman|Inbound: connection ends > Proxy|Socks: connection ends > context canceled
2017/10/28 20:10:14 [Info]App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2017/10/28 20:15:10 [Info]App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2017/10/28 20:15:14 [Info]App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2017/10/28 20:15:15 [Info]App|Proxyman|Inbound: connection ends > Proxy|Socks: connection ends > context canceled
2017/10/28 20:15:15 [Info]App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
betterdoitnow commented 7 years ago

版本2.45,客户端用的http inbound,outbound用的vmess,和楼主现象差不多,浏览器经常卡住,一直显示:正在建立安全连接.... 还是老的解决方法,v2ray加一个MEOW,流畅了...

chrischjh commented 7 years ago

小白问题,什么是MEOW?

victorwood commented 7 years ago

MEOW是一个HTTP代理,如果有兴趣,也可以研究一下这个 https://github.com/cyfdecyf/cow

DarienRaymond commented 6 years ago

猜测是 mkcp 被 QoS 了,换 tcp 试一下

DarienRaymond commented 6 years ago

Closing due to inactivity.