Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

使用v2ray的socks udp会出现cpu占用高的情况 #2427

Closed
zhj9709 opened this issue Apr 14, 2020 · 13 comments
Closed

使用v2ray的socks udp会出现cpu占用高的情况 #2427

zhj9709 opened this issue Apr 14, 2020 · 13 comments

Comments

@zhj9709
Copy link

zhj9709 commented Apr 14, 2020

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

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

  2. 你的使用场景是什么?比如使用 Chrome 通过 Socks/VMess 代理观看 YouTube 视频。
    已root的安卓手机,使用shell脚本执行iptables规则及运行v2ray,使用v2ray的socks+tun2socks配合处理udp请求

  3. 你看到的不正常的现象是什么?(请描述具体现象,比如访问超时,TLS 证书错误等)
    将tcp,udp用两个进程分别启动,udp的那个进程cpu占用会出现较高的情况(使用toybox top, busybox top查看)

  4. 你期待看到的正确表现是怎样的?
    cpu占用低

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

客户端配置:

tcp使用的config, config.json
{
  "inbounds": [
    {
      "tag": "redirect",
      "port": 1230,
      "protocol": "dokodemo-door",
      "settings": {
        "network": "tcp,udp",
        "followRedirect": true
      }
    }
  ],
  "outbounds": [
    {
      "tag": "proxy",
      "protocol": "vmess",
      "settings": {
        "vnext": [{
          "address": "2.2.2.2",
          "port": 1234,
          "users": [{
            "id": "",
            "alterId": 1,
            "security": "auto"
          }]
        }]
      },
      "streamSettings": {
        "tcpSettings": {
          "header": { 
            "type": "http",
            "request": {
              "version": "1.1",
              "method": "GET",
              "path": "/",
              "headers": {
                "Host": "www.bilibili.com"
              }
            }
          }
        }
      }
    }
  ]
}
udp使用的config, v2_udp.json
{
  "inbounds": [
    {
      "tag": "tun2socks",
      "port": 1231,
      "protocol": "socks",
      "settings": {
        "auth": "noauth",
        "udp": true
      }
    }
  ],
  "outbounds": [
    {
      "tag": "proxy",
      "protocol": "vmess",
      "settings": {
        "vnext": [{
          "address": "2.2.2.2",
          "port": 1234,
          "users": [{
            "id": "",
            "alterId": 1,
            "security": "auto"
          }]
        }]
      },
      "streamSettings": {
        "tcpSettings": {
          "header": { 
            "type": "http",
            "request": {
              "version": "1.1",
              "method": "GET",
              "path": "/",
              "headers": {
                "Host": "www.bilibili.com"
              }
            }
          }
        }
      }
    }
  ]
}
用到的iptables规则
v2tun_start(){
  [ ! -e "/dev/net/tun" ] && mkdir -p /dev/net && ln -s /dev/tun /dev/net/tun && echo 1 > /proc/sys/net/ipv4/ip_forward
  ip tuntap add mode tun v2tun &>/dev/null
  ip addr add 10.0.0.10/24 dev v2tun &>/dev/null
  ip link set v2tun up &>/dev/null
  # badvpn-tun2socks
  (tun2socks --tundev v2tun --netif-ipaddr 10.0.0.1 --netif-netmask 255.255.255.0 --socks-server-addr 127.0.0.1:1231 --enable-udprelay --loglevel 1 &>/dev/null &)
  # go-tun2socks
  # (go-tun2socks -tunGw 10.0.0.1 -proxyServer 127.0.0.1:1231 -tunName v2tun &>/dev/null &)
}

