v2ray / v2ray-core

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

V2RAY 利用dokodemo-door 实现透明代理无法使用Google Play #819

Closed 5high closed 6 years ago

5high commented 6 years ago

Please skip to the English section below if you don't write Chinese.

中文: 提交 Issue 之前请先阅读 Issue 指引,然后回答下面的问题,谢谢。 除非特殊情况,请完整填写所有问题。不按模板发的 issue 将直接被关闭。

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

V2Ray v3.6 (die Commanderin) 20180112 An unified platform for anti-censorship

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

利用dokodemo-door 实现透明代理

iptables -t nat -N V2RAY
iptables -t nat -A V2RAY -d serverip -j RETURN
iptables -t nat -A V2RAY -d 172.28.0.0/16 -j RETURN
iptables -t nat -A V2RAY -d 172.29.0.0/16 -j RETURN
iptables -t nat -A V2RAY -d 172.30.0.0/16 -j RETURN
iptables -t nat -A V2RAY -d 192.168.0.0/24 -j RETURN
iptables -t nat -A V2RAY -d 192.168.1.0/24 -j RETURN
iptables -t nat -A V2RAY -d 192.168.89.0/24 -j RETURN
iptables -t nat -A V2RAY -d 192.168.88.0/24 -j RETURN
iptables -t nat -A V2RAY -d 192.168.86.0/24 -j RETURN
iptables -t nat -A V2RAY -p tcp -j REDIRECT --to-ports 12345
iptables -t nat -A PREROUTING -p tcp -j V2RAY
#iptables -t nat -A OUTPUT -p tcp -j V2RAY
ip rule add fwmark 0x01/0x01 table 100
ip route add local 0.0.0.0/0 dev lo table 100
iptables -t mangle -N V2RAY
iptables -t mangle -A V2RAY -p udp -j TPROXY --on-port 12345 --tproxy-mark 0x01/0x01
iptables -t mangle -A PREROUTING -j V2RAY
iptables -t mangle -I V2RAY -d serverip -j RETURN
iptables -t mangle -I V2RAY -d 114.114.114.114 -j RETURN
iptables -t mangle -I V2RAY -d 192.168.0.0/16 -j RETURN
iptables -t mangle -I V2RAY -d 172.28.0.0/16 -j RETURN
iptables -t mangle -I V2RAY -d 172.29.0.0/16 -j RETURN
iptables -t mangle -I V2RAY -d 172.30.0.0/16 -j RETURN

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

安卓下Google Play无法打开,电脑端可以开http://play.google.com

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

希望能正常使用Google Play APP 在安卓设备上。

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

服务器端配置:
{
  "log" : {
    "loglevel": "debug"
  },
  "inbound": {
    "port": 8866,
    "protocol": "vmess",
    "settings": {
      "clients": [
        {
          "id": "UUID1",
          "level": 1,
          "alterId": 64
        },
    {
          "id": "UUID2",
          "level": 1,
          "alterId": 64
        }
      ],
      "detour": {
        "to": "dynamic_port"
      }
    }
  },
  "outbound": {
    "protocol": "freedom",  
    "settings": {}
  },
  "inboundDetour": [
    {
      "protocol": "vmess",
      "port": "20000-30000",
      "tag": "dynamic_port",
      "settings": {},
      "allocate": {
        "strategy": "random",
        "concurrency": 6,
        "refresh": 5
      }
    }
  ],
  "outboundDetour": [
    {
      "protocol": "blackhole",
      "settings": {},
      "tag": "blocked"
    }
  ],
  "routing": {
    "strategy": "rules",
    "settings": {
      "rules": [
        {
          "type": "field",
          "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"
          ],
          "outboundTag": "blocked"
        }
      ]
    }
  }
}
客户端配置:
{
  "log": {
    "loglevel": "debug"
  },
  "inbound": {
    "port": 1080,
    "protocol": "socks",
    "settings": {
      "auth": "noauth"
    }
  },

  "inboundDetour": [
     {
         "domainOverride":["tls","http"],
         "port":12345,
         "protocol":"dokodemo-door",
         "settings":{
             "network": "tcp,udp",
             "followRedirect": true
         }
     }
  ],

  "outbound": {
    "tag":"proxy",
    "protocol": "vmess",
    "settings": {
      "vnext": [
        {
          "address": "SERVERIP",
          "port": 8866,
          "users": [
            {
              "id": "UUID",
              "alterId": 64
            }
          ]
        }
      ]
    }
  },
  "outboundDetour": [
    {
      "protocol": "freedom",
      "settings": {},
      "tag": "direct"
    }
  ],
  "routing": {
    "strategy": "rules",
    "settings": {
      "domainStrategy": "IPIfNonMatch",
      "rules": [
    {
          "type": "field",
          "domain": [
            "www.google.com.hk"
          ],
          "outboundTag": "proxy"
        },
        {
          "type": "field",
      "domian": [
        "womai.com",
        "jd.com",
        "taobao.com",
        "alipay.com",
        "googleapis.cn",
        "ggpht.cn"
        ],
          "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"
          ],
          "outboundTag": "direct"
        },
        {
          "type": "chinasites",
          "outboundTag": "direct"
        },
        {
          "type": "chinaip",
          "outboundTag": "direct"
        }
      ]
    }
  }
}

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

服务器端错误日志:

无法取得错误位置

客户端错误日志:

无法取得错误位置

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

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

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

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

如果你已经填完上面的问卷,请把下面的英文部份删除,再提交 Issue。

nicholascw commented 6 years ago

尝试补全dns部分的配置?

DarienRaymond commented 6 years ago

路由的direct部分写法是不合理的,请仔细阅读路由的介绍

5high commented 6 years ago

//经过多次实验发现,重启服务器端的V2ray可以正常使用Google Play 不到一分钟,需要再次重启服务器V2ray 才可以再继续使用Google Play 安卓客户端。

//下面是客户端错误日志,192.168.88.167是要访问Google Play的设备。 2018/01/19 22:12:34 [Info]: App|Proxyman|Outbound: failed to process outbound traffic > Proxy|VMess|Outbound: connection ends > context canceled 2018/01/19 22:12:34 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:38930 2018/01/19 22:12:34 [Info]: App|Dispatcher: default route for tcp:149.154.175.50:443 2018/01/19 22:12:34 [Info]: Transport|Internet|TCP: dialing TCP to tcp:172.28.58.10:8866 2018/01/19 22:12:35 [Info]: App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > context canceled 2018/01/19 22:12:35 [Info]: App|Proxyman|Outbound: failed to process outbound traffic > Proxy|VMess|Outbound: connection ends > context canceled 2018/01/19 22:12:36 [Info]: Proxy|VMess|Outbound: tunneling request to tcp:149.154.175.50:443 via tcp:172.28.58.10:8866 2018/01/19 22:12:51 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:38932 2018/01/19 22:12:52 [Info]: App|Dispatcher: default route for tcp:149.154.175.50:443 2018/01/19 22:12:52 [Info]: Transport|Internet|TCP: dialing TCP to tcp:172.28.58.10:25296 2018/01/19 22:12:52 [Info]: Proxy|VMess|Outbound: tunneling request to tcp:149.154.175.50:443 via tcp:172.28.58.10:25296 2018/01/19 22:13:05 [Info]: App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled 2018/01/19 22:13:05 [Info]: App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > context canceled 2018/01/19 22:13:07 [Info]: App|Proxyman|Outbound: failed to process outbound traffic > Proxy|VMess|Outbound: connection ends > context canceled 2018/01/19 22:13:07 [Info]: App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > context canceled 2018/01/19 22:13:07 [Info]: App|Proxyman|Outbound: failed to process outbound traffic > Proxy|VMess|Outbound: connection ends > context canceled 2018/01/19 22:13:07 [Info]: App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > Proxy|Dokodemo: failed to transport response > io: read/write on closed pipe 2018/01/19 22:13:07 [Info]: App|Proxyman|Outbound: failed to process outbound traffic > Proxy|VMess|Outbound: connection ends > context canceled 2018/01/19 22:13:07 [Info]: App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > context canceled 2018/01/19 22:13:09 [Info]: App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > Proxy|Dokodemo: failed to transport response > write tcp 192.168.88.162:12345->192.168.88.167:38932: write: broken pipe 2018/01/19 22:13:09 [Info]: App|Proxyman|Outbound: failed to process outbound traffic > Proxy|VMess|Outbound: connection ends > context canceled 2018/01/19 22:13:13 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:38936 2018/01/19 22:13:13 [Info]: App|Dispatcher: default route for tcp:149.154.175.50:443 2018/01/19 22:13:13 [Info]: Transport|Internet|TCP: dialing TCP to tcp:172.28.58.10:8866 2018/01/19 22:13:13 [Info]: Proxy|VMess|Outbound: tunneling request to tcp:149.154.175.50:443 via tcp:172.28.58.10:8866

