eycorsican / kitsunebi-android

A fully-featured V2Ray client for Android.
MIT License
1.76k stars 315 forks source link

timeout #129

Closed Wudelin closed 4 years ago

Wudelin commented 4 years ago

你正在使用哪个版本?

最新版

使用最新版本是否还遇到同样的问题?

你的手机型号和手机操作系统版本是多少?

华为荣耀v10 android10

你遇到了什么问题?

timeout

你遇到的问题可以用固定步骤重现吗?

可以

  1. 手动添加shadowsocket节点
  2. 点击连接
  3. timeout

你正使用的配置


<!-- 请把你的配置文件复制至此 (建议把服务器和用户信息去掉) -->
服务端
{
"log": {
    "loglevel": "warning",
    "access": "/var/log/v2ray/access.log", // 这是 Linux 的路径
    "error": "/var/log/v2ray/error.log"
  },
  "inbounds": [
    {
      "port": 1024, // 监听端口
      "protocol": "shadowsocks",
      "settings": {
        "method": "aes-256-gcm",
        "ota": true, // 是否开启 OTA
        "password": "xxx"
      }
    }
  ],
  "outbounds": [
    {
      "protocol": "freedom",  
      "settings": {}
    }
  ]
}

客户端:
{
    "dns":{
        "servers":[
            "1.1.1.1"
        ]
    },
    "inbounds":[
        {
            "listen":"127.0.0.1",
            "port":10808,
            "protocol":"socks",
            "settings":{
                "auth":"noauth",
                "udp":true,
                "userLevel":8
            },
            "sniffing":{
                "destOverride":[
                    "http",
                    "tls"
                ],
                "enabled":false
            },
            "tag":"socks"
        },
        {
            "listen":"127.0.0.1",
            "port":10809,
            "protocol":"http",
            "settings":{
                "userLevel":8
            },
            "tag":"http"
        }
    ],
    "log":{
        "loglevel":"warning"
    },
    "outbounds":[
        {
            "mux":{
                "enabled":false
            },
            "protocol":"shadowsocks",
            "settings":{
                "servers":[
                    {
                        "address":"xxxxxx",
                        "level":8,
                        "method":"aes-256-gcm",
                        "ota":false,
                        "password":"xxxx",
                        "port":1024
                    }
                ]
            },
            "streamSettings":{
                "network":"tcp"
            },
            "tag":"proxy"
        },
        {
            "protocol":"freedom",
            "settings":{

            },
            "tag":"direct"
        },
        {
            "protocol":"blackhole",
            "settings":{
                "response":{
                    "type":"http"
                }
            },
            "tag":"block"
        }
    ],
    "policy":{
        "levels":{
            "8":{
                "connIdle":300,
                "downlinkOnly":1,
                "handshake":4,
                "uplinkOnly":1
            }
        },
        "system":{
            "statsInboundUplink":true,
            "statsInboundDownlink":true
        }
    },
    "routing":{
        "domainStrategy":"IPIfNonMatch",
        "rules":[
            {
                "ip":[
                    "geoip:private"
                ],
                "outboundTag":"direct",
                "type":"field"
            }
        ]
    },
    "stats":{

    }
}