v2ray / v2ray-core

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

使用 speedtest-cli 对代理测速失败 #2045

Closed linw1995 closed 4 years ago

linw1995 commented 4 years ago

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

1) 你正在使用哪个版本的 V2Ray?(如果服务器和客户端使用了不同版本,请注明) 4.21.3 2) 你的使用场景是什么?比如使用 Chrome 通过 Socks/VMess 代理观看 YouTube 视频。 通过 speedtest-cli 测速,

  http_proxy=http://127.0.0.1:11080 https_proxy=http://127.0.0.1:11080 speedtest

3) 你看到的不正常的现象是什么?(请描述具体现象,比如访问超时,TLS 证书错误等) speedtest-cli 执行异常,重复地抛出 BadStatusLine 异常

异常情况: ``` Exception in thread Thread-74: Traceback (most recent call last): File "/Users/linw1995/.pyenv/versions/2.7.16/Python.framework/Versions/2.7/lib/python2.7/threading.py", line 801, in __bootstrap_inner self.run() File "/Users/linw1995/.pyenv/versions/2.7.16/Python.framework/Versions/2.7/lib/python2.7/site-packages/speedtest.py", line 905, in run f = self._opener(request) File "/Users/linw1995/.pyenv/versions/2.7.16/Python.framework/Versions/2.7/lib/python2.7/urllib2.py", line 429, in open response = self._open(req, data) File "/Users/linw1995/.pyenv/versions/2.7.16/Python.framework/Versions/2.7/lib/python2.7/urllib2.py", line 447, in _open '_open', req) File "/Users/linw1995/.pyenv/versions/2.7.16/Python.framework/Versions/2.7/lib/python2.7/urllib2.py", line 407, in _call_chain result = func(*args) File "/Users/linw1995/.pyenv/versions/2.7.16/Python.framework/Versions/2.7/lib/python2.7/site-packages/speedtest.py", line 543, in http_open req File "/Users/linw1995/.pyenv/versions/2.7.16/Python.framework/Versions/2.7/lib/python2.7/urllib2.py", line 1201, in do_open r = h.getresponse(buffering=True) File "/Users/linw1995/.pyenv/versions/2.7.16/Python.framework/Versions/2.7/lib/python2.7/httplib.py", line 1121, in getresponse response.begin() File "/Users/linw1995/.pyenv/versions/2.7.16/Python.framework/Versions/2.7/lib/python2.7/httplib.py", line 438, in begin version, status, reason = self._read_status() File "/Users/linw1995/.pyenv/versions/2.7.16/Python.framework/Versions/2.7/lib/python2.7/httplib.py", line 402, in _read_status raise BadStatusLine("No status line received - the server has closed the connection") BadStatusLine: No status line received - the server has closed the connection ```

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

因为没有设置 Outbound,使用 speedtest 通过 v2ray 的表现应该与直接使用 speedtest 相同。不应该报错太对额 _(:_」∠)_

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

客户端配置: ```javascript { "log": { "access": "./access.log", "error": "./error.log", "loglevel": "debug" }, "routing": { "settings": { "rules": [ { "inboundTag": [ "in_http" ], "outboundTag": "out_freedom", "type": "field" } ] }, "strategy": "rules" }, "inbounds": [ { "port": 11080, "listen": "127.0.0.1", "protocol": "HTTP", "streamSettings": {}, "tag": "in_http" } ], "outbounds": [ { "protocol": "freedom", "settings": {}, "tag": "out_freedom" } ], "transport": {} } ```

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