start_rules() {
  # nat OUTPUT
  iptables -t nat -A OUTPUT -m owner --uid-owner 0 -j ACCEPT
  iptables -t nat -A OUTPUT -o wlan+ -j ACCEPT
  iptables -t nat -A OUTPUT -o tun+ -j ACCEPT
  iptables -t nat -A OUTPUT -o lo -j ACCEPT
  iptables -t nat -A OUTPUT -d 192.168/16 -j ACCEPT
  iptables -t nat -A OUTPUT -p tcp -j REDIRECT --to-ports 1230
  iptables -t nat -A OUTPUT -p udp --dport 53 -j REDIRECT --to-ports 1240

  # nat PREROUTING
  iptables -t nat -A PREROUTING ! -s 192.168/16 -j ACCEPT
  iptables -t nat -A PREROUTING -d 192.168/16 -j ACCEPT
  iptables -t nat -A PREROUTING -p tcp -j REDIRECT --to-ports 1230
  iptables -t nat -A PREROUTING -p udp --dport 53 -j REDIRECT --to-ports 1240

  # mangle PREROUTING
  allow_ip="0/8,127/8,10/8,192.168/16,224/3,169.254/16,100.64/10,172.16/12"
  iptables -t mangle -A PREROUTING -d $allow_ip -j ACCEPT

  # mangle OUTPUT
  iptables -t mangle -A OUTPUT -m owner --uid-owner 0 -j ACCEPT
  iptables -t mangle -A OUTPUT -o wlan+ -j ACCEPT
  iptables -t mangle -A OUTPUT -o tun+ -j ACCEPT
  iptables -t mangle -A OUTPUT -o lo -j ACCEPT

  # tun2socks/TPROXY 选择
  if [ "$useTun" == '1' ]; then
    v2tun_start
    ip route replace default dev v2tun table 1234
    ip rule add fwmark 0x1234 lookup 1234
    iptables -t mangle -A PREROUTING -p udp ! --dport 53 -j MARK --set-mark 0x1234
    iptables -t mangle -A OUTPUT ! -d 192.168/16 -p udp ! --dport 53 -j MARK --set-mark 0x1234
    iptables -A FORWARD -i v2tun -j ACCEPT
    iptables -A FORWARD -o v2tun -j ACCEPT
  else
    ip route add local default dev lo table 1234
    ip rule add fwmark 0x1234 lookup 1234
    iptables -t mangle -A PREROUTING -p udp ! --dport 53 -j TPROXY --on-port 1230 --tproxy-mark 0x1234
    iptables -t mangle -A OUTPUT ! -d 192.168/16 -p udp ! --dport 53 -j MARK --set-mark 0x1234
  fi
}

使用了pdnsd,端口1240,没有使用v2ray内置的DNS
(使用了内置的DNS会出现一样的情况)

使用toybox top命令看到的情况:
image
config.json是上面的tcp配置,v2_udp.json是上面的udp配置
看到的udp的那个进程占用90%+,但上面一行有个300%,所以要除以3,跟busybox top查看的30%+是差不多的。有占用更高的情况,udp的进程cpu占用有达到过60-70%(busybox top),手机会有比较明显的卡顿情况,将数据关掉后,cpu占用降为0。

跟以下几种情况做了比较:
a. iptables规则不变,使用同样用go写的clash(arm,arm64)
b. iptables规则不变,udp部分使用dokodemo-door+TPROXY(上面规则中useTun != 1),配置只使用上面的config.json
c. 不使用mangle规则,不处理udp请求,nat OUTPUT/PREROUTING规则加上 -p udp -j REDIRECT --to-ports 65535
d. 使用内置DNS,tun2socks只处理 -p udp --dport 53 , 其他端口udp在nat表上 -p udp ! --dport 53 -j REDIRECT --to-ports 65535
e. iptables规则不变,使用redsocks2+TPROXY
f. 只代理udp,nat表中的 -p tcp -j REDIRECT --to-ports 1230 注释掉

使用v2ray+tun2socks和e,f两个情况,会出现cpu占用高的情况。a,b,c,d四种情况都不会出现。

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

服务器端错误日志:

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

客户端错误日志:
这是前几天使用内置DNS测试时的,CPU占用高时记录的部分日志文件(v2ray+tun2socks)
111.111.111.111:6666是服务器ip,我改了一下

