V2rayU icon indicating copy to clipboard operation
V2rayU copied to clipboard

MacOS15.2无法使用kcp连接server

Open anstarword opened this issue 11 months ago • 2 comments

提交 Issue 之前请先在issue上搜索是否有相似问题, 看看能不能解决问题 (有太多相同的issue,没精力处理)。 除非特殊情况,请完整填写以下所有问题,不按模板发的 issue 将直接被关闭。

  1. 你正在使用的 V2RayU 和 Mac 版本 ? V2rayU4.2.5 MacOS15.2 M4 pro

  2. 你遇到的问题是什么?(请描述具体现象,比如访问超时,TLS 证书错误等) 我的v2ray server用的协议是mKCP+dtls 使用v2rayU配置后,无法连接服务器,显示 -1ms 如果把我的服务器改为ws,且v2rayU使用ws连接,则可以联通

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

    // 在这里附上配置信息
{
  "log": {
    "access": "~/.V2rayU/v2ray-core.log",
    "loglevel": "info",
    "error": "~/.V2rayU/v2ray-core.log"
  },
  "inbounds": [
    {
      "port": "10808",
      "settings": {
        "udp": true,
        "auth": "noauth"
      },
      "protocol": "socks",
      "listen": "127.0.0.1",
      "sniffing": {
        "enabled": true,
        "destOverride": [
          "tls",
          "http"
        ]
      }
    },
    {
      "protocol": "http",
      "settings": {
        "timeout": 360
      },
      "listen": "127.0.0.1",
      "sniffing": {
        "enabled": true,
        "destOverride": [
          "tls",
          "http"
        ]
      },
      "port": "10809"
    }
  ],
  "outbounds": [
    {
      "tag": "proxy",
      "settings": {
        "vnext": [
          {
            "address": "xxxxxxxx",
            "port": xxxxx,
            "users": [
              {
                "security": "auto",
                "level": 1,
                "alterId": 0,
                "id": "xxxxxxx"
              }
            ]
          }
        ]
      },
      "protocol": "vmess",
      "mux": {
        "concurrency": 8,
        "enabled": false
      },
      "streamSettings": {
        "security": "none",
        "network": "kcp",
        "kcpSettings": {
          "header": {
            "type": "dtls"
          },
          "uplinkCapacity": 12,
          "mtu": 1350,
          "readBufferSize": 1,
          "tti": 50,
          "downlinkCapacity": 100,
          "writeBufferSize": 1,
          "seed": "",
          "congestion": false
        }
      }
    },
    {
      "tag": "direct",
      "settings": {
        "userLevel": 0,
        "domainStrategy": "UseIP"
      },
      "protocol": "freedom"
    },
    {
      "protocol": "blackhole",
      "tag": "block",
      "settings": {
        "response": {
          "type": "none"
        }
      }
    }
  ],
  "dns": {},
  "routing": {
    "balancers": [],
    "domainStrategy": "AsIs",
    "rules": [
      {
        "outboundTag": "direct",
        "ip": [
          "geoip:cn",
          "geoip:private"
        ],
        "type": "field"
      },
      {
        "type": "field",
        "outboundTag": "direct",
        "domain": [
          "geosite:cn",
          "localhost"
        ]
      }
    ]
  }
}
  1. 请附上出错时软件输出的错误日志。 未见明显错误,可以接收到本地代理的网络请求,但收不到服务器的响应
    // 在这里附上日志信息

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

anstarword avatar Jan 12 '25 17:01 anstarword

同样的情况,退回到4.2.2版本正常了

Yuuuu9658 avatar Apr 09 '25 05:04 Yuuuu9658

同样的情况,退回到4.2.2版本正常了

多谢!解决了! 看来新版本问题不少啊,作者也不更新了:(

anstarword avatar Apr 20 '25 15:04 anstarword