客户端错误日志: ```javascript 2019/11/22 18:49:42 [Debug] v2ray.com/core/app/log: Logger started 2019/11/22 18:49:42 [Debug] v2ray.com/core/app/proxyman/inbound: creating stream worker on 127.0.0.1:11080 2019/11/22 18:49:42 [Info] v2ray.com/core/transport/internet/tcp: listening TCP on 127.0.0.1:11080 2019/11/22 18:49:42 [Warning] v2ray.com/core: V2Ray 4.21.3 started 2019/11/22 18:49:45 [Info] [4039328668] v2ray.com/core/proxy/http: request to Method [GET] Host [www.speedtest.net] with URL [http://www.speedtest.net/speedtest-config.php?x=1574419785542.0] 2019/11/22 18:49:45 [Info] [4039328668] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:www.speedtest.net:80] 2019/11/22 18:49:45 [Info] [4039328668] v2ray.com/core/proxy/freedom: opening connection to tcp:www.speedtest.net:80 2019/11/22 18:49:45 [Info] [4039328668] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:www.speedtest.net:80 2019/11/22 18:49:48 [Info] [4039328668] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:49:48 [Info] [1179612088] v2ray.com/core/proxy/http: request to Method [CONNECT] Host [www.speedtest.net:443] with URL [//www.speedtest.net:443] 2019/11/22 18:49:48 [Info] [1179612088] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:www.speedtest.net:443] 2019/11/22 18:49:48 [Info] [1179612088] v2ray.com/core/proxy/freedom: opening connection to tcp:www.speedtest.net:443 2019/11/22 18:49:48 [Info] [1179612088] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:www.speedtest.net:443 2019/11/22 18:49:50 [Info] [1179612088] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > read tcp 127.0.0.1:11080->127.0.0.1:52482: read: connection reset by peer 2019/11/22 18:49:50 [Info] [1179612088] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > v2ray.com/core/proxy/freedom: failed to process request > io: read/write on closed pipe 2019/11/22 18:49:50 [Info] [4071289116] v2ray.com/core/proxy/http: request to Method [GET] Host [www.speedtest.net] with URL [http://www.speedtest.net/speedtest-servers-static.php?threads=8&x=1574419790302.0] 2019/11/22 18:49:50 [Info] [4071289116] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:www.speedtest.net:80] 2019/11/22 18:49:50 [Info] [4071289116] v2ray.com/core/proxy/freedom: opening connection to tcp:www.speedtest.net:80 2019/11/22 18:49:50 [Info] [4071289116] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:www.speedtest.net:80 2019/11/22 18:49:50 [Info] [4071289116] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:49:50 [Info] [1725170547] v2ray.com/core/proxy/http: request to Method [CONNECT] Host [www.speedtest.net:443] with URL [//www.speedtest.net:443] 2019/11/22 18:49:50 [Info] [1725170547] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:www.speedtest.net:443] 2019/11/22 18:49:50 [Info] [1725170547] v2ray.com/core/proxy/freedom: opening connection to tcp:www.speedtest.net:443 2019/11/22 18:49:50 [Info] [1725170547] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:www.speedtest.net:443 2019/11/22 18:50:39 [Info] [1725170547] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > read tcp 127.0.0.1:11080->127.0.0.1:52494: read: connection reset by peer 2019/11/22 18:50:39 [Info] [1725170547] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:50:43 [Info] [2445186028] v2ray.com/core/proxy/http: request to Method [GET] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/random350x350.jpg?x=1574419843093.0] 2019/11/22 18:50:43 [Info] [2445186028] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:43 [Info] [2445186028] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:43 [Info] [2445186028] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:43 [Info] [1824841352] v2ray.com/core/proxy/http: request to Method [GET] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/random350x350.jpg?x=1574419843093.1] 2019/11/22 18:50:43 [Info] [1824841352] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:43 [Info] [1824841352] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:43 [Info] [1824841352] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:43 [Info] [2637331801] v2ray.com/core/proxy/http: request to Method [GET] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/random350x350.jpg?x=1574419843093.2] 2019/11/22 18:50:43 [Info] [2637331801] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:43 [Info] [2637331801] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:43 [Info] [2637331801] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:43 [Info] [2811290100] v2ray.com/core/proxy/http: request to Method [GET] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/random350x350.jpg?x=1574419843093.3] 2019/11/22 18:50:43 [Info] [2811290100] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:43 [Info] [2811290100] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:43 [Info] [2811290100] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:43 [Info] [4293179714] v2ray.com/core/proxy/http: request to Method [GET] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/random500x500.jpg?x=1574419843093.4] 2019/11/22 18:50:43 [Info] [4293179714] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:43 [Info] [4293179714] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:43 [Info] [4293179714] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:43 [Info] [329039019] v2ray.com/core/proxy/http: request to Method [GET] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/random500x500.jpg?x=1574419843093.6] 2019/11/22 18:50:43 [Info] [4159241194] v2ray.com/core/proxy/http: request to Method [GET] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/random500x500.jpg?x=1574419843093.5] 2019/11/22 18:50:43 [Info] [4159241194] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:43 [Info] [329039019] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:43 [Info] [4159241194] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:43 [Info] [4159241194] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:43 [Info] [329039019] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:43 [Info] [329039019] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:43 [Info] [2452641870] v2ray.com/core/proxy/http: request to Method [GET] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/random500x500.jpg?x=1574419843093.7] 2019/11/22 18:50:43 [Info] [2452641870] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:43 [Info] [2452641870] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:43 [Info] [2452641870] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:46 [Info] [2445186028] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:50:46 [Info] [1223836195] v2ray.com/core/proxy/http: request to Method [GET] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/random750x750.jpg?x=1574419843093.8] 2019/11/22 18:50:46 [Info] [1223836195] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:46 [Info] [1223836195] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:46 [Info] [1223836195] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:46 [Info] [2637331801] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:50:46 [Info] [4293179714] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:50:46 [Info] [329039019] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:50:46 [Info] [2452641870] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:50:47 [Info] [2424452753] v2ray.com/core/proxy/http: request to Method [GET] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/random750x750.jpg?x=1574419843093.9] 2019/11/22 18:50:47 [Info] [2424452753] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:47 [Info] [2424452753] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:47 [Info] [2424452753] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:47 [Info] [2691947829] v2ray.com/core/proxy/http: request to Method [GET] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/random750x750.jpg?x=1574419843093.10] 2019/11/22 18:50:47 [Info] [2691947829] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:47 [Info] [2691947829] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:47 [Info] [2691947829] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:47 [Info] [2811290100] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:50:47 [Info] [1344441649] v2ray.com/core/proxy/http: request to Method [GET] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/random750x750.jpg?x=1574419843093.11] 2019/11/22 18:50:47 [Info] [1344441649] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:47 [Info] [1344441649] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:47 [Info] [1344441649] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:47 [Info] [908208751] v2ray.com/core/proxy/http: request to Method [GET] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/random1000x1000.jpg?x=1574419843093.12] 2019/11/22 18:50:47 [Info] [908208751] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:47 [Info] [908208751] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:47 [Info] [908208751] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:49 [Info] [4159241194] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:50:49 [Info] [3305395167] v2ray.com/core/proxy/http: request to Method [GET] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/random1000x1000.jpg?x=1574419843093.13] 2019/11/22 18:50:49 [Info] [3305395167] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:49 [Info] [3305395167] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:49 [Info] [3305395167] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:49 [Info] [3292861326] v2ray.com/core/proxy/http: request to Method [GET] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/random1000x1000.jpg?x=1574419843094.14] 2019/11/22 18:50:49 [Info] [3292861326] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:49 [Info] [3292861326] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:49 [Info] [3292861326] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:49 [Info] [2822205257] v2ray.com/core/proxy/http: request to Method [GET] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/random1000x1000.jpg?x=1574419843094.15] 2019/11/22 18:50:49 [Info] [2822205257] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:49 [Info] [2822205257] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:49 [Info] [2822205257] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:53 [Warning] [908208751] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write response > readfrom tcp 127.0.0.1:11080->127.0.0.1:52715: write tcp 127.0.0.1:11080->127.0.0.1:52715: write: broken pipe 2019/11/22 18:50:53 [Info] [908208751] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:50:53 [Warning] [2691947829] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write response > readfrom tcp 127.0.0.1:11080->127.0.0.1:52709: write tcp 127.0.0.1:11080->127.0.0.1:52709: write: protocol wrong type for socket 2019/11/22 18:50:53 [Info] [2691947829] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:50:53 [Warning] [3305395167] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write response > readfrom tcp 127.0.0.1:11080->127.0.0.1:52725: write tcp 127.0.0.1:11080->127.0.0.1:52725: write: broken pipe 2019/11/22 18:50:53 [Info] [3305395167] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:50:53 [Warning] [3292861326] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write response > readfrom tcp 127.0.0.1:11080->127.0.0.1:52726: write tcp 127.0.0.1:11080->127.0.0.1:52726: write: broken pipe 2019/11/22 18:50:53 [Info] [3292861326] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > v2ray.com/core/proxy/freedom: failed to process request > io: read/write on closed pipe 2019/11/22 18:50:53 [Warning] [2424452753] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write response > readfrom tcp 127.0.0.1:11080->127.0.0.1:52708: write tcp 127.0.0.1:11080->127.0.0.1:52708: write: broken pipe 2019/11/22 18:50:53 [Info] [2424452753] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:50:53 [Warning] [1223836195] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write response > readfrom tcp 127.0.0.1:11080->127.0.0.1:52704: write tcp 127.0.0.1:11080->127.0.0.1:52704: write: broken pipe 2019/11/22 18:50:53 [Warning] [2822205257] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write response > readfrom tcp 127.0.0.1:11080->127.0.0.1:52727: write tcp 127.0.0.1:11080->127.0.0.1:52727: write: broken pipe 2019/11/22 18:50:53 [Info] [1223836195] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:50:53 [Info] [2822205257] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:50:53 [Warning] [1344441649] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write response > readfrom tcp 127.0.0.1:11080->127.0.0.1:52714: write tcp 127.0.0.1:11080->127.0.0.1:52714: write: broken pipe 2019/11/22 18:50:53 [Info] [1344441649] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:50:54 [Info] [554055472] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853568.0] 2019/11/22 18:50:54 [Info] [554055472] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [554055472] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [554055472] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [1584561806] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853570.0] 2019/11/22 18:50:54 [Info] [1584561806] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [1584561806] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [1584561806] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [2654895243] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853572.0] 2019/11/22 18:50:54 [Info] [2654895243] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [2654895243] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [2654895243] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [963363706] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853574.0] 2019/11/22 18:50:54 [Info] [963363706] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [963363706] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [963363706] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [3960495769] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853575.0] 2019/11/22 18:50:54 [Info] [3960495769] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [3960495769] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [3960495769] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [3928412834] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853578.0] 2019/11/22 18:50:54 [Info] [3928412834] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [3928412834] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [3928412834] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [4245034282] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853577.0] 2019/11/22 18:50:54 [Info] [4245034282] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [4245034282] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [4245034282] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [578687450] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853580.0] 2019/11/22 18:50:54 [Info] [578687450] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [578687450] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [578687450] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Warning] [2654895243] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > http: ContentLength=524288 with Body length 522240 2019/11/22 18:50:54 [Warning] [2654895243] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:50:54 [Info] [2654895243] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Warning] [1584561806] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:50:54 [Warning] [1584561806] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > http: ContentLength=524288 with Body length 522240 2019/11/22 18:50:54 [Info] [1584561806] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Warning] [554055472] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:50:54 [Warning] [554055472] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > http: ContentLength=524288 with Body length 522240 2019/11/22 18:50:54 [Info] [554055472] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Warning] [3928412834] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > http: ContentLength=524288 with Body length 522240 2019/11/22 18:50:54 [Info] [3928412834] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Warning] [3928412834] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:50:54 [Warning] [963363706] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > http: ContentLength=524288 with Body length 522240 2019/11/22 18:50:54 [Info] [963363706] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Warning] [963363706] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:50:54 [Warning] [3960495769] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > http: ContentLength=524288 with Body length 522240 2019/11/22 18:50:54 [Info] [3960495769] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Warning] [3960495769] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:50:54 [Warning] [4245034282] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > http: ContentLength=524288 with Body length 522240 2019/11/22 18:50:54 [Info] [4245034282] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Warning] [4245034282] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:50:54 [Info] [3554591131] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853582.0] 2019/11/22 18:50:54 [Info] [3554591131] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [3554591131] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [3554591131] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [1353832462] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853583.0] 2019/11/22 18:50:54 [Info] [1353832462] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [1353832462] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [1353832462] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Warning] [578687450] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > http: ContentLength=524288 with Body length 522240 2019/11/22 18:50:54 [Warning] [578687450] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:50:54 [Info] [578687450] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:50:54 [Info] [3201895817] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853585.0] 2019/11/22 18:50:54 [Info] [3201895817] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [3201895817] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [3201895817] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Warning] [3554591131] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:50:54 [Warning] [3554591131] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > http: ContentLength=524288 with Body length 522240 2019/11/22 18:50:54 [Info] [3554591131] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [1956724928] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853586.0] 2019/11/22 18:50:54 [Info] [1956724928] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [1956724928] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [1956724928] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [1736235802] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853588.0] 2019/11/22 18:50:54 [Info] [1736235802] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [1736235802] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [1736235802] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Warning] [1353832462] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > http: ContentLength=524288 with Body length 522240 2019/11/22 18:50:54 [Info] [1353832462] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Warning] [1353832462] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:50:54 [Info] [64168182] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853589.0] 2019/11/22 18:50:54 [Info] [64168182] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [64168182] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [64168182] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [3810095080] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853591.0] 2019/11/22 18:50:54 [Info] [3810095080] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [3810095080] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [3810095080] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [227817617] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853592.0] 2019/11/22 18:50:54 [Info] [227817617] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [227817617] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [227817617] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [4084059790] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853596.0] 2019/11/22 18:50:54 [Info] [4084059790] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [4084059790] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [4084059790] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [2355633191] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853599.0] 2019/11/22 18:50:54 [Info] [2355633191] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [2355633191] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [2355633191] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Warning] [1736235802] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > http: ContentLength=524288 with Body length 522240 2019/11/22 18:50:54 [Info] [1736235802] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Warning] [3201895817] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > http: ContentLength=524288 with Body length 522240 2019/11/22 18:50:54 [Warning] [1736235802] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:50:54 [Info] [3201895817] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Warning] [3201895817] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:50:54 [Warning] [1956724928] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > http: ContentLength=524288 with Body length 522240 2019/11/22 18:50:54 [Info] [1956724928] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:50:54 [Warning] [1956724928] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:50:54 [Warning] [3810095080] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:50:54 [Warning] [3810095080] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > http: ContentLength=524288 with Body length 522240 2019/11/22 18:50:54 [Info] [3810095080] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [2184722596] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853602.0] 2019/11/22 18:50:54 [Info] [2184722596] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [2184722596] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [2184722596] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Warning] [227817617] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > http: ContentLength=524288 with Body length 522240 2019/11/22 18:50:54 [Info] [227817617] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Warning] [64168182] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > http: ContentLength=524288 with Body length 522240 2019/11/22 18:50:54 [Warning] [227817617] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:50:54 [Warning] [64168182] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:50:54 [Info] [64168182] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:50:54 [Info] [2146321454] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853605.0] 2019/11/22 18:50:54 [Info] [2146321454] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [2146321454] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [2146321454] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [3069928885] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853608.0] 2019/11/22 18:50:54 [Info] [3069928885] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [3069928885] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [3069928885] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [1348806546] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853612.0] 2019/11/22 18:50:54 [Info] [1348806546] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [1348806546] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [1348806546] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [1832369348] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853614.0] 2019/11/22 18:50:54 [Info] [1832369348] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [1832369348] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [1832369348] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [657906036] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853618.0] 2019/11/22 18:50:54 [Info] [657906036] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [657906036] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [657906036] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Warning] [4084059790] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > http: ContentLength=1048576 with Body length 1046528 2019/11/22 18:50:54 [Warning] [2355633191] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > http: ContentLength=1048576 with Body length 1046528 2019/11/22 18:50:54 [Info] [4084059790] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:50:54 [Warning] [2355633191] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:50:54 [Warning] [4084059790] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:50:54 [Info] [2355633191] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:50:54 [Info] [4244528164] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853621.0] 2019/11/22 18:50:54 [Info] [4244528164] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [4244528164] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [4244528164] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [4113129136] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853624.0] 2019/11/22 18:50:54 [Info] [4113129136] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [4113129136] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [4113129136] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Warning] [657906036] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > http: ContentLength=1048576 with Body length 1046528 2019/11/22 18:50:54 [Warning] [4113129136] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > http: ContentLength=1048576 with Body length 1046528 2019/11/22 18:50:54 [Warning] [657906036] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:50:54 [Warning] [4113129136] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:50:54 [Info] [4113129136] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:50:54 [Warning] [1348806546] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > http: ContentLength=1048576 with Body length 1046528 2019/11/22 18:50:54 [Warning] [2146321454] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > http: ContentLength=1048576 with Body length 1046528 2019/11/22 18:50:54 [Warning] [1348806546] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:50:54 [Info] [1348806546] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:50:54 [Warning] [3069928885] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > http: ContentLength=1048576 with Body length 1046528 2019/11/22 18:50:54 [Warning] [2146321454] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:50:54 [Warning] [2184722596] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > http: ContentLength=1048576 with Body length 1046528 2019/11/22 18:50:54 [Info] [2146321454] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:50:54 [Warning] [3069928885] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:50:54 [Info] [3069928885] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:50:54 [Warning] [2184722596] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:50:54 [Info] [2184722596] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:50:54 [Warning] [1832369348] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > http: ContentLength=1048576 with Body length 1046528 2019/11/22 18:50:54 [Warning] [4244528164] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > http: ContentLength=1048576 with Body length 1046528 2019/11/22 18:50:54 [Warning] [4244528164] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:50:54 [Info] [4244528164] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:50:54 [Warning] [1832369348] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:50:54 [Info] [657906036] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:50:54 [Info] [1832369348] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:50:54 [Info] [3115979480] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853627.0] 2019/11/22 18:50:54 [Info] [3115979480] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [3115979480] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [3115979480] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [2329276303] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853630.0] 2019/11/22 18:50:54 [Info] [2329276303] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [2329276303] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [2329276303] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [987498573] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853636.0] 2019/11/22 18:50:54 [Info] [987498573] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [987498573] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [987498573] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [499445624] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853633.0] 2019/11/22 18:50:54 [Info] [499445624] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [499445624] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [499445624] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [2356318969] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853639.0] 2019/11/22 18:50:54 [Info] [2356318969] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [2356318969] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [2356318969] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [2364472618] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853642.0] 2019/11/22 18:50:54 [Info] [2364472618] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [2364472618] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [2364472618] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [1848063209] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853674.0] 2019/11/22 18:50:54 [Info] [1848063209] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [1848063209] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [1848063209] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [3413984381] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853698.0] 2019/11/22 18:50:54 [Info] [3413984381] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [3413984381] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [3413984381] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [1584561806] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [2654895243] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [3928412834] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [3960495769] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [554055472] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [4245034282] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [963363706] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [1353832462] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [3554591131] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [1736235802] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [3201895817] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Warning] [499445624] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > http: ContentLength=1048576 with Body length 1046528 2019/11/22 18:50:54 [Warning] [987498573] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > http: ContentLength=1048576 with Body length 1046528 2019/11/22 18:50:54 [Warning] [3115979480] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > http: ContentLength=1048576 with Body length 1046528 2019/11/22 18:50:54 [Warning] [499445624] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:50:54 [Warning] [987498573] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:50:54 [Info] [987498573] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:50:54 [Warning] [3115979480] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:50:54 [Info] [3115979480] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:50:54 [Info] [499445624] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:50:54 [Warning] [2329276303] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > http: ContentLength=1048576 with Body length 1046528 2019/11/22 18:50:54 [Warning] [2329276303] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:50:54 [Info] [2329276303] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:50:54 [Info] [3810095080] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Warning] [2356318969] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > http: ContentLength=1048576 with Body length 1046528 2019/11/22 18:50:54 [Warning] [2356318969] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:50:54 [Info] [2356318969] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:50:54 [Info] [227817617] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [1668354885] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853722.0] 2019/11/22 18:50:54 [Info] [1668354885] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [1668354885] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [1668354885] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [2643211341] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853746.0] 2019/11/22 18:50:54 [Info] [2643211341] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [2643211341] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [2643211341] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [1533278027] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853771.0] 2019/11/22 18:50:54 [Info] [1533278027] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [1533278027] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [1533278027] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [597138350] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853796.0] 2019/11/22 18:50:54 [Info] [597138350] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [597138350] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [597138350] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [187827579] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853821.0] 2019/11/22 18:50:54 [Info] [187827579] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [187827579] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [187827579] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [1584561806] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [963363706] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [4245034282] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [2654895243] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [3928412834] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [3960495769] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [554055472] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [1353832462] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [3554591131] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [1736235802] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [3201895817] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [3810095080] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [227817617] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [3960495769] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [963363706] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [3928412834] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [1584561806] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [2654895243] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [4245034282] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [554055472] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [1353832462] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [3554591131] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [1736235802] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [3201895817] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [3810095080] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [227817617] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Warning] [2364472618] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > http: ContentLength=1048576 with Body length 1046528 2019/11/22 18:50:54 [Warning] [2364472618] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:50:54 [Info] [2364472618] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:50:54 [Info] [1662542415] v2ray.com/core/proxy/http: request to Method [POST] Host [speedtest1.fj.chinamobile.com:8080] with URL [http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853845.0] 2019/11/22 18:50:54 [Info] [1662542415] v2ray.com/core/app/dispatcher: taking detour [out_freedom] for [tcp:speedtest1.fj.chinamobile.com:8080] 2019/11/22 18:50:54 [Info] [1662542415] v2ray.com/core/proxy/freedom: opening connection to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:54 [Info] [1662542415] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:speedtest1.fj.chinamobile.com:8080 2019/11/22 18:50:55 [Info] [963363706] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: failed to open connection to tcp:speedtest1.fj.chinamobile.com:8080 > v2ray.com/core/common/retry: [dial tcp 112.50.250.162:8080: operation was canceled dial tcp: operation was canceled] > v2ray.com/core/common/retry: all retry attempts failed 2019/11/22 18:50:55 [Info] [3960495769] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: failed to open connection to tcp:speedtest1.fj.chinamobile.com:8080 > v2ray.com/core/common/retry: [dial tcp 112.50.250.162:8080: operation was canceled dial tcp: operation was canceled] > v2ray.com/core/common/retry: all retry attempts failed 2019/11/22 18:50:55 [Info] [4245034282] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: failed to open connection to tcp:speedtest1.fj.chinamobile.com:8080 > v2ray.com/core/common/retry: [dial tcp 112.50.250.162:8080: operation was canceled dial tcp: operation was canceled] > v2ray.com/core/common/retry: all retry attempts failed 2019/11/22 18:50:55 [Info] [3928412834] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: failed to open connection to tcp:speedtest1.fj.chinamobile.com:8080 > v2ray.com/core/common/retry: [dial tcp 112.50.250.162:8080: operation was canceled dial tcp: operation was canceled] > v2ray.com/core/common/retry: all retry attempts failed 2019/11/22 18:50:55 [Info] [1584561806] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: failed to open connection to tcp:speedtest1.fj.chinamobile.com:8080 > v2ray.com/core/common/retry: [dial tcp 112.50.250.162:8080: operation was canceled dial tcp: operation was canceled] > v2ray.com/core/common/retry: all retry attempts failed 2019/11/22 18:50:55 [Info] [2654895243] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: failed to open connection to tcp:speedtest1.fj.chinamobile.com:8080 > v2ray.com/core/common/retry: [dial tcp 112.50.250.162:8080: operation was canceled dial tcp: operation was canceled] > v2ray.com/core/common/retry: all retry attempts failed 2019/11/22 18:50:55 [Info] [554055472] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: failed to open connection to tcp:speedtest1.fj.chinamobile.com:8080 > v2ray.com/core/common/retry: [dial tcp 112.50.250.162:8080: operation was canceled dial tcp: operation was canceled] > v2ray.com/core/common/retry: all retry attempts failed 2019/11/22 18:50:55 [Info] [1353832462] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: failed to open connection to tcp:speedtest1.fj.chinamobile.com:8080 > v2ray.com/core/common/retry: [dial tcp 112.50.250.162:8080: operation was canceled dial tcp: operation was canceled] > v2ray.com/core/common/retry: all retry attempts failed 2019/11/22 18:50:55 [Info] [3554591131] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: failed to open connection to tcp:speedtest1.fj.chinamobile.com:8080 > v2ray.com/core/common/retry: [dial tcp 112.50.250.162:8080: operation was canceled dial tcp: operation was canceled] > v2ray.com/core/common/retry: all retry attempts failed 2019/11/22 18:50:55 [Info] [1736235802] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: failed to open connection to tcp:speedtest1.fj.chinamobile.com:8080 > v2ray.com/core/common/retry: [dial tcp 112.50.250.162:8080: operation was canceled dial tcp: operation was canceled] > v2ray.com/core/common/retry: all retry attempts failed 2019/11/22 18:50:55 [Info] [3810095080] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: failed to open connection to tcp:speedtest1.fj.chinamobile.com:8080 > v2ray.com/core/common/retry: [dial tcp 112.50.250.162:8080: operation was canceled dial tcp: operation was canceled] > v2ray.com/core/common/retry: all retry attempts failed 2019/11/22 18:50:55 [Info] [3201895817] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: failed to open connection to tcp:speedtest1.fj.chinamobile.com:8080 > v2ray.com/core/common/retry: [dial tcp 112.50.250.162:8080: operation was canceled dial tcp: operation was canceled] > v2ray.com/core/common/retry: all retry attempts failed 2019/11/22 18:50:55 [Info] [227817617] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: failed to open connection to tcp:speedtest1.fj.chinamobile.com:8080 > v2ray.com/core/common/retry: [dial tcp 112.50.250.162:8080: operation was canceled dial tcp: operation was canceled] > v2ray.com/core/common/retry: all retry attempts failed 2019/11/22 18:51:03 [Warning] [1533278027] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:51:03 [Warning] [1533278027] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > http: ContentLength=7340032 with Body length 7337984 2019/11/22 18:51:03 [Info] [1533278027] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:51:07 [Warning] [1662542415] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > unexpected EOF 2019/11/22 18:51:07 [Info] [1662542415] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:51:07 [Warning] [1662542415] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:51:10 [Warning] [2643211341] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > unexpected EOF 2019/11/22 18:51:10 [Warning] [2643211341] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:51:10 [Info] [2643211341] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:51:10 [Warning] [3413984381] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > unexpected EOF 2019/11/22 18:51:10 [Info] [3413984381] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:51:10 [Warning] [3413984381] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:51:10 [Warning] [597138350] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > unexpected EOF 2019/11/22 18:51:10 [Warning] [597138350] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:51:10 [Info] [597138350] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:51:11 [Warning] [1668354885] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > unexpected EOF 2019/11/22 18:51:11 [Warning] [1668354885] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:51:11 [Info] [1668354885] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:51:13 [Warning] [1848063209] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > unexpected EOF 2019/11/22 18:51:13 [Warning] [1848063209] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:51:13 [Info] [1848063209] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled 2019/11/22 18:51:14 [Warning] [187827579] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/http: connection ends > v2ray.com/core/proxy/http: failed to write whole request > unexpected EOF 2019/11/22 18:51:14 [Warning] [187827579] v2ray.com/core/proxy/http: failed to read response from speedtest1.fj.chinamobile.com:8080 > io: read/write on closed pipe 2019/11/22 18:51:14 [Info] [187827579] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/freedom: connection ends > context canceled ```

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