//刚启动服务器端V2RAY, 安卓Google Play正常时候的日志:

[root@localhost ~]# /usr/bin/v2ray/v2ray -config /etc/v2ray/config.json V2Ray v3.6 (die Commanderin) 20180112 An unified platform for anti-censorship. 2018/01/19 22:23:46 [Debug]: App|Proxyman|Inbound: creating stream worker on 0.0.0.0:8866 2018/01/19 22:23:46 [Info]: Transport|Internet|TCP: listening TCP on 0.0.0.0:8866 2018/01/19 22:23:46 [Info]: Transport|Internet|TCP: listening TCP on 0.0.0.0:25998 2018/01/19 22:23:46 [Info]: Transport|Internet|TCP: listening TCP on 0.0.0.0:20633 2018/01/19 22:23:46 [Info]: Transport|Internet|TCP: listening TCP on 0.0.0.0:26314 2018/01/19 22:23:46 [Info]: Transport|Internet|TCP: listening TCP on 0.0.0.0:24647 2018/01/19 22:23:46 [Info]: Transport|Internet|TCP: listening TCP on 0.0.0.0:20053 2018/01/19 22:23:46 [Info]: Transport|Internet|TCP: listening TCP on 0.0.0.0:24732 2018/01/19 22:23:46 [Warning]: Core: V2Ray started 2018/01/19 22:23:51 114.252.133.228:58066 accepted udp:255.255.255.255:5678 2018/01/19 22:23:51 [Info]: Proxy|VMess|Inbound: received request for udp:255.255.255.255:5678 2018/01/19 22:23:51 [Debug]: Proxy|VMess|Inbound: pick detour handler for port 20633 for 5 minutes. 2018/01/19 22:23:51 [Info]: App|Dispatcher: default route for udp:255.255.255.255:5678 2018/01/19 22:23:51 [Info]: Proxy|Freedom: opening connection to udp:255.255.255.255:5678 2018/01/19 22:23:57 219.234.220.80:45404 accepted tcp:149.154.175.50:443 2018/01/19 22:23:57 [Info]: Proxy|VMess|Inbound: received request for tcp:149.154.175.50:443 2018/01/19 22:23:57 [Debug]: Proxy|VMess|Inbound: pick detour handler for port 24732 for 5 minutes. 2018/01/19 22:23:57 [Info]: App|Dispatcher: default route for tcp:149.154.175.50:443 2018/01/19 22:23:57 [Info]: Proxy|Freedom: opening connection to tcp:149.154.175.50:443 2018/01/19 22:23:57 [Info]: Transport|Internet|TCP: dialing TCP to tcp:149.154.175.50:443 2018/01/19 22:23:57 114.252.133.228:58078 accepted tcp:149.154.175.50:443 2018/01/19 22:23:57 [Info]: Proxy|VMess|Inbound: received request for tcp:149.154.175.50:443 2018/01/19 22:23:57 [Debug]: Proxy|VMess|Inbound: pick detour handler for port 24732 for 5 minutes. 2018/01/19 22:23:57 [Info]: App|Dispatcher: default route for tcp:149.154.175.50:443 2018/01/19 22:23:57 [Info]: Proxy|Freedom: opening connection to tcp:149.154.175.50:443 2018/01/19 22:23:57 [Info]: Transport|Internet|TCP: dialing TCP to tcp:149.154.175.50:443 2018/01/19 22:23:57 [Info]: App|Proxyman|Inbound: connection ends > Proxy|VMess|Encoding: failed to read request header > EOF 2018/01/19 22:23:58 [Info]: App|Proxyman|Inbound: connection ends > Proxy|VMess|Encoding: failed to read request header > EOF 2018/01/19 22:23:59 114.252.133.228:58092 accepted udp:224.0.0.251:5353 2018/01/19 22:23:59 [Info]: Proxy|VMess|Inbound: received request for udp:224.0.0.251:5353 2018/01/19 22:23:59 [Debug]: Proxy|VMess|Inbound: pick detour handler for port 24732 for 5 minutes. 2018/01/19 22:23:59 [Info]: App|Dispatcher: default route for udp:224.0.0.251:5353 2018/01/19 22:23:59 [Info]: Proxy|Freedom: opening connection to udp:224.0.0.251:5353 2018/01/19 22:24:00 114.252.133.228:56258 accepted tcp:client.wns.windows.com:443 2018/01/19 22:24:00 [Info]: Proxy|VMess|Inbound: received request for tcp:client.wns.windows.com:443 2018/01/19 22:24:00 [Info]: App|Dispatcher: default route for tcp:client.wns.windows.com:443 2018/01/19 22:24:00 [Info]: Proxy|Freedom: opening connection to tcp:client.wns.windows.com:443 2018/01/19 22:24:00 [Info]: Transport|Internet|TCP: dialing TCP to tcp:client.wns.windows.com:443 2018/01/19 22:24:00 114.252.133.228:58100 accepted tcp:client.wns.windows.com:443 2018/01/19 22:24:00 [Info]: Proxy|VMess|Inbound: received request for tcp:client.wns.windows.com:443 2018/01/19 22:24:00 [Debug]: Proxy|VMess|Inbound: pick detour handler for port 26314 for 5 minutes. 2018/01/19 22:24:00 [Info]: App|Dispatcher: default route for tcp:client.wns.windows.com:443 2018/01/19 22:24:00 [Info]: Proxy|Freedom: opening connection to tcp:client.wns.windows.com:443 2018/01/19 22:24:00 [Info]: Transport|Internet|TCP: dialing TCP to tcp:client.wns.windows.com:443 2018/01/19 22:24:00 219.234.220.80:57591 accepted tcp:149.154.175.50:443 2018/01/19 22:24:00 [Info]: Proxy|VMess|Inbound: received request for tcp:149.154.175.50:443 2018/01/19 22:24:00 [Info]: App|Dispatcher: default route for tcp:149.154.175.50:443 2018/01/19 22:24:00 [Info]: Proxy|Freedom: opening connection to tcp:149.154.175.50:443 2018/01/19 22:24:00 [Info]: Transport|Internet|TCP: dialing TCP to tcp:149.154.175.50:443 2018/01/19 22:24:00 219.234.220.80:31181 accepted tcp:149.154.175.50:443 2018/01/19 22:24:00 [Info]: Proxy|VMess|Inbound: received request for tcp:149.154.175.50:443 2018/01/19 22:24:00 [Debug]: Proxy|VMess|Inbound: pick detour handler for port 20053 for 5 minutes. 2018/01/19 22:24:00 [Info]: App|Dispatcher: default route for tcp:149.154.175.50:443 2018/01/19 22:24:00 [Info]: Proxy|Freedom: opening connection to tcp:149.154.175.50:443 2018/01/19 22:24:00 [Info]: Transport|Internet|TCP: dialing TCP to tcp:149.154.175.50:443 2018/01/19 22:24:00 114.252.133.228:56260 accepted udp:64.233.189.138:443 2018/01/19 22:24:00 [Info]: Proxy|VMess|Inbound: received request for udp:64.233.189.138:443 2018/01/19 22:24:00 [Info]: App|Dispatcher: default route for udp:64.233.189.138:443 2018/01/19 22:24:00 [Info]: Proxy|Freedom: opening connection to udp:64.233.189.138:443 2018/01/19 22:24:01 [Info]: App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled 2018/01/19 22:24:01 [Info]: App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled 2018/01/19 22:24:02 114.252.133.228:58116 accepted tcp:198.11.188.24:80 2018/01/19 22:24:02 [Info]: Proxy|VMess|Inbound: received request for tcp:198.11.188.24:80 2018/01/19 22:24:02 [Debug]: Proxy|VMess|Inbound: pick detour handler for port 20053 for 5 minutes. 2018/01/19 22:24:02 [Info]: App|Dispatcher: default route for tcp:198.11.188.24:80 2018/01/19 22:24:02 [Info]: Proxy|Freedom: opening connection to tcp:198.11.188.24:80 2018/01/19 22:24:02 [Info]: Transport|Internet|TCP: dialing TCP to tcp:198.11.188.24:80 2018/01/19 22:24:02 114.252.133.228:56274 accepted tcp:HK2SCH130021337.wns.windows.com:443 2018/01/19 22:24:02 [Info]: Proxy|VMess|Inbound: received request for tcp:HK2SCH130021337.wns.windows.com:443 2018/01/19 22:24:02 [Info]: App|Dispatcher: default route for tcp:HK2SCH130021337.wns.windows.com:443 2018/01/19 22:24:02 [Info]: Proxy|Freedom: opening connection to tcp:HK2SCH130021337.wns.windows.com:443 2018/01/19 22:24:02 [Info]: Transport|Internet|TCP: dialing TCP to tcp:HK2SCH130021337.wns.windows.com:443 2018/01/19 22:24:02 114.252.133.228:36126 accepted tcp:HK2SCH130021428.wns.windows.com:443 2018/01/19 22:24:02 [Info]: Proxy|VMess|Inbound: received request for tcp:HK2SCH130021428.wns.windows.com:443 2018/01/19 22:24:02 [Info]: App|Dispatcher: default route for tcp:HK2SCH130021428.wns.windows.com:443 2018/01/19 22:24:02 [Info]: Proxy|Freedom: opening connection to tcp:HK2SCH130021428.wns.windows.com:443 2018/01/19 22:24:02 [Info]: Transport|Internet|TCP: dialing TCP to tcp:HK2SCH130021428.wns.windows.com:443 2018/01/19 22:24:02 [Info]: App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled 2018/01/19 22:24:03 114.252.133.228:56282 accepted tcp:lh3.googleusercontent.com:443 2018/01/19 22:24:03 [Info]: Proxy|VMess|Inbound: received request for tcp:lh3.googleusercontent.com:443 2018/01/19 22:24:03 [Info]: App|Dispatcher: default route for tcp:lh3.googleusercontent.com:443 2018/01/19 22:24:03 [Info]: Proxy|Freedom: opening connection to tcp:lh3.googleusercontent.com:443 2018/01/19 22:24:03 [Info]: Transport|Internet|TCP: dialing TCP to tcp:lh3.googleusercontent.com:443 2018/01/19 22:24:03 114.252.133.228:58128 accepted tcp:lh3.googleusercontent.com:443 2018/01/19 22:24:03 [Info]: Proxy|VMess|Inbound: received request for tcp:lh3.googleusercontent.com:443 2018/01/19 22:24:03 [Debug]: Proxy|VMess|Inbound: pick detour handler for port 25998 for 5 minutes. 2018/01/19 22:24:03 [Info]: App|Dispatcher: default route for tcp:lh3.googleusercontent.com:443 2018/01/19 22:24:03 [Info]: Proxy|Freedom: opening connection to tcp:lh3.googleusercontent.com:443 2018/01/19 22:24:03 [Info]: Transport|Internet|TCP: dialing TCP to tcp:lh3.googleusercontent.com:443 2018/01/19 22:24:03 114.252.133.228:36136 accepted tcp:lh3.googleusercontent.com:443 2018/01/19 22:24:03 114.252.133.228:39010 accepted tcp:lh4.ggpht.com:443 2018/01/19 22:24:03 [Info]: Proxy|VMess|Inbound: received request for tcp:lh3.googleusercontent.com:443 2018/01/19 22:24:03 [Info]: Proxy|VMess|Inbound: received request for tcp:lh4.ggpht.com:443 2018/01/19 22:24:03 [Info]: App|Dispatcher: default route for tcp:lh3.googleusercontent.com:443 2018/01/19 22:24:03 [Info]: Proxy|Freedom: opening connection to tcp:lh3.googleusercontent.com:443 2018/01/19 22:24:03 [Info]: Transport|Internet|TCP: dialing TCP to tcp:lh3.googleusercontent.com:443 2018/01/19 22:24:03 [Info]: App|Dispatcher: default route for tcp:lh4.ggpht.com:443 2018/01/19 22:24:03 [Info]: Proxy|Freedom: opening connection to tcp:lh4.ggpht.com:443 2018/01/19 22:24:03 [Info]: Transport|Internet|TCP: dialing TCP to tcp:lh4.ggpht.com:443 2018/01/19 22:24:04 114.252.133.228:56292 accepted tcp:216.58.200.225:443 2018/01/19 22:24:04 [Info]: Proxy|VMess|Inbound: received request for tcp:216.58.200.225:443 2018/01/19 22:24:04 [Info]: App|Dispatcher: default route for tcp:216.58.200.225:443 2018/01/19 22:24:04 [Info]: Proxy|Freedom: opening connection to tcp:216.58.200.225:443 2018/01/19 22:24:04 [Info]: Transport|Internet|TCP: dialing TCP to tcp:216.58.200.225:443 2018/01/19 22:24:04 114.252.133.228:58136 accepted tcp:172.217.160.65:443 2018/01/19 22:24:04 [Info]: Proxy|VMess|Inbound: received request for tcp:172.217.160.65:443 2018/01/19 22:24:04 [Debug]: Proxy|VMess|Inbound: pick detour handler for port 20633 for 5 minutes. 2018/01/19 22:24:04 [Info]: App|Dispatcher: default route for tcp:172.217.160.65:443 2018/01/19 22:24:04 [Info]: Proxy|Freedom: opening connection to tcp:172.217.160.65:443 2018/01/19 22:24:04 [Info]: Transport|Internet|TCP: dialing TCP to tcp:172.217.160.65:443 2018/01/19 22:24:08 114.252.133.228:36146 accepted tcp:mqtt-mini.facebook.com:443 2018/01/19 22:24:08 [Info]: Proxy|VMess|Inbound: received request for tcp:mqtt-mini.facebook.com:443 2018/01/19 22:24:08 [Info]: App|Dispatcher: default route for tcp:mqtt-mini.facebook.com:443 2018/01/19 22:24:08 [Info]: Proxy|Freedom: opening connection to tcp:mqtt-mini.facebook.com:443 2018/01/19 22:24:08 [Info]: Transport|Internet|TCP: dialing TCP to tcp:mqtt-mini.facebook.com:443 2018/01/19 22:24:10 114.252.133.228:39020 accepted tcp:149.154.175.50:443 2018/01/19 22:24:10 [Info]: Proxy|VMess|Inbound: received request for tcp:149.154.175.50:443 2018/01/19 22:24:10 [Info]: App|Dispatcher: default route for tcp:149.154.175.50:443 2018/01/19 22:24:10 [Info]: Proxy|Freedom: opening connection to tcp:149.154.175.50:443 2018/01/19 22:24:10 [Info]: Transport|Internet|TCP: dialing TCP to tcp:149.154.175.50:443 2018/01/19 22:24:10 114.252.133.228:54344 accepted udp:224.0.0.251:5353 2018/01/19 22:24:10 [Info]: Proxy|VMess|Inbound: received request for udp:224.0.0.251:5353 2018/01/19 22:24:10 [Info]: App|Dispatcher: default route for udp:224.0.0.251:5353 2018/01/19 22:24:10 [Info]: Proxy|Freedom: opening connection to udp:224.0.0.251:5353 2018/01/19 22:24:14 [Info]: App|Proxyman|Inbound: connection ends > Proxy|VMess|Inbound: connection ends > EOF 2018/01/19 22:24:14 [Info]: App|Proxyman|Inbound: connection ends > Proxy|VMess|Inbound: connection ends > EOF 2018/01/19 22:24:14 [Info]: App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled 2018/01/19 22:24:14 114.252.133.228:58146 accepted tcp:android.googleapis.com:443 2018/01/19 22:24:14 [Info]: Proxy|VMess|Inbound: received request for tcp:android.googleapis.com:443 2018/01/19 22:24:14 [Debug]: Proxy|VMess|Inbound: pick detour handler for port 20053 for 5 minutes. 2018/01/19 22:24:14 [Info]: App|Dispatcher: default route for tcp:android.googleapis.com:443 2018/01/19 22:24:14 [Info]: Proxy|Freedom: opening connection to tcp:android.googleapis.com:443 2018/01/19 22:24:14 [Info]: Transport|Internet|TCP: dialing TCP to tcp:android.googleapis.com:443 2018/01/19 22:24:15 114.252.133.228:56304 accepted tcp:172.217.160.74:443 2018/01/19 22:24:15 [Info]: Proxy|VMess|Inbound: received request for tcp:172.217.160.74:443 2018/01/19 22:24:15 [Info]: App|Dispatcher: default route for tcp:172.217.160.74:443 2018/01/19 22:24:15 [Info]: Proxy|Freedom: opening connection to tcp:172.217.160.74:443 2018/01/19 22:24:15 [Info]: Transport|Internet|TCP: dialing TCP to tcp:172.217.160.74:443

