v2fly / v2ray-core

A platform for building proxies to bypass network restrictions.
https://v2fly.org
MIT License
29.02k stars 4.59k forks source link

failed to read response from 目标网址 > unexpected EOF #1328

Closed oxyhexagen closed 2 years ago

oxyhexagen commented 2 years ago

你正在使用哪个版本的 V2Ray?

服务端与PC客户端:4.42.2 手机客户端:4.19

你的使用场景是什么?

通过chrome访问google与通过手机浏览器访问youtube

你看到的异常现象是什么?

访问超时,无法连接 vps服务端监听的端口tcping不能ping通(100%failed) 发生过数次,每次更换服务端端口后,可以全部恢复正常,但使用手机客户端或其他什么客户端连接时(曾经一直正常),又超时+端口ping不通

你期待看到的正常表现是怎样的?

可以正常连接并代理

请附上你的配置

服务端配置:

// 在这里附上服务器端配置文件
{
    "log": {
        "loglevel": "debug", 
        "access": "/var/log/v2ray/access.log", 
        "error": "/var/log/v2ray/error.log"
    }, 
    "inbounds": [
        {
            "port": 8004, 
            "protocol": "vmess", 
            "settings": {
                "clients": [
                    {
                        "id": "隐去密码", 
                        "level": 1, 
                        "alterId": 64
                    }
                ]
            }
        }
    ], 
    "outbounds": [
        {
            "protocol": "freedom", 
            "settings": { }
        }, 
        {
            "protocol": "blackhole", 
            "settings": { }, 
            "tag": "blocked"
        }
    ], 
    "routing": {
        "rules": [
            {
                "type": "field", 
                "ip": [
                    "geoip:private"
                ], 
                "outboundTag": "blocked"
            }
        ]
    }
}

客户端配置:

// 在这里附上客户端配置
//pc端v2rayN:
{
  "policy": {
    "system": {
      "statsOutboundUplink": true,
      "statsOutboundDownlink": true
    }
  },
  "log": {
    "access": "D:\\Vaccess.log",
    "error": "D:\\Verror.log",
    "loglevel": "debug"
  },
  "inbounds": [
    {
      "tag": "socks",
      "port": 1080,
      "listen": "127.0.0.1",
      "protocol": "socks",
      "sniffing": {
        "enabled": true,
        "destOverride": [
          "http",
          "tls"
        ]
      },
      "settings": {
        "auth": "noauth",
        "udp": true,
        "allowTransparent": false
      }
    },
    {
      "tag": "http",
      "port": 1081,
      "listen": "127.0.0.1",
      "protocol": "http",
      "sniffing": {
        "enabled": true,
        "destOverride": [
          "http",
          "tls"
        ]
      },
      "settings": {
        "udp": false,
        "allowTransparent": false
      }
    },
    {
      "tag": "api",
      "port": 3066,
      "listen": "127.0.0.1",
      "protocol": "dokodemo-door",
      "settings": {
        "udp": false,
        "address": "127.0.0.1",
        "allowTransparent": false
      }
    }
  ],
  "outbounds": [
    {
      "tag": "proxy",
      "protocol": "vmess",
      "settings": {
        "vnext": [
          {
            "address": "隐去IP",
            "port": 隐去端口,
            "users": [
              {
                "id": "隐去密码",
                "alterId": 64,
                "email": "t@t.tt",
                "security": "auto"
              }
            ]
          }
        ]
      },
      "streamSettings": {
        "network": "tcp"
      },
      "mux": {
        "enabled": true,
        "concurrency": 8
      }
    },
    {
      "tag": "direct",
      "protocol": "freedom",
      "settings": {}
    },
    {
      "tag": "block",
      "protocol": "blackhole",
      "settings": {
        "response": {
          "type": "http"
        }
      }
    }
  ],
  "stats": {},
  "api": {
    "tag": "api",
    "services": [
      "StatsService"
    ]
  },
  "routing": {
    "domainStrategy": "IPIfNonMatch",
    "domainMatcher": "linear",
    "rules": [
      {
        "type": "field",
        "inboundTag": [
          "api"
        ],
        "outboundTag": "api"
      },
      {
        "type": "field",
        "outboundTag": "proxy",
        "domain": [
          "geosite:google",
          "geosite:greatfire",
          "geosite:gfw"
        ]
      },
      {
        "type": "field",
        "outboundTag": "direct",
        "domain": [
          "geoip:private",
          "geoip:cn",
          "geosite:cn"
        ]
      },
      {
        "type": "field",
        "outboundTag": "block",
        "domain": [
          "geosite:category-ads-all"
        ]
      }
    ]
  }
}