v2ray_1.log
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [1062203690] v2ray.com/core/proxy/socks: send packet to udp:113.9.21.126:32215 with 65 bytes
2020/04/10 01:43:23 [Debug] [1062203690] v2ray.com/core/transport/internet/udp: dispatch request to: udp:113.9.21.126:32215
2020/04/10 01:43:23 [Debug] [1062203690] v2ray.com/core/proxy/socks: send packet to udp:113.9.21.126:32215 with 65 bytes
2020/04/10 01:43:23 [Debug] [1062203690] v2ray.com/core/transport/internet/udp: dispatch request to: udp:113.9.21.126:32215
2020/04/10 01:43:23 [Debug] [80450530] v2ray.com/core/proxy/socks: send packet to udp:220.202.201.186:42619 with 65 bytes
2020/04/10 01:43:23 [Debug] [80450530] v2ray.com/core/transport/internet/udp: dispatch request to: udp:220.202.201.186:42619
2020/04/10 01:43:23 [Debug] [80450530] v2ray.com/core/proxy/socks: send packet to udp:220.202.201.186:42619 with 65 bytes
2020/04/10 01:43:23 [Debug] [80450530] v2ray.com/core/transport/internet/udp: dispatch request to: udp:220.202.201.186:42619
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [1062203690] v2ray.com/core/proxy/socks: send packet to udp:113.9.21.126:32215 with 65 bytes
2020/04/10 01:43:23 [Debug] [1062203690] v2ray.com/core/transport/internet/udp: dispatch request to: udp:113.9.21.126:32215
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [80450530] v2ray.com/core/proxy/socks: send packet to udp:220.202.201.186:42619 with 65 bytes
2020/04/10 01:43:23 [Debug] [80450530] v2ray.com/core/transport/internet/udp: dispatch request to: udp:220.202.201.186:42619
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [347240274] v2ray.com/core/proxy/socks: writing back UDP response with 1284 bytes
2020/04/10 01:43:23 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 665 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 665 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [2450682398] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [80450530] v2ray.com/core/proxy/socks: send packet to udp:220.202.201.186:42619 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [80450530] v2ray.com/core/transport/internet/udp: dispatch request to: udp:220.202.201.186:42619
2020/04/10 01:43:23 [Debug] [80450530] v2ray.com/core/proxy/socks: send packet to udp:220.202.201.186:42619 with 65 bytes
2020/04/10 01:43:23 [Debug] [80450530] v2ray.com/core/transport/internet/udp: dispatch request to: udp:220.202.201.186:42619
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [80450530] v2ray.com/core/proxy/socks: send packet to udp:220.202.201.186:42619 with 65 bytes
2020/04/10 01:43:23 [Debug] [80450530] v2ray.com/core/transport/internet/udp: dispatch request to: udp:220.202.201.186:42619
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [347240274] v2ray.com/core/proxy/socks: send packet to udp:113.133.154.223:17302 with 627 bytes
2020/04/10 01:43:23 [Debug] [347240274] v2ray.com/core/transport/internet/udp: dispatch request to: udp:113.133.154.223:17302
2020/04/10 01:43:23 [Debug] [1084612913] v2ray.com/core/proxy/socks: send packet to udp:183.93.121.189:21492 with 100 bytes
2020/04/10 01:43:23 [Debug] [1084612913] v2ray.com/core/transport/internet/udp: dispatch request to: udp:183.93.121.189:21492
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 665 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 665 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [1887989394] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [635153507] v2ray.com/core/proxy/socks: send packet to udp:27.8.156.141:55252 with 100 bytes
2020/04/10 01:43:23 [Debug] [635153507] v2ray.com/core/transport/internet/udp: dispatch request to: udp:27.8.156.141:55252
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 100 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [2629556371] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 665 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 665 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: send packet to udp:112.123.24.147:48098 with 65 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/transport/internet/udp: dispatch request to: udp:112.123.24.147:48098
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 665 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
2020/04/10 01:43:23 [Debug] [3602991243] v2ray.com/core/proxy/socks: writing back UDP response with 1237 bytes
v2ray_2.log
2020/04/10 01:43:50 [Info] [3992171879] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:apd-livep2preport.teg.tencent-cloud.net:80 via tcp:111.111.111.111:6666
2020/04/10 01:43:50 [Info] [3465362966] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:apd-livep2preport.teg.tencent-cloud.net:80 via tcp:111.111.111.111:6666
2020/04/10 01:43:50 [Debug] [347240274] v2ray.com/core/proxy/socks: writing back UDP response with 16 bytes
2020/04/10 01:43:50 [Debug] [4079681558] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:50 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:50 [Debug] [4079681558] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:50 [Debug] [1717969946] v2ray.com/core/proxy/socks: send packet to udp:220.194.107.62:50851 with 28 bytes
2020/04/10 01:43:50 [Debug] [1717969946] v2ray.com/core/transport/internet/udp: dispatch request to: udp:220.194.107.62:50851
2020/04/10 01:43:50 [Debug] [4079681558] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:50 [Debug] [1717969946] v2ray.com/core/proxy/socks: writing back UDP response with 43 bytes
2020/04/10 01:43:50 [Warning] [220897172] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > v2ray.com/core/proxy/vmess/outbound: failed to read header > v2ray.com/core/proxy/vmess/encoding: failed to read response header > EOF
2020/04/10 01:43:50 [Info] [220897172] v2ray.com/core/transport/internet/udp: failed to handle UDP input > io: read/write on closed pipe
2020/04/10 01:43:50 [Debug] [4079681558] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:50 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:50 [Debug] [4079681558] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:50 [Debug] [4079681558] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:50 [Debug] [4079681558] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:50 [Debug] [4079681558] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:51 [Debug] [4079681558] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:51 [Debug] [1499276738] v2ray.com/core/proxy/dokodemo: processing connection from: 192.168.43.229:56643
2020/04/10 01:43:51 [Info] [1499276738] v2ray.com/core/app/dispatcher: sniffed domain: 140.207.234.25
2020/04/10 01:43:51 [Info] [1499276738] v2ray.com/core/app/dispatcher: default route for tcp:140.207.234.25:80
2020/04/10 01:43:51 [Info] [1499276738] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:111.111.111.111:6666
2020/04/10 01:43:51 [Debug] [682779188] v2ray.com/core/proxy/dokodemo: processing connection from: 192.168.43.229:56644
2020/04/10 01:43:51 [Info] [682779188] v2ray.com/core/app/dispatcher: sniffed domain: 140.207.234.25
2020/04/10 01:43:51 [Info] [682779188] v2ray.com/core/app/dispatcher: default route for tcp:140.207.234.25:80
2020/04/10 01:43:51 [Info] [682779188] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:111.111.111.111:6666
2020/04/10 01:43:51 [Info] [1499276738] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:140.207.234.25:80 via tcp:111.111.111.111:6666
2020/04/10 01:43:51 [Info] [682779188] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:140.207.234.25:80 via tcp:111.111.111.111:6666
2020/04/10 01:43:51 [Debug] [503284578] v2ray.com/core/proxy/socks: writing back UDP response with 16 bytes
2020/04/10 01:43:51 [Debug] [503284578] v2ray.com/core/proxy/socks: writing back UDP response with 20 bytes
2020/04/10 01:43:51 [Debug] [4079681558] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:51 [Debug] [4079681558] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:51 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:51 [Debug] [4079681558] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:51 [Debug] [247792140] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:51 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:51 [Debug] [4079681558] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:51 [Debug] [503284578] v2ray.com/core/proxy/socks: writing back UDP response with 16 bytes
2020/04/10 01:43:51 [Debug] [503284578] v2ray.com/core/proxy/socks: writing back UDP response with 20 bytes
2020/04/10 01:43:51 [Info] [3799785638] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled
2020/04/10 01:43:51 [Info] [3799785638] v2ray.com/core/transport/internet/udp: failed to handle UDP input > io: read/write on closed pipe
2020/04/10 01:43:51 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:51 [Debug] [247792140] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:51 [Debug] [3762968278] v2ray.com/core/proxy/dokodemo: processing connection from: 10.150.46.184:58238
2020/04/10 01:43:51 [Info] [3762968278] v2ray.com/core/app/dispatcher: sniffed domain: get.sogou.com
2020/04/10 01:43:51 [Info] [3762968278] v2ray.com/core/app/dispatcher: default route for tcp:get.sogou.com:80
2020/04/10 01:43:51 [Info] [3762968278] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:111.111.111.111:6666
2020/04/10 01:43:51 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:51 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:51 [Debug] [4079681558] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:51 [Info] [3762968278] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:get.sogou.com:80 via tcp:111.111.111.111:6666
2020/04/10 01:43:51 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:51 [Debug] [247792140] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:51 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:51 [Debug] [503284578] v2ray.com/core/proxy/socks: writing back UDP response with 16 bytes
2020/04/10 01:43:51 [Debug] [4079681558] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:51 [Debug] [503284578] v2ray.com/core/proxy/socks: writing back UDP response with 20 bytes
2020/04/10 01:43:51 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:51 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:51 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:51 [Debug] [4079681558] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:51 [Debug] [247792140] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:51 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:51 [Debug] [503284578] v2ray.com/core/proxy/socks: writing back UDP response with 16 bytes
2020/04/10 01:43:51 [Debug] [503284578] v2ray.com/core/proxy/socks: writing back UDP response with 20 bytes
2020/04/10 01:43:51 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:51 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:51 [Debug] [4079681558] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:51 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:51 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:51 [Debug] [4079681558] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:51 [Debug] [247792140] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Info] [3739478915] v2ray.com/core/proxy/socks: client UDP connection from udp:127.0.0.1:46510
2020/04/10 01:43:52 [Debug] [3739478915] v2ray.com/core/proxy/socks: send packet to udp:163.177.89.194:8000 with 146 bytes
2020/04/10 01:43:52 [Debug] [3739478915] v2ray.com/core/transport/internet/udp: dispatch request to: udp:163.177.89.194:8000
2020/04/10 01:43:52 [Info] v2ray.com/core/transport/internet/udp: establishing new connection for udp:163.177.89.194:8000
2020/04/10 01:43:52 udp:127.0.0.1:46510 accepted udp:163.177.89.194:8000 [proxy] 
2020/04/10 01:43:52 [Info] [3739478915] v2ray.com/core/app/dispatcher: default route for udp:163.177.89.194:8000
2020/04/10 01:43:52 [Info] [3739478915] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:111.111.111.111:6666
2020/04/10 01:43:52 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Info] [3739478915] v2ray.com/core/proxy/vmess/outbound: tunneling request to udp:163.177.89.194:8000 via tcp:111.111.111.111:6666
2020/04/10 01:43:52 [Debug] [4079681558] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Info] [969433225] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled
2020/04/10 01:43:52 [Info] [969433225] v2ray.com/core/transport/internet/udp: failed to handle UDP input > io: read/write on closed pipe
2020/04/10 01:43:52 [Debug] [247792140] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [4079681558] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [2797211658] v2ray.com/core/proxy/dokodemo: processing connection from: 10.150.46.184:60720
2020/04/10 01:43:52 [Info] [2797211658] v2ray.com/core/app/dispatcher: sniffed domain: get.sogou.com
2020/04/10 01:43:52 [Info] [2797211658] v2ray.com/core/app/dispatcher: default route for tcp:get.sogou.com:80
2020/04/10 01:43:52 [Info] [2797211658] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:111.111.111.111:6666
2020/04/10 01:43:52 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [4079681558] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Info] [2797211658] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:get.sogou.com:80 via tcp:111.111.111.111:6666
2020/04/10 01:43:52 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [4079681558] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [4079681558] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [4079681558] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [4079681558] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [4079681558] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:52 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Debug] [3739478915] v2ray.com/core/proxy/socks: send packet to udp:163.177.89.194:8000 with 146 bytes
2020/04/10 01:43:53 [Debug] [3739478915] v2ray.com/core/transport/internet/udp: dispatch request to: udp:163.177.89.194:8000
2020/04/10 01:43:53 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Info] [1936786116] v2ray.com/core/proxy/socks: client UDP connection from udp:127.0.0.1:47868
2020/04/10 01:43:53 [Debug] [1936786116] v2ray.com/core/proxy/socks: send packet to udp:61.132.163.68:53 with 33 bytes
2020/04/10 01:43:53 udp:127.0.0.1:47868 accepted udp:61.132.163.68:53 [dns-out] 
2020/04/10 01:43:53 [Debug] [1936786116] v2ray.com/core/transport/internet/udp: dispatch request to: udp:61.132.163.68:53
2020/04/10 01:43:53 [Info] v2ray.com/core/transport/internet/udp: establishing new connection for udp:61.132.163.68:53
2020/04/10 01:43:53 [Info] [1936786116] v2ray.com/core/app/dispatcher: taking detour [dns-out] for [udp:61.132.163.68:53]
2020/04/10 01:43:53 [Info] [1936786116] v2ray.com/core/proxy/dns: handling DNS traffic to udp:61.132.163.68:53
2020/04/10 01:43:53 [Debug] v2ray.com/core/app/dns: UDP:223.5.5.5:53 querying DNS for: aider.meizu.com.
2020/04/10 01:43:53 [Debug] v2ray.com/core/transport/internet/udp: dispatch request to: udp:223.5.5.5:53
2020/04/10 01:43:53 [Info] v2ray.com/core/transport/internet/udp: establishing new connection for udp:223.5.5.5:53
2020/04/10 01:43:53 [Info] v2ray.com/core/app/dispatcher: default route for udp:223.5.5.5:53
2020/04/10 01:43:53 [Info] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:111.111.111.111:6666
2020/04/10 01:43:53 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to udp:223.5.5.5:53 via tcp:111.111.111.111:6666
2020/04/10 01:43:53 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Info] v2ray.com/core/app/dns: UDP:223.5.5.5:53 got answere: aider.meizu.com. TypeA -> [218.98.23.67] 117.86923ms
2020/04/10 01:43:53 [Debug] v2ray.com/core/app/dns: UDP:223.5.5.5:53 updating IP records for domain:aider.meizu.com.
2020/04/10 01:43:53 [Debug] [1936786116] v2ray.com/core/proxy/socks: writing back UDP response with 49 bytes
2020/04/10 01:43:53 [Debug] [85380730] v2ray.com/core/proxy/dokodemo: processing connection from: 10.150.46.184:33803
2020/04/10 01:43:53 [Info] [85380730] v2ray.com/core/app/dispatcher: sniffed domain: aider.meizu.com
2020/04/10 01:43:53 [Info] [85380730] v2ray.com/core/app/dispatcher: default route for tcp:aider.meizu.com:80
2020/04/10 01:43:53 [Info] [85380730] v2ray.com/core/transport/internet/tcp: dialing TCP to tcp:111.111.111.111:6666
2020/04/10 01:43:53 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Info] [85380730] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:aider.meizu.com:80 via tcp:111.111.111.111:6666
2020/04/10 01:43:53 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Debug] [1717969946] v2ray.com/core/proxy/socks: send packet to udp:220.194.107.62:50851 with 28 bytes
2020/04/10 01:43:53 [Debug] [1717969946] v2ray.com/core/transport/internet/udp: dispatch request to: udp:220.194.107.62:50851
2020/04/10 01:43:53 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Debug] [503284578] v2ray.com/core/proxy/socks: writing back UDP response with 16 bytes
2020/04/10 01:43:53 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Debug] [503284578] v2ray.com/core/proxy/socks: writing back UDP response with 20 bytes
2020/04/10 01:43:53 [Debug] [1717969946] v2ray.com/core/proxy/socks: writing back UDP response with 43 bytes
2020/04/10 01:43:53 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Debug] [503284578] v2ray.com/core/proxy/socks: writing back UDP response with 16 bytes
2020/04/10 01:43:53 [Debug] [503284578] v2ray.com/core/proxy/socks: writing back UDP response with 20 bytes
2020/04/10 01:43:53 [Info] [3602991243] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled
2020/04/10 01:43:53 [Info] [3602991243] v2ray.com/core/transport/internet/udp: failed to handle UDP input > io: read/write on closed pipe
2020/04/10 01:43:53 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Info] [1062203690] v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled
2020/04/10 01:43:53 [Info] [1062203690] v2ray.com/core/transport/internet/udp: failed to handle UDP input > io: read/write on closed pipe
2020/04/10 01:43:53 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Debug] [503284578] v2ray.com/core/proxy/socks: writing back UDP response with 16 bytes
2020/04/10 01:43:53 [Debug] [503284578] v2ray.com/core/proxy/socks: writing back UDP response with 20 bytes
2020/04/10 01:43:53 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:53 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:54 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:54 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:54 [Debug] [3592190128] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:54 [Debug] [80450530] v2ray.com/core/proxy/socks: writing back UDP response with 96 bytes
2020/04/10 01:43:54 [Debug] v2ray.com/core/app/log: Logger closing
  1. 请附上访问日志。在 Linux 中,日志通常在 /var/log/v2ray/access.log 文件中。
    // 在这里附上服务器端日志
  1. 其它相关的配置文件(如 Nginx)和相关日志。

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

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

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