客户端访问日志: ```javascript 2019/11/22 18:49:45 127.0.0.1:52453 accepted http://www.speedtest.net/speedtest-config.php?x=1574419785542.0 [out_freedom] 2019/11/22 18:49:48 127.0.0.1:52482 accepted //www.speedtest.net:443 [out_freedom] 2019/11/22 18:49:50 127.0.0.1:52492 accepted http://www.speedtest.net/speedtest-servers-static.php?threads=8&x=1574419790302.0 [out_freedom] 2019/11/22 18:49:50 127.0.0.1:52494 accepted //www.speedtest.net:443 [out_freedom] 2019/11/22 18:50:43 127.0.0.1:52674 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/random350x350.jpg?x=1574419843093.0 [out_freedom] 2019/11/22 18:50:43 127.0.0.1:52675 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/random350x350.jpg?x=1574419843093.1 [out_freedom] 2019/11/22 18:50:43 127.0.0.1:52677 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/random350x350.jpg?x=1574419843093.2 [out_freedom] 2019/11/22 18:50:43 127.0.0.1:52679 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/random350x350.jpg?x=1574419843093.3 [out_freedom] 2019/11/22 18:50:43 127.0.0.1:52680 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/random500x500.jpg?x=1574419843093.4 [out_freedom] 2019/11/22 18:50:43 127.0.0.1:52683 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/random500x500.jpg?x=1574419843093.5 [out_freedom] 2019/11/22 18:50:43 127.0.0.1:52685 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/random500x500.jpg?x=1574419843093.6 [out_freedom] 2019/11/22 18:50:43 127.0.0.1:52686 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/random500x500.jpg?x=1574419843093.7 [out_freedom] 2019/11/22 18:50:46 127.0.0.1:52704 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/random750x750.jpg?x=1574419843093.8 [out_freedom] 2019/11/22 18:50:47 127.0.0.1:52708 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/random750x750.jpg?x=1574419843093.9 [out_freedom] 2019/11/22 18:50:47 127.0.0.1:52709 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/random750x750.jpg?x=1574419843093.10 [out_freedom] 2019/11/22 18:50:47 127.0.0.1:52714 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/random750x750.jpg?x=1574419843093.11 [out_freedom] 2019/11/22 18:50:47 127.0.0.1:52715 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/random1000x1000.jpg?x=1574419843093.12 [out_freedom] 2019/11/22 18:50:49 127.0.0.1:52725 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/random1000x1000.jpg?x=1574419843093.13 [out_freedom] 2019/11/22 18:50:49 127.0.0.1:52726 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/random1000x1000.jpg?x=1574419843094.14 [out_freedom] 2019/11/22 18:50:49 127.0.0.1:52727 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/random1000x1000.jpg?x=1574419843094.15 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52746 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853568.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52747 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853570.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52748 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853572.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52752 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853574.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52753 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853575.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52756 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853578.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52757 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853577.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52760 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853580.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52762 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853582.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52763 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853583.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52766 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853585.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52767 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853586.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52769 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853588.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52772 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853589.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52774 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853591.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52775 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853592.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52778 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853596.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52779 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853599.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52782 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853602.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52783 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853605.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52785 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853608.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52789 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853612.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52790 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853614.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52793 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853618.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52795 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853621.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52796 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853624.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52799 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853627.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52800 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853630.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52804 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853636.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52803 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853633.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52805 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853639.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52808 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853642.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52811 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853674.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52812 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853698.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52815 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853722.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52817 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853746.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52818 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853771.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52821 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853796.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52822 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853821.0 [out_freedom] 2019/11/22 18:50:54 127.0.0.1:52828 accepted http://speedtest1.fj.chinamobile.com:8080/speedtest/upload.php?x=1574419853845.0 [out_freedom] ```
kslr commented 4 years ago

停止使用移动从你我做起

1265578519 commented 4 years ago

你这个错误和我之前的服务器时间不正确输出的信息基本上一样,,你要不要确认下

linw1995 commented 4 years ago

@kslr 跟移动没什么关系吧,我是电信的 @1265578519 如果不一致的话,不用 v2ray 直接 speedtest 也会报错吧。直接用 speedtest 是正常的

kslr commented 4 years ago

那为什么你的测试地址是chinamobile.com 被劫持了?

1265578519 commented 4 years ago

测试地址是chinamobile是对的,,speedtest官方给出的服务器就是这个

1265578519 commented 4 years ago

估计是他开了全局模式,然后页面没刷新,直接点开始测速

linw1995 commented 4 years ago

估计是他开了全局模式,然后页面没刷新,直接点开始测速

@1265578519 用的是 CLI (:」∠)_,是我没描述清楚么……

github-actions[bot] commented 4 years ago

This issue is stale because it has been open 120 days with no activity. Remove stale label or comment or this will be closed in 5 days