//手机端BifrostV:
{
  "log": {
    "loglevel": "none"
  },
  "inbounds": [],
  "outbounds": [
    {
      "protocol": "vmess",
      "settings": {
        "vnext": [
          {
            "address": "隐去IP",
            "port": 隐去端口,
            "users": [
              {
                "id": "隐去密码",
                "alterId": 64,
                "security": "auto",
                "level": 1
              }
            ]
          }
        ]
      },
      "streamSettings": {
        "network": "tcp",
        "security": "none",
        "tlsSettings": {
          "serverName": "",
          "allowInsecure": false
        },
        "tcpSettings": {
          "header": {
            "type": "none",
            "request": {}
          }
        }
      },
      "mux": {
        "enabled": false,
        "concurrency": 8
      },
      "tag": "proxy"
    },
    {
      "protocol": "freedom",
      "settings": {},
      "tag": "direct"
    },
    {
      "protocol": "blackhole",
      "settings": {},
      "tag": "block"
    }
  ],
  "policy": {
    "levels": {
      "1": {
        "handshake": 6,
        "connIdle": 300,
        "uplinkOnly": 2,
        "downlinkOnly": 5,
        "bufferSize": 2
      }
    }
  },
  "routing": {
    "domainStrategy": "IPIfNonMatch",
    "rules": [
      {
        "type": "field",
        "ip": [
          "geoip:private",
          "geoip:cn"
        ],
        "outboundTag": "direct"
      },
      {
        "type": "field",
        "domain": [
          "geosite:cn"
        ],
        "outboundTag": "direct"
      }
    ]
  }
}

请附上出错时软件输出的错误日志

服务器端错误日志:

// 在这里附上服务器端日志
2021/10/11 10:30:01 [Warning] V2Ray 4.42.2 started                                                                                                             
2021/10/11 10:35:57 [Debug] app/log: Logger started                                                                                                          
2021/10/11 10:35:57 [Debug] app/proxyman/inbound: creating stream worker on 0.0.0.0:端口                                                
2021/10/11 10:35:57 [Info] transport/internet/tcp: listening TCP on 0.0.0.0:端口                                                                   
2021/10/11 10:35:57 [Warning] V2Ray 4.42.2 started  

客户端错误日志:

// 在这里附上客户端日志
//PC端错误日志:
2021/10/11 10:37:52 [Debug] app/log: Logger started
2021/10/11 10:37:52 [Debug] app/proxyman/inbound: creating stream worker on 127.0.0.1:1080
2021/10/11 10:37:52 [Debug] app/proxyman/inbound: creating stream worker on 127.0.0.1:1081
2021/10/11 10:37:52 [Debug] app/proxyman/inbound: creating stream worker on 127.0.0.1:3066
2021/10/11 10:37:52 [Debug] app/stats: create new counter outbound>>>proxy>>>traffic>>>uplink
2021/10/11 10:37:52 [Debug] app/stats: create new counter outbound>>>proxy>>>traffic>>>downlink
2021/10/11 10:37:52 [Debug] app/stats: create new counter outbound>>>direct>>>traffic>>>uplink
2021/10/11 10:37:52 [Debug] app/stats: create new counter outbound>>>direct>>>traffic>>>downlink
2021/10/11 10:37:52 [Debug] app/stats: create new counter outbound>>>block>>>traffic>>>uplink
2021/10/11 10:37:52 [Debug] app/stats: create new counter outbound>>>block>>>traffic>>>downlink
2021/10/11 10:37:52 [Info] transport/internet/tcp: listening TCP on 127.0.0.1:1080
2021/10/11 10:37:52 [Info] transport/internet/udp: listening UDP on 127.0.0.1:1080
2021/10/11 10:37:52 [Info] transport/internet/tcp: listening TCP on 127.0.0.1:1081
2021/10/11 10:37:52 [Info] transport/internet/tcp: listening TCP on 127.0.0.1:3066
2021/10/11 10:37:52 [Warning] V2Ray 4.42.2 started
2021/10/11 10:37:52 [Debug] [3469338728] proxy/dokodemo: processing connection from: 127.0.0.1:3067
2021/10/11 10:37:52 [Info] [3469338728] proxy/dokodemo: received request for 127.0.0.1:3067
2021/10/11 10:37:52 [Info] [3469338728] app/dispatcher: taking detour [api] for [tcp:127.0.0.1:0]
2021/10/11 10:38:02 [Info] [1814203969] proxy/http: request to Method [CONNECT] Host [sug.so.360.cn:443] with URL [//sug.so.360.cn:443]
2021/10/11 10:38:02 [Info] [1814203969] app/dispatcher: sniffed domain: sug.so.360.cn
2021/10/11 10:38:02 [Info] [1814203969] app/dispatcher: taking detour [direct] for [tcp:sug.so.360.cn:443]
2021/10/11 10:38:02 [Info] [1814203969] proxy/freedom: opening connection to tcp:sug.so.360.cn:443
2021/10/11 10:38:02 [Info] [1814203969] transport/internet/tcp: dialing TCP to tcp:sug.so.360.cn:443
2021/10/11 10:38:02 [Info] [3306568712] proxy/http: request to Method [GET] Host [wenda.tianya.cn] with URL [http://wenda.tianya.cn/favicon.ico]
2021/10/11 10:38:02 [Info] [3306568712] app/dispatcher: taking detour [direct] for [tcp:wenda.tianya.cn:80]
2021/10/11 10:38:02 [Info] [3306568712] proxy/freedom: opening connection to tcp:wenda.tianya.cn:80
2021/10/11 10:38:02 [Info] [3306568712] transport/internet/tcp: dialing TCP to tcp:wenda.tianya.cn:80
2021/10/11 10:38:02 [Info] [3306568712] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > context canceled
2021/10/11 10:38:02 [Info] [492021316] proxy/http: request to Method [GET] Host [www.wenda.tianya.cn] with URL [http://www.wenda.tianya.cn/favicon.ico]
2021/10/11 10:38:02 [Info] [492021316] app/dispatcher: taking detour [direct] for [tcp:www.wenda.tianya.cn:80]
2021/10/11 10:38:02 [Info] [492021316] proxy/freedom: opening connection to tcp:www.wenda.tianya.cn:80
2021/10/11 10:38:02 [Info] [492021316] transport/internet/tcp: dialing TCP to tcp:www.wenda.tianya.cn:80
2021/10/11 10:38:02 [Info] [492021316] transport/internet/tcp: dialing TCP to tcp:www.wenda.tianya.cn:80
2021/10/11 10:38:03 [Info] [786356202] proxy/http: request to Method [GET] Host [www.msftconnecttest.com] with URL [http://www.msftconnecttest.com/favicon.ico]
2021/10/11 10:38:03 [Info] [786356202] app/dispatcher: default route for tcp:www.msftconnecttest.com:80
2021/10/11 10:38:03 [Info] [786356202] common/mux: dispatching request to tcp:www.msftconnecttest.com:80
2021/10/11 10:38:03 [Info] transport/internet/tcp: dialing TCP to tcp:服务端IP:端口
2021/10/11 10:38:03 [Info] [492021316] transport/internet/tcp: dialing TCP to tcp:www.wenda.tianya.cn:80
2021/10/11 10:38:03 [Info] [492021316] transport/internet/tcp: dialing TCP to tcp:www.wenda.tianya.cn:80
2021/10/11 10:38:03 [Info] [2025884358] proxy/http: request to Method [GET] Host [ise.sapi.so.com] with URL [http://ise.sapi.so.com/s?q=www&src=360chrome]
2021/10/11 10:38:03 [Info] [2025884358] app/dispatcher: taking detour [direct] for [tcp:ise.sapi.so.com:80]
2021/10/11 10:38:03 [Info] [2025884358] proxy/freedom: opening connection to tcp:ise.sapi.so.com:80
2021/10/11 10:38:03 [Info] [2025884358] transport/internet/tcp: dialing TCP to tcp:ise.sapi.so.com:80
2021/10/11 10:38:03 [Info] [492021316] transport/internet/tcp: dialing TCP to tcp:www.wenda.tianya.cn:80
2021/10/11 10:38:03 [Info] [492021316] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: failed to open connection to tcp:www.wenda.tianya.cn:80 > common/retry: [dial tcp: lookup www.wenda.tianya.cn: no such host] > common/retry: all retry attempts failed
2021/10/11 10:38:03 [Warning] [492021316] proxy/http: failed to read response from www.wenda.tianya.cn > io: read/write on closed pipe
2021/10/11 10:38:03 [Info] [492021316] app/proxyman/inbound: connection ends > proxy/http: failed to read http request > EOF
2021/10/11 10:38:04 [Info] [747048698] proxy/http: request to Method [GET] Host [www.google.com.hk] with URL [http://www.google.com.hk/favicon.ico]
2021/10/11 10:38:04 [Info] [747048698] app/dispatcher: taking detour [proxy] for [tcp:www.google.com.hk:80]
2021/10/11 10:38:04 [Info] [2941167861] proxy/http: request to Method [GET] Host [www.google.com.tw] with URL [http://www.google.com.tw/favicon.ico]
2021/10/11 10:38:04 [Info] [747048698] common/mux: dispatching request to tcp:www.google.com.hk:80
2021/10/11 10:38:04 [Info] [2941167861] app/dispatcher: taking detour [proxy] for [tcp:www.google.com.tw:80]
2021/10/11 10:38:04 [Info] [2941167861] common/mux: dispatching request to tcp:www.google.com.tw:80
2021/10/11 10:38:04 [Info] [995880005] proxy/http: request to Method [GET] Host [www.gougou.com] with URL [http://www.gougou.com/favicon.ico]
2021/10/11 10:38:04 [Info] [995880005] app/dispatcher: default route for tcp:www.gougou.com:80
2021/10/11 10:38:04 [Info] [995880005] common/mux: dispatching request to tcp:www.gougou.com:80
2021/10/11 10:38:05 [Info] [1997780291] proxy/http: request to Method [CONNECT] Host [sug.so.360.cn:443] with URL [//sug.so.360.cn:443]
2021/10/11 10:38:05 [Info] [1997780291] app/dispatcher: sniffed domain: sug.so.360.cn
2021/10/11 10:38:05 [Info] [1997780291] app/dispatcher: taking detour [direct] for [tcp:sug.so.360.cn:443]
2021/10/11 10:38:05 [Info] [1997780291] proxy/freedom: opening connection to tcp:sug.so.360.cn:443
2021/10/11 10:38:05 [Info] [1997780291] transport/internet/tcp: dialing TCP to tcp:sug.so.360.cn:443
2021/10/11 10:38:05 [Info] [3966994506] proxy/http: request to Method [GET] Host [www.google.com] with URL [http://www.google.com/]
2021/10/11 10:38:05 [Info] [3966994506] app/dispatcher: taking detour [proxy] for [tcp:www.google.com:80]
2021/10/11 10:38:05 [Info] [3966994506] common/mux: dispatching request to tcp:www.google.com:80
2021/10/11 10:38:07 [Info] [1814203969] app/proxyman/inbound: connection ends > proxy/http: connection ends > context canceled
2021/10/11 10:38:07 [Info] [1814203969] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > context canceled
2021/10/11 10:38:09 [Debug] app/log: Logger started
2021/10/11 10:38:09 [Debug] app/proxyman/inbound: creating stream worker on 127.0.0.1:1183
2021/10/11 10:38:09 [Info] transport/internet/tcp: listening TCP on 127.0.0.1:1183
2021/10/11 10:38:09 [Warning] V2Ray 4.42.2 started
2021/10/11 10:38:10 [Info] [1657018839] proxy/http: request to Method [CONNECT] Host [www.google.com:443] with URL [//www.google.com:443]
2021/10/11 10:38:10 [Info] [1657018839] app/dispatcher: taking detour [proxy1183] for [tcp:www.google.com:443]
2021/10/11 10:38:10 [Info] [1657018839] common/mux: dispatching request to tcp:www.google.com:443
2021/10/11 10:38:10 [Info] transport/internet/tcp: dialing TCP to tcp:服务端IP:端口
2021/10/11 10:38:19 [Info] transport/internet/tcp: dialing TCP to tcp:服务端IP:端口
2021/10/11 10:38:19 [Info] [2025884358] transport/internet/tcp: dialing TCP to tcp:ise.sapi.so.com:80
2021/10/11 10:38:35 [Info] transport/internet/tcp: dialing TCP to tcp:服务端IP:端口
2021/10/11 10:38:35 [Info] [2025884358] transport/internet/tcp: dialing TCP to tcp:ise.sapi.so.com:80
2021/10/11 10:38:36 [Info] [1997780291] app/proxyman/inbound: connection ends > proxy/http: connection ends > context canceled
2021/10/11 10:38:36 [Info] [1997780291] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > context canceled
2021/10/11 10:38:51 [Info] transport/internet/tcp: dialing TCP to tcp:服务端IP:端口
2021/10/11 10:38:51 [Info] [2025884358] transport/internet/tcp: dialing TCP to tcp:ise.sapi.so.com:80
2021/10/11 10:39:08 [Info] [2025884358] transport/internet/tcp: dialing TCP to tcp:ise.sapi.so.com:80
2021/10/11 10:39:08 [Info] transport/internet/tcp: dialing TCP to tcp:服务端IP:端口
2021/10/11 10:39:24 [Info] [2025884358] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: failed to open connection to tcp:ise.sapi.so.com:80 > common/retry: [dial tcp 180.163.242.116:80: i/o timeout] > common/retry: all retry attempts failed
2021/10/11 10:39:24 [Warning] [2025884358] proxy/http: failed to read response from ise.sapi.so.com > io: read/write on closed pipe
2021/10/11 10:39:24 [Info] [2025884358] app/proxyman/inbound: connection ends > proxy/http: failed to read http request > EOF
2021/10/11 10:39:25 [Warning] failed to handler mux client connection > proxy/vmess/outbound: failed to find an available destination > common/retry: [dial tcp 服务端IP:端口: i/o timeout] > common/retry: all retry attempts failed
2021/10/11 10:39:25 [Info] common/mux: failed to read metadata > io: read/write on closed pipe
2021/10/11 10:39:25 [Warning] [747048698] proxy/http: failed to read response from www.google.com.hk > unexpected EOF
2021/10/11 10:39:25 [Warning] [786356202] proxy/http: failed to read response from www.msftconnecttest.com > unexpected EOF
2021/10/11 10:39:25 [Warning] [2941167861] proxy/http: failed to read response from www.google.com.tw > unexpected EOF
2021/10/11 10:39:25 [Warning] [3966994506] proxy/http: failed to read response from www.google.com > unexpected EOF
2021/10/11 10:39:25 [Warning] [995880005] proxy/http: failed to read response from www.gougou.com > unexpected EOF
2021/10/11 10:39:25 [Info] [786356202] app/proxyman/inbound: connection ends > proxy/http: failed to read http request > EOF
2021/10/11 10:39:25 [Info] [747048698] app/proxyman/inbound: connection ends > proxy/http: failed to read http request > EOF
2021/10/11 10:39:25 [Info] [2941167861] app/proxyman/inbound: connection ends > proxy/http: failed to read http request > EOF
2021/10/11 10:39:25 [Info] [995880005] app/proxyman/inbound: connection ends > proxy/http: failed to read http request > EOF
2021/10/11 10:39:25 [Info] [3966994506] app/proxyman/inbound: connection ends > proxy/http: failed to read http request > EOF
2021/10/11 10:39:25 [Info] [3497150509] proxy/http: request to Method [GET] Host [www.goo] with URL [http://www.goo/favicon.ico]
2021/10/11 10:39:25 [Info] [3497150509] app/dispatcher: taking detour [proxy] for [tcp:www.goo:80]
2021/10/11 10:39:25 [Info] [3190937540] proxy/http: request to Method [GET] Host [www.goodbaby.com] with URL [http://www.goodbaby.com/favicon.ico]
2021/10/11 10:39:25 [Info] [3497150509] common/mux: dispatching request to tcp:www.goo:80
2021/10/11 10:39:25 [Info] [3190937540] app/dispatcher: default route for tcp:www.goodbaby.com:80
2021/10/11 10:39:25 [Info] [3190937540] common/mux: dispatching request to tcp:www.goodbaby.com:80
2021/10/11 10:39:25 [Info] [3353149003] proxy/http: request to Method [GET] Host [www.google.co.jp] with URL [http://www.google.co.jp/favicon.ico]
2021/10/11 10:39:25 [Info] [3353149003] app/dispatcher: taking detour [proxy] for [tcp:www.google.co.jp:80]
2021/10/11 10:39:25 [Info] [3353149003] common/mux: dispatching request to tcp:www.google.co.jp:80
2021/10/11 10:39:25 [Info] transport/internet/tcp: dialing TCP to tcp:服务端IP:端口
2021/10/11 10:39:25 [Info] [604386914] proxy/http: request to Method [GET] Host [www.google.cn] with URL [http://www.google.cn/favicon.ico]
2021/10/11 10:39:25 [Info] [604386914] app/dispatcher: taking detour [proxy] for [tcp:www.google.cn:80]
2021/10/11 10:39:25 [Info] [604386914] common/mux: dispatching request to tcp:www.google.cn:80
2021/10/11 10:39:41 [Info] transport/internet/tcp: dialing TCP to tcp:服务端IP:端口
2021/10/11 10:39:57 [Info] transport/internet/tcp: dialing TCP to tcp:服务端IP:端口
2021/10/11 10:40:13 [Info] transport/internet/tcp: dialing TCP to tcp:服务端IP:端口
2021/10/11 10:40:30 [Info] transport/internet/tcp: dialing TCP to tcp:服务端IP:端口
2021/10/11 10:40:47 [Warning] failed to handler mux client connection > proxy/vmess/outbound: failed to find an available destination > common/retry: [dial tcp 服务端IP:端口: i/o timeout] > common/retry: all retry attempts failed
2021/10/11 10:40:47 [Info] common/mux: failed to read metadata > io: read/write on closed pipe
2021/10/11 10:40:47 [Warning] [3353149003] proxy/http: failed to read response from www.google.co.jp > unexpected EOF
2021/10/11 10:40:47 [Warning] [3497150509] proxy/http: failed to read response from www.goo > unexpected EOF
2021/10/11 10:40:47 [Warning] [3190937540] proxy/http: failed to read response from www.goodbaby.com > unexpected EOF
2021/10/11 10:40:47 [Warning] [604386914] proxy/http: failed to read response from www.google.cn > unexpected EOF
2021/10/11 10:40:47 [Info] [3190937540] app/proxyman/inbound: connection ends > proxy/http: failed to read http request > EOF
2021/10/11 10:40:47 [Info] [3497150509] app/proxyman/inbound: connection ends > proxy/http: failed to read http request > EOF
2021/10/11 10:40:47 [Info] [3353149003] app/proxyman/inbound: connection ends > proxy/http: failed to read http request > EOF
2021/10/11 10:40:47 [Info] [604386914] app/proxyman/inbound: connection ends > proxy/http: failed to read http request > EOF
2021/10/11 10:40:47 [Info] [1788783247] proxy/http: request to Method [GET] Host [www.goog] with URL [http://www.goog/favicon.ico]
2021/10/11 10:40:47 [Info] [1788783247] app/dispatcher: taking detour [proxy] for [tcp:www.goog:80]
2021/10/11 10:40:47 [Info] [1788783247] common/mux: dispatching request to tcp:www.goog:80
2021/10/11 10:40:47 [Info] [1308312615] proxy/http: request to Method [GET] Host [www.google] with URL [http://www.google/favicon.ico]
2021/10/11 10:40:47 [Info] transport/internet/tcp: dialing TCP to tcp:服务端IP:端口
2021/10/11 10:40:47 [Info] [1308312615] app/dispatcher: taking detour [proxy] for [tcp:www.google:80]
2021/10/11 10:40:47 [Info] [1308312615] common/mux: dispatching request to tcp:www.google:80
2021/10/11 10:40:47 [Info] [3377759144] proxy/http: request to Method [GET] Host [www.google.] with URL [http://www.google./favicon.ico]
2021/10/11 10:40:47 [Info] [3377759144] app/dispatcher: default route for tcp:www.google.:80
2021/10/11 10:40:47 [Info] [3377759144] common/mux: dispatching request to tcp:www.google.:80
2021/10/11 10:40:47 [Info] [2451405331] proxy/http: request to Method [GET] Host [www.google.co] with URL [http://www.google.co/favicon.ico]
2021/10/11 10:40:47 [Info] [2451405331] app/dispatcher: default route for tcp:www.google.co:80
2021/10/11 10:40:47 [Info] [2451405331] common/mux: dispatching request to tcp:www.google.co:80
2021/10/11 10:41:03 [Info] transport/internet/tcp: dialing TCP to tcp:服务端IP:端口
2021/10/11 10:41:19 [Info] transport/internet/tcp: dialing TCP to tcp:服务端IP:端口
2021/10/11 10:41:30 [Info] [2904678771] proxy/http: request to Method [GET] Host [config.pinyin.sogou.com] with URL [http://config.pinyin.sogou.com/api/toolbox/geturl.php?h=C5229B5F71CFAA363104566069C5534D&v=10.2.0.4519&r=0000_sogou_pinyin_102a]
2021/10/11 10:41:30 [Info] [2904678771] app/dispatcher: taking detour [direct] for [tcp:config.pinyin.sogou.com:80]
2021/10/11 10:41:30 [Info] [2904678771] proxy/freedom: opening connection to tcp:config.pinyin.sogou.com:80
2021/10/11 10:41:30 [Info] [2904678771] transport/internet/tcp: dialing TCP to tcp:config.pinyin.sogou.com:80
2021/10/11 10:41:30 [Info] [2904678771] app/proxyman/inbound: connection ends > proxy/http: failed to read http request > EOF
2021/10/11 10:41:35 [Info] transport/internet/tcp: dialing TCP to tcp:服务端IP:端口
2021/10/11 10:41:52 [Info] transport/internet/tcp: dialing TCP to tcp:服务端IP:端口
2021/10/11 10:42:09 [Warning] failed to handler mux client connection > proxy/vmess/outbound: failed to find an available destination > common/retry: [dial tcp 服务端IP:端口: i/o timeout] > common/retry: all retry attempts failed
2021/10/11 10:42:09 [Info] common/mux: failed to read metadata > io: read/write on closed pipe
2021/10/11 10:42:09 [Warning] [1308312615] proxy/http: failed to read response from www.google > unexpected EOF
2021/10/11 10:42:09 [Warning] [1788783247] proxy/http: failed to read response from www.goog > unexpected EOF
2021/10/11 10:42:09 [Warning] [2451405331] proxy/http: failed to read response from www.google.co > unexpected EOF
2021/10/11 10:42:09 [Warning] [3377759144] proxy/http: failed to read response from www.google. > unexpected EOF
2021/10/11 10:42:09 [Info] [1308312615] app/proxyman/inbound: connection ends > proxy/http: failed to read http request > EOF
2021/10/11 10:42:09 [Info] [3377759144] app/proxyman/inbound: connection ends > proxy/http: failed to read http request > EOF
2021/10/11 10:42:09 [Info] [2451405331] app/proxyman/inbound: connection ends > proxy/http: failed to read http request > EOF
2021/10/11 10:42:09 [Info] [1788783247] app/proxyman/inbound: connection ends > proxy/http: failed to read http request > EOF
2021/10/11 10:42:09 [Info] [57616099] proxy/http: request to Method [GET] Host [www.google.com] with URL [http://www.google.com/favicon.ico]
2021/10/11 10:42:09 [Info] [57616099] app/dispatcher: taking detour [proxy] for [tcp:www.google.com:80]
2021/10/11 10:42:09 [Info] [57616099] common/mux: dispatching request to tcp:www.google.com:80
2021/10/11 10:42:09 [Info] transport/internet/tcp: dialing TCP to tcp:服务端IP:端口
2021/10/11 10:42:25 [Info] transport/internet/tcp: dialing TCP to tcp:服务端IP:端口
2021/10/11 10:42:41 [Info] transport/internet/tcp: dialing TCP to tcp:服务端IP:端口
2021/10/11 10:42:57 [Info] transport/internet/tcp: dialing TCP to tcp:服务端IP:端口

请附上访问日志

// 在这里附上服务器端日志
服务端访问日志为空!(我复现这个错误前清空了,复现后也没生成)

其它相关的配置文件(如 Nginx)和相关日志

如果 V2Ray 无法启动,请附上 --test 命令的输出

如果 V2Ray 服务运行异常,请附上 journal 日志

database64128 commented 2 years ago

Stop setting alterId. Stop using 360. Maybe also stop using v2rayN.