通常的命令为 journalctl -u v2ray

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

@zhj9709
Copy link
Author

zhj9709 commented Apr 14, 2020

image
这一串数代表什么

@Cwek
Copy link

Cwek commented Apr 14, 2020

image
这一串数代表什么

应该是对应一次请求的访问会话id?

@FH0
Copy link
Contributor

FH0 commented Apr 14, 2020

我也出现了这样的情况,开始以为是tun2socks的问题,换成redsocks之后依然没有解决,应该是socksudp出问题了

@zhj9709
Copy link
Author

zhj9709 commented Apr 14, 2020

image
这一串数代表什么

应该是对应一次请求的访问会话id?

所以是不是有点不正常?

@zhj9709
Copy link
Author

zhj9709 commented Apr 14, 2020

在v2rayNG上存在一样的问题,下图是使用termux的iperf3测试udp时通过top命令看的,在udp流量负载特别小的情况下(只有几十K/s),cpu占用很高(手机处理器:骁龙660)
toybox top
image

busybox top
image

@nicholascw
Copy link
Contributor

nicholascw commented Apr 15, 2020

可以撇开 iptables 单独对 v2ray 发包或者抓包看看有没有打环的情况先?

@zhj9709
Copy link
Author

zhj9709 commented Apr 15, 2020