// 刚启动客户端v2ray , Google Play客户端正常时候的日志

root@raspberrypi:~# /usr/bin/v2ray/v2ray -config /etc/v2ray/config.json V2Ray v3.6 (die Commanderin) 20180112 An unified platform for anti-censorship. 2018/01/19 22:23:56 [Debug]: App|Proxyman|Inbound: creating stream worker on 0.0.0.0:1080 2018/01/19 22:23:56 [Debug]: App|Proxyman|Inbound: creating stream worker on 0.0.0.0:12345 2018/01/19 22:23:56 [Info]: Transport|Internet|TCP: listening TCP on 0.0.0.0:1080 2018/01/19 22:23:56 [Info]: Transport|Internet|TCP: listening TCP on 0.0.0.0:12345 2018/01/19 22:23:56 [Info]: Transport|Internet|UDP: listening UDP on 0.0.0.0:12345 2018/01/19 22:23:56 [Warning]: Core: V2Ray started 2018/01/19 22:23:56 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:33214 2018/01/19 22:23:56 [Info]: App|Dispatcher: taking detour [direct] for [tcp:106.11.243.7:80] 2018/01/19 22:23:56 [Info]: Proxy|Freedom: opening connection to tcp:106.11.243.7:80 2018/01/19 22:23:56 [Info]: Transport|Internet|TCP: dialing TCP to tcp:106.11.243.7:80 2018/01/19 22:23:57 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:39370 2018/01/19 22:23:57 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:34660 2018/01/19 22:23:57 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:59038 2018/01/19 22:23:57 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:34662 2018/01/19 22:23:57 [Info]: App|Dispatcher: sniffed domain: qn-tcmallot.im.taobao.com 2018/01/19 22:23:57 [Info]: App|Dispatcher: taking detour [direct] for [tcp:qn-tcmallot.im.taobao.com:80] 2018/01/19 22:23:57 [Info]: Proxy|Freedom: opening connection to tcp:qn-tcmallot.im.taobao.com:80 2018/01/19 22:23:57 [Info]: Transport|Internet|TCP: dialing TCP to tcp:qn-tcmallot.im.taobao.com:80 2018/01/19 22:23:57 [Info]: App|Dispatcher: sniffed domain: acs.m.taobao.com 2018/01/19 22:23:57 [Info]: App|Dispatcher: taking detour [direct] for [tcp:acs.m.taobao.com:443] 2018/01/19 22:23:57 [Info]: Proxy|Freedom: opening connection to tcp:acs.m.taobao.com:443 2018/01/19 22:23:57 [Info]: Transport|Internet|TCP: dialing TCP to tcp:acs.m.taobao.com:443 2018/01/19 22:23:57 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:47229 2018/01/19 22:23:57 [Info]: App|Dispatcher: taking detour [direct] for [udp:117.121.49.101:19000] 2018/01/19 22:23:57 [Info]: Proxy|Freedom: opening connection to udp:117.121.49.101:19000 2018/01/19 22:23:57 [Info]: App|Dispatcher: default route for tcp:149.154.175.50:443 2018/01/19 22:23:57 [Info]: Transport|Internet|TCP: dialing TCP to tcp:111.111.111.111:8866 2018/01/19 22:23:57 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:34762 2018/01/19 22:23:57 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:55936 2018/01/19 22:23:57 [Info]: Proxy|VMess|Outbound: tunneling request to tcp:149.154.175.50:443 via tcp:111.111.111.111:8866 2018/01/19 22:23:57 [Info]: App|Dispatcher: taking detour [direct] for [tcp:121.46.25.199:7005] 2018/01/19 22:23:57 [Info]: Proxy|Freedom: opening connection to tcp:121.46.25.199:7005 2018/01/19 22:23:57 [Info]: Transport|Internet|TCP: dialing TCP to tcp:121.46.25.199:7005 2018/01/19 22:23:57 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:53080 2018/01/19 22:23:57 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:53082 2018/01/19 22:23:57 [Info]: App|Dispatcher: sniffed domain: configsvr.msf.3g.qq.com 2018/01/19 22:23:57 [Info]: App|Dispatcher: taking detour [direct] for [tcp:configsvr.msf.3g.qq.com:80] 2018/01/19 22:23:57 [Info]: Proxy|Freedom: opening connection to tcp:configsvr.msf.3g.qq.com:80 2018/01/19 22:23:57 [Info]: Transport|Internet|TCP: dialing TCP to tcp:configsvr.msf.3g.qq.com:80 2018/01/19 22:23:57 [Info]: App|Dispatcher: taking detour [direct] for [tcp:140.205.47.103:80] 2018/01/19 22:23:57 [Info]: Proxy|Freedom: opening connection to tcp:140.205.47.103:80 2018/01/19 22:23:57 [Info]: Transport|Internet|TCP: dialing TCP to tcp:140.205.47.103:80 2018/01/19 22:23:57 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:34674 2018/01/19 22:23:57 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:34676 2018/01/19 22:23:57 [Info]: App|Dispatcher: default route for tcp:198.11.189.91:443 2018/01/19 22:23:57 [Info]: Transport|Internet|TCP: dialing TCP to tcp:111.111.111.111:8866 2018/01/19 22:23:57 [Info]: App|Dispatcher: sniffed domain: configsvr.msf.3g.qq.com 2018/01/19 22:23:57 [Info]: App|Dispatcher: taking detour [direct] for [tcp:configsvr.msf.3g.qq.com:80] 2018/01/19 22:23:57 [Info]: Proxy|Freedom: opening connection to tcp:configsvr.msf.3g.qq.com:80 2018/01/19 22:23:57 [Info]: Transport|Internet|TCP: dialing TCP to tcp:configsvr.msf.3g.qq.com:80 2018/01/19 22:23:57 [Info]: App|Dispatcher: sniffed domain: acs.m.taobao.com 2018/01/19 22:23:57 [Info]: App|Dispatcher: taking detour [direct] for [tcp:acs.m.taobao.com:443] 2018/01/19 22:23:57 [Info]: Proxy|Freedom: opening connection to tcp:acs.m.taobao.com:443 2018/01/19 22:23:57 [Info]: Transport|Internet|TCP: dialing TCP to tcp:acs.m.taobao.com:443 2018/01/19 22:23:57 [Info]: Proxy|VMess|Outbound: tunneling request to tcp:198.11.189.91:443 via tcp:111.111.111.111:8866 2018/01/19 22:23:57 [Info]: Proxy|VMess|Encoding: failed to read response header > read tcp 192.168.88.162:58084->111.111.111.111:8866: use of closed network connection 2018/01/19 22:23:58 [Info]: App|Dispatcher: default route for tcp:198.11.189.91:443 2018/01/19 22:23:58 [Info]: Transport|Internet|TCP: dialing TCP to tcp:111.111.111.111:8866 2018/01/19 22:23:58 [Info]: Proxy|VMess|Outbound: tunneling request to tcp:198.11.189.91:443 via tcp:111.111.111.111:8866 2018/01/19 22:23:58 [Info]: Proxy|VMess|Encoding: failed to read response header > read tcp 192.168.88.162:58086->111.111.111.111:8866: use of closed network connection 2018/01/19 22:23:58 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.165:54225 2018/01/19 22:23:58 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.165:49437 2018/01/19 22:23:58 [Info]: App|Dispatcher: sniffed domain: client.wns.windows.com 2018/01/19 22:23:58 [Info]: App|Router: looking for IP for domain: client.wns.windows.com 2018/01/19 22:23:58 [Info]: App|Dispatcher: sniffed domain: client.wns.windows.com 2018/01/19 22:23:58 [Info]: App|Router: looking for IP for domain: client.wns.windows.com 2018/01/19 22:23:59 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:42792 2018/01/19 22:23:59 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:42794 2018/01/19 22:23:59 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.166:5353 2018/01/19 22:23:59 [Info]: App|Dispatcher: default route for udp:224.0.0.251:5353 2018/01/19 22:23:59 [Info]: Transport|Internet|TCP: dialing TCP to tcp:111.111.111.111:8866 2018/01/19 22:23:59 [Info]: App|Dispatcher: taking detour [direct] for [tcp:125.39.133.141:8080] 2018/01/19 22:23:59 [Info]: Proxy|Freedom: opening connection to tcp:125.39.133.141:8080 2018/01/19 22:23:59 [Info]: Transport|Internet|TCP: dialing TCP to tcp:125.39.133.141:8080 2018/01/19 22:23:59 [Info]: Proxy|VMess|Outbound: tunneling request to udp:224.0.0.251:5353 via tcp:111.111.111.111:8866 2018/01/19 22:23:59 [Info]: App|Dispatcher: taking detour [direct] for [tcp:125.39.133.141:8080] 2018/01/19 22:23:59 [Info]: Proxy|Freedom: opening connection to tcp:125.39.133.141:8080 2018/01/19 22:23:59 [Info]: Transport|Internet|TCP: dialing TCP to tcp:125.39.133.141:8080 2018/01/19 22:23:59 [Info]: App|Dispatcher: default route for tcp:client.wns.windows.com:443 2018/01/19 22:23:59 [Info]: App|Dispatcher: default route for tcp:client.wns.windows.com:443 2018/01/19 22:23:59 [Info]: Transport|Internet|TCP: dialing TCP to tcp:111.111.111.111:24732 2018/01/19 22:23:59 [Info]: Transport|Internet|TCP: dialing TCP to tcp:111.111.111.111:8866 2018/01/19 22:23:59 [Info]: Proxy|VMess|Outbound: tunneling request to tcp:client.wns.windows.com:443 via tcp:111.111.111.111:24732 2018/01/19 22:23:59 [Info]: Proxy|VMess|Outbound: tunneling request to tcp:client.wns.windows.com:443 via tcp:111.111.111.111:8866 2018/01/19 22:24:00 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:45952 2018/01/19 22:24:00 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:53374 2018/01/19 22:24:00 [Info]: App|Dispatcher: default route for udp:64.233.189.138:443 2018/01/19 22:24:00 [Info]: Transport|Internet|TCP: dialing TCP to tcp:111.111.111.111:24732 2018/01/19 22:24:00 [Info]: Proxy|VMess|Outbound: tunneling request to udp:64.233.189.138:443 via tcp:111.111.111.111:24732 2018/01/19 22:24:00 [Info]: App|Dispatcher: taking detour [direct] for [tcp:140.205.76.118:8000] 2018/01/19 22:24:00 [Info]: Proxy|Freedom: opening connection to tcp:140.205.76.118:8000 2018/01/19 22:24:00 [Info]: Transport|Internet|TCP: dialing TCP to tcp:140.205.76.118:8000 2018/01/19 22:24:00 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:52882 2018/01/19 22:24:00 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:52884 2018/01/19 22:24:00 [Info]: App|Dispatcher: sniffed domain: jindoucloud.taobao.com 2018/01/19 22:24:00 [Info]: App|Dispatcher: taking detour [direct] for [tcp:jindoucloud.taobao.com:443] 2018/01/19 22:24:00 [Info]: Proxy|Freedom: opening connection to tcp:jindoucloud.taobao.com:443 2018/01/19 22:24:00 [Info]: Transport|Internet|TCP: dialing TCP to tcp:jindoucloud.taobao.com:443 2018/01/19 22:24:00 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:47266 2018/01/19 22:24:00 [Info]: App|Dispatcher: taking detour [direct] for [tcp:42.62.120.62:5224] 2018/01/19 22:24:00 [Info]: Proxy|Freedom: opening connection to tcp:42.62.120.62:5224 2018/01/19 22:24:00 [Info]: Transport|Internet|TCP: dialing TCP to tcp:42.62.120.62:5224 2018/01/19 22:24:01 [Info]: App|Proxyman|Outbound: failed to process outbound traffic > Proxy|VMess|Outbound: connection ends > context canceled 2018/01/19 22:24:01 [Info]: App|Proxyman|Outbound: failed to process outbound traffic > Proxy|VMess|Outbound: connection ends > context canceled 2018/01/19 22:24:01 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.165:49438 2018/01/19 22:24:01 [Info]: App|Dispatcher: taking detour [direct] for [tcp:140.205.230.49:443] 2018/01/19 22:24:01 [Info]: Proxy|Freedom: opening connection to tcp:140.205.230.49:443 2018/01/19 22:24:01 [Info]: Transport|Internet|TCP: dialing TCP to tcp:140.205.230.49:443 2018/01/19 22:24:01 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.165:49439 2018/01/19 22:24:01 [Info]: App|Dispatcher: sniffed domain: HK2SCH130021428.wns.windows.com 2018/01/19 22:24:01 [Info]: App|Router: looking for IP for domain: HK2SCH130021428.wns.windows.com 2018/01/19 22:24:01 [Info]: App|Dispatcher: sniffed domain: HK2SCH130021337.wns.windows.com 2018/01/19 22:24:01 [Info]: App|Router: looking for IP for domain: HK2SCH130021337.wns.windows.com 2018/01/19 22:24:01 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:39470 2018/01/19 22:24:01 [Info]: App|Dispatcher: taking detour [direct] for [tcp:42.62.120.25:5226] 2018/01/19 22:24:01 [Info]: Proxy|Freedom: opening connection to tcp:42.62.120.25:5226 2018/01/19 22:24:01 [Info]: Transport|Internet|TCP: dialing TCP to tcp:42.62.120.25:5226 2018/01/19 22:24:01 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:52890 2018/01/19 22:24:01 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:52892 2018/01/19 22:24:01 [Info]: App|Dispatcher: sniffed domain: jindoucloud.taobao.com 2018/01/19 22:24:01 [Info]: App|Dispatcher: taking detour [direct] for [tcp:jindoucloud.taobao.com:443] 2018/01/19 22:24:01 [Info]: Proxy|Freedom: opening connection to tcp:jindoucloud.taobao.com:443 2018/01/19 22:24:01 [Info]: Transport|Internet|TCP: dialing TCP to tcp:jindoucloud.taobao.com:443 2018/01/19 22:24:01 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:59028 2018/01/19 22:24:01 [Info]: App|Dispatcher: sniffed domain: 198.11.188.24 2018/01/19 22:24:01 [Info]: App|Dispatcher: default route for tcp:198.11.188.24:80 2018/01/19 22:24:01 [Info]: Transport|Internet|TCP: dialing TCP to tcp:111.111.111.111:8866 2018/01/19 22:24:01 [Info]: Proxy|VMess|Outbound: tunneling request to tcp:198.11.188.24:80 via tcp:111.111.111.111:8866 2018/01/19 22:24:01 [Info]: App|Dispatcher: default route for tcp:HK2SCH130021337.wns.windows.com:443 2018/01/19 22:24:01 [Info]: Transport|Internet|TCP: dialing TCP to tcp:111.111.111.111:24732 2018/01/19 22:24:01 [Info]: App|Dispatcher: default route for tcp:HK2SCH130021428.wns.windows.com:443 2018/01/19 22:24:01 [Info]: Transport|Internet|TCP: dialing TCP to tcp:111.111.111.111:26314 2018/01/19 22:24:01 [Info]: Proxy|VMess|Outbound: tunneling request to tcp:HK2SCH130021337.wns.windows.com:443 via tcp:111.111.111.111:24732 2018/01/19 22:24:01 [Info]: Proxy|VMess|Outbound: tunneling request to tcp:HK2SCH130021428.wns.windows.com:443 via tcp:111.111.111.111:26314 2018/01/19 22:24:01 [Info]: App|Dispatcher: taking detour [direct] for [tcp:140.205.230.49:443] 2018/01/19 22:24:01 [Info]: Proxy|Freedom: opening connection to tcp:140.205.230.49:443 2018/01/19 22:24:01 [Info]: Transport|Internet|TCP: dialing TCP to tcp:140.205.230.49:443 2018/01/19 22:24:02 [Info]: App|Proxyman|Outbound: failed to process outbound traffic > Proxy|VMess|Outbound: connection ends > context canceled 2018/01/19 22:24:02 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:46296 2018/01/19 22:24:02 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:45462 2018/01/19 22:24:02 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:46300 2018/01/19 22:24:02 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:46298 2018/01/19 22:24:02 [Info]: App|Dispatcher: sniffed domain: lh3.googleusercontent.com 2018/01/19 22:24:02 [Info]: App|Router: looking for IP for domain: lh3.googleusercontent.com 2018/01/19 22:24:02 [Info]: App|Dispatcher: sniffed domain: lh4.ggpht.com 2018/01/19 22:24:02 [Info]: App|Dispatcher: sniffed domain: lh3.googleusercontent.com 2018/01/19 22:24:02 [Info]: App|Dispatcher: sniffed domain: lh3.googleusercontent.com 2018/01/19 22:24:02 [Info]: App|Router: looking for IP for domain: lh4.ggpht.com 2018/01/19 22:24:02 [Info]: App|Router: looking for IP for domain: lh3.googleusercontent.com 2018/01/19 22:24:02 [Info]: App|Router: looking for IP for domain: lh3.googleusercontent.com 2018/01/19 22:24:02 [Info]: App|Dispatcher: default route for tcp:lh3.googleusercontent.com:443 2018/01/19 22:24:02 [Info]: App|Dispatcher: default route for tcp:lh3.googleusercontent.com:443 2018/01/19 22:24:02 [Info]: Transport|Internet|TCP: dialing TCP to tcp:111.111.111.111:8866 2018/01/19 22:24:02 [Info]: Transport|Internet|TCP: dialing TCP to tcp:111.111.111.111:24732 2018/01/19 22:24:02 [Info]: App|Dispatcher: default route for tcp:lh3.googleusercontent.com:443 2018/01/19 22:24:02 [Info]: Transport|Internet|TCP: dialing TCP to tcp:111.111.111.111:26314 2018/01/19 22:24:02 [Info]: App|Dispatcher: default route for tcp:lh4.ggpht.com:443 2018/01/19 22:24:02 [Info]: Transport|Internet|TCP: dialing TCP to tcp:111.111.111.111:20053 2018/01/19 22:24:02 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:45464 2018/01/19 22:24:02 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:46306 2018/01/19 22:24:02 [Info]: Proxy|VMess|Outbound: tunneling request to tcp:lh3.googleusercontent.com:443 via tcp:111.111.111.111:24732 2018/01/19 22:24:02 [Info]: Proxy|VMess|Outbound: tunneling request to tcp:lh3.googleusercontent.com:443 via tcp:111.111.111.111:8866 2018/01/19 22:24:02 [Info]: Proxy|VMess|Outbound: tunneling request to tcp:lh3.googleusercontent.com:443 via tcp:111.111.111.111:26314 2018/01/19 22:24:02 [Info]: Proxy|VMess|Outbound: tunneling request to tcp:lh4.ggpht.com:443 via tcp:111.111.111.111:20053 2018/01/19 22:24:03 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:53870 2018/01/19 22:24:03 [Info]: App|Dispatcher: sniffed domain: qngateway.taobao.com 2018/01/19 22:24:03 [Info]: App|Dispatcher: taking detour [direct] for [tcp:qngateway.taobao.com:80] 2018/01/19 22:24:03 [Info]: Proxy|Freedom: opening connection to tcp:qngateway.taobao.com:80 2018/01/19 22:24:03 [Info]: Transport|Internet|TCP: dialing TCP to tcp:qngateway.taobao.com:80 2018/01/19 22:24:03 [Info]: App|Dispatcher: default route for tcp:172.217.160.65:443 2018/01/19 22:24:03 [Info]: Transport|Internet|TCP: dialing TCP to tcp:111.111.111.111:8866 2018/01/19 22:24:03 [Info]: App|Dispatcher: default route for tcp:216.58.200.225:443 2018/01/19 22:24:03 [Info]: Transport|Internet|TCP: dialing TCP to tcp:111.111.111.111:24732 2018/01/19 22:24:03 [Info]: Proxy|VMess|Outbound: tunneling request to tcp:216.58.200.225:443 via tcp:111.111.111.111:24732 2018/01/19 22:24:03 [Info]: Proxy|VMess|Outbound: tunneling request to tcp:172.217.160.65:443 via tcp:111.111.111.111:8866 2018/01/19 22:24:08 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:44878 2018/01/19 22:24:08 [Info]: App|Dispatcher: sniffed domain: mqtt-mini.facebook.com 2018/01/19 22:24:08 [Info]: App|Router: looking for IP for domain: mqtt-mini.facebook.com 2018/01/19 22:24:08 [Info]: App|Dispatcher: default route for tcp:mqtt-mini.facebook.com:443 2018/01/19 22:24:08 [Info]: Transport|Internet|TCP: dialing TCP to tcp:111.111.111.111:26314 2018/01/19 22:24:08 [Info]: Proxy|VMess|Outbound: tunneling request to tcp:mqtt-mini.facebook.com:443 via tcp:111.111.111.111:26314 2018/01/19 22:24:10 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:39440 2018/01/19 22:24:10 [Info]: App|Dispatcher: default route for tcp:149.154.175.50:443 2018/01/19 22:24:10 [Info]: Transport|Internet|TCP: dialing TCP to tcp:111.111.111.111:20053 2018/01/19 22:24:10 [Info]: Proxy|VMess|Outbound: tunneling request to tcp:149.154.175.50:443 via tcp:111.111.111.111:20053 2018/01/19 22:24:10 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.172:5353 2018/01/19 22:24:10 [Info]: App|Dispatcher: default route for udp:224.0.0.251:5353 2018/01/19 22:24:10 [Info]: Transport|Internet|TCP: dialing TCP to tcp:111.111.111.111:25998 2018/01/19 22:24:10 [Info]: Proxy|VMess|Outbound: tunneling request to udp:224.0.0.251:5353 via tcp:111.111.111.111:25998 2018/01/19 22:24:12 [Info]: App|Proxyman|Outbound: failed to process outbound traffic > Proxy|VMess|Outbound: connection ends > context canceled 2018/01/19 22:24:12 [Info]: App|Proxyman|Outbound: failed to process outbound traffic > Proxy|VMess|Outbound: connection ends > context canceled 2018/01/19 22:24:12 [Info]: App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled 2018/01/19 22:24:12 [Info]: App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > context canceled 2018/01/19 22:24:12 [Info]: App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > context canceled 2018/01/19 22:24:12 [Info]: Proxy|VMess|Encoding: failed to read response header > read tcp 192.168.88.162:58092->111.111.111.111:8866: use of closed network connection 2018/01/19 22:24:12 [Info]: App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > Proxy|Dokodemo: failed to transport response > io: read/write on closed pipe 2018/01/19 22:24:13 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:41730 2018/01/19 22:24:13 [Info]: App|Dispatcher: sniffed domain: android.googleapis.com 2018/01/19 22:24:13 [Info]: App|Router: looking for IP for domain: android.googleapis.com 2018/01/19 22:24:13 [Info]: App|Dispatcher: default route for tcp:android.googleapis.com:443 2018/01/19 22:24:13 [Info]: Transport|Internet|TCP: dialing TCP to tcp:111.111.111.111:8866 2018/01/19 22:24:14 [Info]: Proxy|VMess|Outbound: tunneling request to tcp:android.googleapis.com:443 via tcp:111.111.111.111:8866 2018/01/19 22:24:14 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:41732 2018/01/19 22:24:14 [Info]: App|Dispatcher: default route for tcp:172.217.160.74:443 2018/01/19 22:24:14 [Info]: Transport|Internet|TCP: dialing TCP to tcp:111.111.111.111:24732 2018/01/19 22:24:14 [Info]: Proxy|VMess|Outbound: tunneling request to tcp:172.217.160.74:443 via tcp:111.111.111.111:24732 2018/01/19 22:24:19 [Info]: App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > context canceled 2018/01/19 22:24:19 [Info]: App|Proxyman|Outbound: failed to process outbound traffic > Proxy|VMess|Outbound: connection ends > context canceled 2018/01/19 22:24:19 [Info]: App|Proxyman|Outbound: failed to process outbound traffic > Proxy|VMess|Outbound: connection ends > context canceled 2018/01/19 22:24:19 [Info]: App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > context canceled 2018/01/19 22:24:19 [Info]: Proxy|VMess|Encoding: failed to read response header > EOF 2018/01/19 22:24:19 [Info]: Proxy|VMess|Encoding: failed to read response header > EOF 2018/01/19 22:24:20 [Info]: App|Proxyman|Outbound: failed to process outbound traffic > Proxy|VMess|Outbound: connection ends > context canceled 2018/01/19 22:24:23 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:55918 2018/01/19 22:24:24 [Info]: App|Dispatcher: sniffed domain: minorshort.weixin.qq.com 2018/01/19 22:24:24 [Info]: App|Dispatcher: taking detour [direct] for [tcp:minorshort.weixin.qq.com:80] 2018/01/19 22:24:24 [Info]: Proxy|Freedom: opening connection to tcp:minorshort.weixin.qq.com:80 2018/01/19 22:24:24 [Info]: Transport|Internet|TCP: dialing TCP to tcp:minorshort.weixin.qq.com:80 2018/01/19 22:24:24 [Info]: App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > context canceled 2018/01/19 22:24:25 [Info]: App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled 2018/01/19 22:24:28 [Info]: App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > context canceled 2018/01/19 22:24:28 [Info]: App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > context canceled 2018/01/19 22:24:28 [Info]: App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled 2018/01/19 22:24:28 [Info]: App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled 2018/01/19 22:24:28 [Info]: App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > context canceled 2018/01/19 22:24:29 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:48256 2018/01/19 22:24:29 [Info]: App|Dispatcher: sniffed domain: www.google.com 2018/01/19 22:24:29 [Info]: App|Dispatcher: taking detour [proxy] for [tcp:www.google.com:443] 2018/01/19 22:24:29 [Info]: Transport|Internet|TCP: dialing TCP to tcp:111.111.111.111:26314 2018/01/19 22:24:29 [Info]: Transport|Internet|TCP: dialing TCP to tcp:111.111.111.111:20053 2018/01/19 22:24:29 [Info]: App|Proxyman|Outbound: failed to process outbound traffic > Proxy|VMess|Outbound: connection ends > context canceled 2018/01/19 22:24:29 [Info]: App|Proxyman|Outbound: failed to process outbound traffic > Proxy|VMess|Outbound: connection ends > context canceled 2018/01/19 22:24:29 [Info]: App|Proxyman|Outbound: failed to process outbound traffic > Proxy|VMess|Outbound: connection ends > context canceled 2018/01/19 22:24:29 [Info]: App|Proxyman|Outbound: failed to process outbound traffic > Proxy|VMess|Outbound: connection ends > context canceled 2018/01/19 22:24:29 [Info]: App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > context canceled 2018/01/19 22:24:29 [Info]: App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > context canceled 2018/01/19 22:24:29 [Info]: App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > context canceled 2018/01/19 22:24:29 [Info]: App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > context canceled 2018/01/19 22:24:29 [Info]: App|Proxyman|Outbound: failed to process outbound traffic > Proxy|VMess|Outbound: connection ends > context canceled 2018/01/19 22:24:29 [Info]: App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > context canceled 2018/01/19 22:24:29 [Info]: App|Proxyman|Outbound: failed to process outbound traffic > Proxy|VMess|Outbound: connection ends > context canceled 2018/01/19 22:24:29 [Info]: App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > context canceled 2018/01/19 22:24:29 [Info]: App|Proxyman|Outbound: failed to process outbound traffic > Proxy|VMess|Outbound: connection ends > context canceled 2018/01/19 22:24:29 [Info]: App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > context canceled 2018/01/19 22:24:29 [Info]: App|Proxyman|Outbound: failed to process outbound traffic > Proxy|VMess|Outbound: connection ends > context canceled 2018/01/19 22:24:29 [Info]: App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > context canceled 2018/01/19 22:24:29 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:33852 2018/01/19 22:24:29 [Info]: Transport|Internet|TCP: dialing TCP to tcp:111.111.111.111:25998 2018/01/19 22:24:30 [Info]: App|Dispatcher: sniffed domain: mqtt-mini.facebook.com 2018/01/19 22:24:30 [Info]: App|Router: looking for IP for domain: mqtt-mini.facebook.com 2018/01/19 22:24:30 [Info]: App|Dispatcher: default route for tcp:mqtt-mini.facebook.com:443 2018/01/19 22:24:30 [Info]: Transport|Internet|TCP: dialing TCP to tcp:111.111.111.111:20633 2018/01/19 22:24:30 [Info]: Transport|Internet|TCP: dialing TCP to tcp:111.111.111.111:20053 2018/01/19 22:24:30 [Info]: App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled 2018/01/19 22:24:30 [Info]: App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > context canceled 2018/01/19 22:24:30 [Info]: Transport|Internet|TCP: dialing TCP to tcp:111.111.111.111:8866 2018/01/19 22:24:30 [Info]: App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > context canceled 2018/01/19 22:24:30 [Info]: App|Proxyman|Outbound: failed to process outbound traffic > Proxy|VMess|Outbound: connection ends > context canceled 2018/01/19 22:24:30 [Info]: Transport|Internet|TCP: dialing TCP to tcp:111.111.111.111:24732 2018/01/19 22:24:31 [Info]: App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled 2018/01/19 22:24:31 [Info]: Transport|Internet|TCP: dialing TCP to tcp:111.111.111.111:26314 2018/01/19 22:24:31 [Info]: Transport|Internet|TCP: dialing TCP to tcp:111.111.111.111:20053 2018/01/19 22:24:32 [Info]: Transport|Internet|TCP: dialing TCP to tcp:111.111.111.111:25998 2018/01/19 22:24:32 [Warning]: App|Proxyman|Outbound: failed to process outbound traffic > Proxy|VMess|Outbound: failed to find an available destination > Retry: [dial tcp 111.111.111.111:26314: getsockopt: connection refused dial tcp 111.111.111.111:20053: getsockopt: connection refused dial tcp 111.111.111.111:25998: getsockopt: connection refused dial tcp 111.111.111.111:8866: getsockopt: connection refused dial tcp 111.111.111.111:20053: getsockopt: connection refused] > Retry: all retry attempts failed 2018/01/19 22:24:32 [Info]: App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > Proxy|Dokodemo: failed to transport response > io: read/write on closed pipe 2018/01/19 22:24:33 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.165:49441 2018/01/19 22:24:33 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.165:49440 2018/01/19 22:24:33 [Info]: App|Dispatcher: sniffed domain: client.wns.windows.com 2018/01/19 22:24:33 [Info]: App|Dispatcher: sniffed domain: client.wns.windows.com 2018/01/19 22:24:33 [Info]: App|Router: looking for IP for domain: client.wns.windows.com 2018/01/19 22:24:33 [Info]: App|Router: looking for IP for domain: client.wns.windows.com 2018/01/19 22:24:33 [Warning]: App|Proxyman|Outbound: failed to process outbound traffic > Proxy|VMess|Outbound: failed to find an available destination > Retry: [dial tcp 111.111.111.111:20633: getsockopt: connection refused dial tcp 111.111.111.111:20053: getsockopt: connection refused dial tcp 111.111.111.111:24732: getsockopt: connection refused dial tcp 111.111.111.111:26314: getsockopt: connection refused dial tcp 111.111.111.111:25998: getsockopt: connection refused] > Retry: all retry attempts failed 2018/01/19 22:24:33 [Info]: App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > Proxy|Dokodemo: failed to transport response > io: read/write on closed pipe 2018/01/19 22:24:33 [Debug]: Proxy|Dokodemo: processing connection from: 192.168.88.167:48260

