V2rayU icon indicating copy to clipboard operation
V2rayU copied to clipboard

更新到 3.5-3.7 都无法访问目标网站

Open inhere opened this issue 2 years ago • 6 comments

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

  1. 你正在使用的 V2RayU 和 Mac 版本 ?
  • Mac: 10.15.7
  • 3.5-3.7 都安装试过,都是一样的问题。
  1. 你遇到的问题是什么?(请描述具体现象,比如访问超时,TLS 证书错误等)

打不开网页。

之前是较低的版本,但是可以使用。mac最近一直提示恶意软件,因此升级了 V2RayU。

无法访问此网站 abc.. 意外终止了连接。
请试试以下办法:

  检查网络连接
  检查代理服务器和防火墙
ERR_CONNECTION_CLOSED
  1. 请附上你的配置(提交 Issue 前请隐藏服务器端IP地址)。
    // 在这里附上配置信息
  1. 请附上出错时软件输出的错误日志。
2023/07/14 11:40:53 [Info] [395538590] app/proxyman/outbound: failed to process outbound traffic > proxy/shadowsocks: connection ends > proxy/shadowsocks: failed to read IV > read tcp 172.20.1.107:51764->183.232.159.19:12001: read: connection reset by peer
2023/07/14 11:40:53 [Info] [395538590] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe

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

inhere avatar Jul 14 '23 04:07 inhere

🥲 回退到 3.3.0,处理了下恶意软件签名,可以使用了。

inhere avatar Jul 14 '23 07:07 inhere

可以发一下3.3和3.7配置看下两个版本差别吗?方便定位问题

获取 Outlook for iOShttps://aka.ms/o0ukef