可以撇开 iptables 单独对 v2ray 发包或者抓包看看有没有打环的情况先?

怎么操作?

@zhj9709 zhj9709 changed the title 安卓手机(root)上使用v2ray的socks udp会出现cpu占用高的情况 使用v2ray的socks udp会出现cpu占用高的情况 Apr 15, 2020
@zhj9709
Copy link
Author

zhj9709 commented Apr 15, 2020

在linux上测试了一下,有相同的问题

@nicholascw
Copy link
Contributor

nicholascw commented Apr 16, 2020

Kinda confirmed with custom SOCKS5 UDP tester. Under similar IO performance, the process resource info shown below.

test results
  PID USER      PR  NI    VIRT    RES    SHR S  %CPU %MEM     TIME+ COMMAND
# generated with top -b -p $(pgrep clash) | grep $(pgrep clash)
10347 root      20   0  803408   9444   3356 S 173.3  0.5   2:29.62 clash-linux-arm
10347 root      20   0  803408   9600   3356 S 167.1  0.5   2:34.65 clash-linux-arm
10347 root      20   0  803408  10152   3356 S 167.3  0.5   2:39.67 clash-linux-arm
10347 root      20   0  803408   9640   3356 S 167.3  0.5   2:44.69 clash-linux-arm
10347 root      20   0  803408   9688   3356 S 167.0  0.5   2:49.70 clash-linux-arm
10347 root      20   0  803408   9836   3368 S 166.7  0.5   2:54.70 clash-linux-arm
10347 root      20   0  803408  10016   3372 S 166.8  0.5   2:59.72 clash-linux-arm
10347 root      20   0  803408   9764   3376 S 168.0  0.5   3:04.76 clash-linux-arm
10347 root      20   0  803408   9868   3376 S 168.3  0.5   3:09.81 clash-linux-arm
10347 root      20   0  803408  10028   3376 S 167.1  0.5   3:14.84 clash-linux-arm
10347 root      20   0  803408   9220   3376 S 151.7  0.5   3:19.39 clash-linux-arm
10347 root      20   0  803408  10132   3376 S 143.0  0.5   3:23.68 clash-linux-arm
10347 root      20   0  803408  10204   3376 S 157.1  0.5   3:28.41 clash-linux-arm
10347 root      20   0  803408   8420   3376 S  62.8  0.5   3:30.30 clash-linux-arm
10347 root      20   0  803408   8420   3376 S   0.0  0.5   3:30.30 clash-linux-arm