p4insh11 commented 6 years ago

我遇到的问题与你类似,比如安卓在4G下用NG没问题,但是局域网开了透明代理以后,PC可以,安卓不行,打开play.google.com和软件都不行,目测遇到了QUIC的问题,chrome关闭了quic

5high commented 6 years ago

可是安卓手机上没法关闭quic吧?

2018年2月26日 08:55,"p4insh11" notifications@github.com写道:

我遇到的问题与你类似,比如安卓在4G下用NG没问题,但是局域网开了透明代理以后,PC可以,安卓不行,打开play.google.com和软件都不行, 目测遇到了QUIC的问题,chrome关闭了quic

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/v2ray/v2ray-core/issues/819#issuecomment-368362200, or mute the thread https://github.com/notifications/unsubscribe-auth/AYg0VkVdhGemho0zzEDwGaGaZ2IfTT9hks5tYgENgaJpZM4Rj3AE .

p4insh11 commented 6 years ago

尝试了一下,确实是quic的原因,我配置和你基本类似,全透明转发到vps上,安卓的网页chrome关闭quic以后正常,但是app里面还是不行,我比较好奇的是为什么4G模式用NG下可以正常,但是透明代理会失败,UDP肯定是能正常工作的

5high commented 6 years ago

NG会不会有相关QUIC转换的功能?