发件人: Inhere @.> 发送时间: Friday, July 14, 2023 3:26:58 PM 收件人: yanue/V2rayU @.> 抄送: Subscribed @.***> 主题: Re: [yanue/V2rayU] 更新到 3.5-3.7 都无法访问目标网站 (Issue #1276)

回退到 3.3.0,处理了下恶意软件签名,可以使用了。

― Reply to this email directly, view it on GitHubhttps://github.com/yanue/V2rayU/issues/1276#issuecomment-1635421500, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AAK6M4UBKX7UIPZMCISOAFLXQDYEFANCNFSM6AAAAAA2JZJMFY. You are receiving this because you are subscribed to this thread.Message ID: @.***>

yanue avatar Jul 14 '23 07:07 yanue

配置参考

// 3.3
{
  "log": {
    "error": "",
    "loglevel": "info",
    "access": ""
  },
  "inbounds": [
    {
      "listen": "127.0.0.1",
      "protocol": "socks",
      "settings": {
        "udp": false,
        "auth": "noauth"
      },
      "port": "1080"
    },
    {
      "listen": "127.0.0.1",
      "protocol": "http",
      "settings": {
        "timeout": 360
      },
      "port": "1087"
    }
  ],
  "outbounds": [
    {
      "protocol": "shadowsocks",
      "streamSettings": {
        "network": "tcp",
        "tcpSettings": {
          "header": {
            "type": "none"
          }
        },
        "security": "none"
      },
      "tag": "proxy",
      "settings": {
        "servers": [
          {
            "port": 12013,
            "method": "aes-128-gcm",
            "password": "password",
            "address": "address",
            "level": 0,
            "email": "",
            "ota": false
          }
        ]
      }
    },
    {
      "tag": "direct",
      "protocol": "freedom",
      "settings": {
        "domainStrategy": "UseIP",
        "userLevel": 0
      }
    },
    {
      "tag": "block",
      "protocol": "blackhole",
      "settings": {
        "response": {
          "type": "none"
        }
      }
    }
  ],
  "dns": {},
  "routing": {
    "settings": {
      "domainStrategy": "AsIs",
      "rules": []
    }
  },
  "transport": {}
}

// 3.5+ 垃圾桶里找的,不太记得是哪个版本的了,安装了好多遍
{
  "log": {
    "error": "",
    "loglevel": "info",
    "access": ""
  },
  "inbounds": [
    {
      "listen": "127.0.0.1",
      "protocol": "socks",
      "settings": {
        "udp": false,
        "auth": "noauth"
      },
      "port": "1080"
    },
    {
      "listen": "127.0.0.1",
      "protocol": "http",
      "settings": {
        "timeout": 360
      },
      "port": "1087"
    }
  ],
  "outbounds": [
    {
      "protocol": "shadowsocks",
      "streamSettings": {
        "tcpSettings": {
          "header": {
            "type": "none"
          }
        },
        "tlsSettings": {
          "serverName": "",
          "allowInsecure": true
        },
        "security": "tls",
        "network": "tcp"
      },
      "tag": "proxy",
      "settings": {
        "servers": [
          {
            "port": 12013,
            "method": "aes-128-gcm",
            "password": "password",
            "address": "address",
            "level": 0,
            "email": "",
            "ota": false
          }
        ]
      }
    },
    {
      "tag": "direct",
      "protocol": "freedom",
      "settings": {
        "domainStrategy": "UseIP",
        "userLevel": 0
      }
    },
    {
      "tag": "block",
      "protocol": "blackhole",
      "settings": {
        "response": {
          "type": "none"
        }
      }
    }
  ],
  "dns": {},
  "routing": {
    "settings": {
      "domainStrategy": "AsIs",
      "rules": []
    }
  },
  "transport": {}
}

inhere avatar Jul 14 '23 07:07 inhere

可以发一下3.3和3.7配置看下两个版本差别吗?方便定位问题 获取 Outlook for iOShttps://aka.ms/o0ukef ________________________________ 发件人: Inhere @.> 发送时间: Friday, July 14, 2023 3:26:58 PM 收件人: yanue/V2rayU @.> 抄送: Subscribed @.> 主题: Re: [yanue/V2rayU] 更新到 3.5-3.7 都无法访问目标网站 (Issue #1276) 回退到 3.3.0,处理了下恶意软件签名,可以使用了。 ― Reply to this email directly, view it on GitHub<#1276 (comment)>, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AAK6M4UBKX7UIPZMCISOAFLXQDYEFANCNFSM6AAAAAA2JZJMFY. You are receiving this because you are subscribed to this thread.Message ID: @.>

3.4升级3.7也无法访问,3.4正常,都是默认配置。

Underquant avatar Jul 14 '23 07:07 Underquant

image 找到问题了

yanue avatar Jul 14 '23 08:07 yanue

很奇怪,3.6~3.7都无法访问,退回到3.5就正常了。 app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to use xtls-rprx-direct, maybe "security" is not "xtls" 2023/07/14 18:05:40 [Info] [1262346794] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe

kings avatar Jul 14 '23 10:07 kings

image 找到问题了

改为none正常使用了

iicey avatar Jul 15 '23 03:07 iicey

这个配置文件目录在哪呀,我在/Users/xxx/.V2rayU/v2ray-core 目录修改后打开v2rayU又被覆盖回去了

Jungle2036 avatar Jul 15 '23 06:07 Jungle2036

这个配置文件目录在哪呀,我在/Users/xxx/.V2rayU/v2ray-core 目录修改后打开v2rayU又被覆盖回去了

/Users/xxx/.V2rayU/config.json

inhere avatar Jul 15 '23 06:07 inhere

对哦,改成none就可以了

KEUNGXU avatar Jul 15 '23 11:07 KEUNGXU

改成none依然无效,无法科学上网! 2023/07/16 12:37:33 tcp:127.0.0.1:50137 accepted tcp:gateway.icloud.com.cn:443 [proxy] 2023/07/16 12:37:33 [Info] [3922345399] proxy/shadowsocks: tunneling request to tcp:gateway.icloud.com.cn:443 via TCP:hk1.linghun3.xyz:40000 2023/07/16 12:37:33 [Info] [3922345399] app/proxyman/outbound: failed to process outbound traffic > proxy/shadowsocks: connection ends > proxy/shadowsocks: failed to read IV > EOF 2023/07/16 12:37:33 [Info] [3922345399] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe

charlence avatar Jul 16 '23 04:07 charlence

image 找到问题了

改为none正常使用了

@yanue 预计什么时候发新版本,订阅列表太多改起来好麻烦

iicey avatar Jul 16 '23 05:07 iicey