# generated with top -b -p $(pgrep v2ray) | grep $(pgrep v2ray)
10390 root      20   0  119496  10424   5416 R 173.3  0.6   0:02.29 v2ray
10390 root      20   0  119496  11308   5472 S 227.3  0.6   0:09.11 v2ray
10390 root      20   0  119496  12108   5500 S 261.8  0.7   0:16.99 v2ray
10390 root      20   0  119496  13028   5516 R 258.7  0.7   0:24.75 v2ray
10390 root      20   0  119496  13720   5520 S 252.0  0.7   0:32.31 v2ray
10390 root      20   0  119496  14384   5540 S 247.5  0.8   0:39.76 v2ray
10390 root      20   0  119496  14596   5564 S 238.7  0.8   0:46.92 v2ray
10390 root      20   0  119496  16036   5564 R 249.0  0.9   0:54.39 v2ray
10390 root      20   0  119496  16012   5568 S 238.2  0.9   1:01.56 v2ray
10390 root      20   0  119496  15996   5568 R 249.0  0.9   1:09.03 v2ray
10390 root      20   0  119496  17416   5572 S 248.2  0.9   1:16.50 v2ray
10390 root      20   0  119496  17140   5572 S 245.7  0.9   1:23.87 v2ray
10390 root      20   0  119496  17224   5572 S 246.7  0.9   1:31.27 v2ray
10390 root      20   0  119496  18124   5584 R 237.5  1.0   1:38.42 v2ray
10390 root      20   0  119496  18624   5584 S 248.3  1.0   1:45.87 v2ray
10390 root      20   0  119496  18160   5596 R 244.2  1.0   1:53.22 v2ray
10390 root      20   0  119496  18176   5596 S 251.3  1.0   2:00.76 v2ray
10390 root      20   0  119496  16532   5596 S 240.7  0.9   2:07.98 v2ray
10390 root      20   0  119496  16844   5596 S  56.3  0.9   2:09.67 v2ray
10390 root      20   0  119496  17136   5600 R 171.4  0.9   2:14.83 v2ray