2018年2月26日 09:12,"p4insh11" notifications@github.com写道:

尝试了一下,确实是quic的原因,我配置和你基本类似,全透明转发到vps上,安卓的网页chrome关闭quic以后正常,但是app里面还是不行, 我比较好奇的是为什么4G模式用NG下可以正常,但是透明代理会失败,UDP肯定是能正常工作的

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/v2ray/v2ray-core/issues/819#issuecomment-368363727, or mute the thread https://github.com/notifications/unsubscribe-auth/AYg0Vnw2bzHXB3lXSjdW4sqGl_Ueg-t9ks5tYgTugaJpZM4Rj3AE .

5high commented 6 years ago

这个问题已经解决,解决办法如下: 客户端的inbound 里去注释部分: "inboundDetour": [ { "domainOverride":["tls","http"], "port":12345, "protocol":"dokodemo-door", "settings":{ "network": "tcp,udp", // 此行去掉即可全局开启QUIC "followRedirect": true } } ],

我猜测可能"network": "tcp,udp"这里的udp不包含QUIC,大家可以参考我的办法来实现QUIC透明代理。

p4insh11 commented 6 years ago

有意思,难道可以默认转发全局协议,quic只是在测试没写出来? 我回去也试试,另外我的设备是在升级以后才出现这个问题,之前同配置一直正常,难道这个位置出了bug,之前的版本忘记版本号了,不然就回退了

5high commented 6 years ago

我不懂代码,我猜也许是想做 DomainOverride加入QUIC支持,然后把QUIC独立出来了,希望可以从QUIC里嗅探域名,但是功能又没有做完所以造成了这个问题,不管怎样吧,你试试看我这个方法是否有效,如果有效在这个ISSUE上回复一下,然后我就关闭这个ISSUE了。

在 2018年2月27日 下午3:53,p4insh11 notifications@github.com写道:

有意思,难道可以默认转发全局协议,quic只是在测试没写出来? 我回去也试试,另外我的设备是在升级以后才出现这个问题,之前同配置一直正常,难道这个位置出了bug,之前的版本忘记版本号了,不然就回退了

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/v2ray/v2ray-core/issues/819#issuecomment-368777346, or mute the thread https://github.com/notifications/unsubscribe-auth/AYg0Vn84XGIBqRE_CbzuA8M9m-Lcvs0-ks5tY7RkgaJpZM4Rj3AE .

p4insh11 commented 6 years ago

感谢分享,删掉以后测试正常,quic工作正常

p4insh11 commented 6 years ago

@5high 该close了

wangmice commented 6 years ago

遇到同样的问题,应该写入文档里,不然根据教程配置还是会遇到

wangmice commented 6 years ago

这样做是不是不能代理udp流量了?看了下没监听udp端口