嘟嘟社区

[已解决] ubuntu升级以后,V2就不能用了


本帖最后由 edear 于 2022-1-21 12:16 编辑

今天把UBUNTU小鸡升级了,但是客户端提示这个错误:

[Warning] [2395334202] app/proxyman/outbound: failed to process outbound traffic > proxy/vmess/outbound: connection ends > proxy/vmess/outbound: failed to read header > proxy/vmess/encoding: failed to read response header > websocket: close 1000 (normal)

解决办法参考5楼大神的答复

服务器端配置:

  1. cat  /usr/local/etc/“v-2-r-a-y”/config.json
  2. {
  3.   "inbounds": [
  4.     {
  5.       "listen": "*.*.*.*",
  6.       "port": xxx,
  7.       "protocol": "vmess",
  8.       "settings": {
  9.         "clients": [
  10.           {
  11.             "id": "b831381d-6324-4d53-ad4f-8cda48b3xxxxx",
  12.             "alterId": 64
  13.           }
  14.         ]
  15.       },
  16.       "streamSettings": {
  17.         "network":"ws"
  18.       }
  19.     }
  20.   ],
  21.   "outbounds": [
  22.     {
  23.       "protocol": "freedom",
  24.       "settings": {}
  25.     }
  26.   ]
  27. }

复制代码

alterId 改为0
v2设置问题
"alterId": 64
v2用旧版本也可以

搞定了,谢谢!