Test Environment:

  • v2ray-core 4.23.1 on a AMD64 machine (10.0.0.184) with a VMess(:12345) Inbound and a Freedom Outbound:

    config
    {
      "log":{
        "loglevel": "debug"
      },
      "inbounds": [{
        "port": 12345,
        "protocol": "vmess",
        "settings": {
          "clients": [
            {
              "id": "772dde84-0235-4004-8967-b771e02c8feb",
              "level": 1,
              "alterId": 64
            }
          ]
        }
      }],
      "outbounds": [{
        "protocol": "freedom",
        "settings": {}
      }]
    }
  • v2ray-core/clash on a Nexus 5X (10.0.0.224) with Android 8.1 and Gentoo Prefix, and stopped android processes, with a SOCKS5(:1080) Inbound and a VMess Outbound:

    v2ray-core config
    {
      "log": {
        "loglevel": "debug"
      },
      "inbounds": [{
        "port": 1080,
        "listen": "0.0.0.0",
        "protocol": "socks",
        "settings": {
          "auth": "noauth",
          "udp": true,
          "ip": "10.0.0.224"
        }
      }],
      "outbounds": [{
        "protocol": "vmess",
        "settings": {
          "vnext": [
            {
              "address": "10.0.0.184",
              "port": 12345,
              "users": [
                {
                  "id": "772dde84-0235-4004-8967-b771e02c8feb",
                  "alterId": 4,
                  "security": "auto",
                  "level": 0
                }
              ]
            }
          ]
        }
      }],
      "policy": {
        "levels": {
          "0": {"uplinkOnly": 0}
        }
      }
    }
    clash config
    socks-port: 1080
    allow-lan: true
    log-level: debug
    proxies:
        - name: "vmess"
          type: vmess
          server: 10.0.0.184
          port: 12345
          uuid: 772dde84-0235-4004-8967-b771e02c8feb
          alterId: 4
          cipher: auto
    
    rules:
        - FINAL, vmess
  • SOCKS5 UDP tester mentioned previously, running on the AMD64 machine (10.0.0.184), with ./s5udptester 10.0.0.224:1080, which will after successfully associate with an SOCKS5 server will automatically send a 128 bytes packet (Including the SOCKS5 required header) into SOCKS5 Server's provided relay port, which theoretically would cause SOCKS5 Server forward the packet to a dummy server also running on the same server which will be described below, so does each time it receives an response packet.

  • A dummy netcat (The GNU Netcat) 0.7.1 is set on the AMD64 machine, listening on UDP port 2333, and spitting out maximum possible rubbish once the first packet arrives, with command cat /dev/urandom | nc -u -l -p 2333

图片

@xqzr
Copy link

xqzr commented Apr 18, 2020

因为这个问题 我无法使用/2Ray搭建游戏加速器 只能改用$$

@FH0
Copy link
Contributor

FH0 commented Apr 19, 2020

因为这个问题 我无法使用/2Ray搭建游戏加速器 只能改用$$

tproxy 的 udp 没问题

@zhj9709
Copy link
Author

zhj9709 commented Jun 19, 2020

v2fly发布的最新的v4.25.0试了一下,cpu占用好点了,我手机上测试,以前占用能到90%,现在最高30%左右,但还是有点高,用iperf3测试udp,网速也就一百多k,30%的cpu占用还是高了点吧,dokodemo-door的tcp,网速10M+占用也就20%左右

@github-actions
Copy link

github-actions bot commented Nov 7, 2020

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

5 participants