Xray-core
Xray-core copied to clipboard
新的流控: xtls-rprx-vision 不支持Proxy protocol.
使用新的流控搭配PROXY protocol,会导致网页报错ERR_SSL_VERSION_OR_CHIPPER_MISMATCH. 本人使用nginx做4层TCP基于SNI的分流,对进站流量开启了proxy protocol. 当配置文件将"acceptProxyProtocol":设置为true时, 测速,icmp测试没问题.但测试真链接延迟时提示:SSL或TLS链接未建立, 使用浏览网页会报错:ERR_SSL_VERSION_OR_CHIPPER_MISMATCH. 以下为服务端配置文件节选:
"transport":{
"tcpSettings":{
"acceptProxyProtocol": true,
"header": {
"type": "none"
}
}
},
"inbounds": [
{
"listen": "127.0.0.1",
"port": xxxxx,
"protocol": "vless",
"settings": {
"clients": [
{
"id": "xxxxxx",
"level": 0,
"email": "[email protected]",
"flow": "xtls-rprx-vision"
}
],
"decryption": "none"
},
"streamSettings": {
"network": "tcp",
"security": "tls",
"tlsSettings":{
"rejectUnknownSni": true,
"certificates":[
{
"certificateFile": "fullchain.cer",
"keyFile": "key.pem"
}
]
}
},
"sniffing": {
"enabled": true,
"destOverride": [
"http",
"tls"
]
},
"tag": "XRay_beta"
}
]
当将proxy protocol关闭时,是可以正常连接的。
除此之外,使用的服务端与客户端均无error报错.
vision只能是xray前置接端口用,不支持nginx前置的sni分流用法。
vision只能是xray前置接端口用,不支持nginx前置的sni分流用法。
啊,抱歉。我突然想起来,我只是用nginx做了4层Tcp基于SNI的分流,在我关闭 PROXY protocol后实际上是可以使用的。 所以我觉得应该还是proxy protocol的问题?
@ELXIAGHT 最好发一下 可复现的配置 包括Nginx 有空我试试
@ELXIAGHT 最好发一下 可复现的配置 包括Nginx 有空我试试
以下为复现"ERR_SSL_VERSION_OR_CHIPPER_MISMATCH"的nginx配置:
user root;
worker_processes auto;
events {
worker_connections 1024;
}
error_log /var/log/nginx/error.log error;
pid /var/run/nginx.pid;
# TCP四层分流
stream {
map $ssl_preread_server_name $stream_map {
# 服务站点
www.vision.com homepage;
# 伪装代理
xtls.vision.com xray_core;
}
# 服务站点
upstream homepage {
server 127.0.0.1:21010;
}
# 伪装代理
upstream xray_core {
server 127.0.0.1:12010;
}
server {
listen 443 so_keepalive=on;
proxy_pass $stream_map;
proxy_protocol on;
ssl_preread on;
}
}
# http七层分流
http {
# nginx默认配置
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr|"$request"[$status]|$http_host|"$http_referer"|"$http_x_forwarded_for"'
'|"$upstream_addr"|';
# 访问日志
access_log /var/log/nginx/access.log main;
# proxy_protocol协议将访问IP修改为客户端IP
set_real_ip_from 127.0.0.1;
real_ip_header proxy_protocol;
# 端口转发设置
absolute_redirect on;
port_in_redirect off;
server_name_in_redirect off;
# Http拒绝所有不合要求的链接
server {
listen 80 default;
listen [::]:80 default;
return 444;
}
# 80=>443 https重定向
server {
listen 80;
listen [::]:80;
server_name *.vision.com;
if ( $server_name ) {
return 308 https://$host$request_uri;
}
}
# 服务站点
server {
listen 127.0.0.1:21010 ssl proxy_protocol;
server_name www.vision.com;
index index.html index.htm;
# 配置上传文件大小
client_max_body_size 20m;
#ssl设置
ssl_stapling on;
ssl_stapling_verify on;
ssl_session_timeout 1d;
ssl_session_tickets off;
ssl_session_cache shared:MozSSL:10m;
ssl_certificate /etc/nginx/ssl/www.vision.com/fullchain.cer;
ssl_certificate_key /etc/nginx/ssl/www.vision.com/key.pem;
ssl_protocols TLSv1.2 TLSv1.3;
ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305;
ssl_prefer_server_ciphers on;
location / {
root /html;
}
}
}
以下是xray的服务端配置:
{
"log": {
"access": "/etc/xray/log/access.log",
"error": "/etc/xray/log/error.log",
"loglevel": "debug"
},
"routing": {
"domainStrategy": "IPIfNonMatch",
"rules": [
{
"type": "field",
"domain": "domain:googleapis.cn",
"inboundTag": "XRay_beta",
"outboundTag": "proxy"
},
{
"type": "field",
"domain": "geosite:cn",
"inboundTag": "XRay_beta",
"outboundTag": "blockIP"
},
{
"type": "field",
"ip": ["geoip:cn","geoip:private"],
"inboundTag": "XRay_beta",
"outboundTag": "blockIP"
}
]
},
"inbounds": [
{
"listen": "127.0.0.1",
"port": 12010,
"protocol": "vless",
"settings": {
"clients": [
{
"id": "XXX-XXXX-XXXX-XXXX",
"level": 0,
"email": "[email protected]",
"flow": "xtls-rprx-vision"
}
],
"decryption": "none"
},
"streamSettings": {
"network": "tcp",
"security": "tls",
"tlsSettings":{
"allowInsecure": false,
"rejectUnknownSni": true,
"certificates":[
{
"ocspStapling": 3600,
"oneTimeLoading": false,
"usage": "encipherment",
"certificateFile": "/etc/xray/ssl/xtls.vision.com/fullchain.cer",
"keyFile": "/etc/xray/ssl/xtls.vision.com/key.pem"
}
]
},
"tcpSettings":{
"acceptProxyProtocol": true,
"header": {
"type": "none"
}
}
},
"sniffing": {
"enabled": true,
"destOverride": [
"http",
"tls"
]
},
"tag": "XRay_beta"
}
],
"outbounds": [
{
"protocol": "freedom",
"tag": "proxy"
},
{
"protocol": "blackhole",
"settings": {
"response": {
"type": "http"
}
},
"tag": "blockIP"
}
]
}
以下是xray的客户端配置:
{
"log": {
"loglevel": "warning"
},
"routing": {
"domainStrategy": "IPIfNonMatch",
"rules": [
{
"type": "field",
"domain": [
"geosite:cn",
"geosite:private"
],
"outboundTag": "direct"
},
{
"type": "field",
"ip": [
"geoip:cn",
"geoip:private"
],
"outboundTag": "direct"
}
]
},
"inbounds": [
{
"listen": "127.0.0.1",
"port": 10808,
"protocol": "socks",
"settings": {
"udp": true
},
"sniffing": {
"enabled": true,
"destOverride": [
"http",
"tls"
]
}
},
{
"listen": "127.0.0.1",
"port": 10809,
"protocol": "http",
"sniffing": {
"enabled": true,
"destOverride": [
"http",
"tls"
]
}
}
],
"outbounds": [
{
"protocol": "vless",
"settings": {
"vnext": [
{
"address": "", // IP
"port": 443, // 端口
"users": [
{
"id": "xxx-xxxx-xxxx-xxxxx",
"encryption": "none",
"flow": "xtls-rprx-vision"
}
]
}
]
},
"streamSettings": {
"network": "tcp",
"security": "tls",
"tlsSettings": {
"alpn": ["h2","http/1.1"],
"serverName": "xtls.vision.com",
"allowInsecure": false,
"fingerprint": "randomized"
}
},
"tag": "proxy"
},
{
"protocol": "freedom",
"tag": "direct"
}
]
}
你上提交的Nginx有错误:‘# http七层分流’中最后server块少一个大括号。如你实际配置就如上,那么跟PROXY protocol无关。
你上提交的Nginx有错误:‘# http七层分流’中最后server块少一个大括号。如你实际配置就如上,那么跟PROXY protocol无关。
感谢!如果缺少这个“}”,nginx肯定会报错无法运行! 但我实际配置使用的比这个更复杂一点,且和本例没有关系,所以我简化了配置。
这里还有一份issue可供参考。这里也是类似配置,在关闭了proxy protocol后即可正常使用。 #1335
已测试 Caddy SNI 分流,xtls-rprx-vision一样不支持 PROXY protocol 传入。
确实是不支持的,正常代理下,也无法在speedtest测速日志先PROXY protocol error.
姑且简单提一下如果用SNI分流与proxy portocol的暂时解决办法。 在stream模块中再侦听一个端口,将proxy protocol在nginx处理完再送到xray里是没问题的。 目前截止到1.6.4。
姑且简单提一下如果用SNI分流与proxy portocol的暂时解决办法。 在stream模块中再侦听一个端口,将proxy protocol在nginx处理完再送到xray里是没问题的。 目前截止到1.6.4。
其实xtls刚出来的时候也有这个问题,我补充一下具体操作
stream {
upstream xtls {
server 127.0.0.1:996;
}
server {
listen 127.0.0.1:777 proxy_protocol;
proxy_pass xtls;
}
}
777是域名端口,996是xray监听端口。
1.7.1版本已修复该问题,感谢~
error.log debug
2023/01/07 13:47:10 [Debug] app/log: Logger started
2023/01/07 13:47:10 [Debug] app/router: MphDomainMatcher is enabled for 1 domain rule(s)
2023/01/07 13:47:10 [Debug] app/router: MphDomainMatcher is enabled for 1 domain rule(s)
2023/01/07 13:47:10 [Debug] app/router: MphDomainMatcher is enabled for 3676 domain rule(s)
2023/01/07 13:47:10 [Debug] app/router: MphDomainMatcher is enabled for 66559 domain rule(s)
2023/01/07 13:47:10 [Debug] app/router: MphDomainMatcher is enabled for 1 domain rule(s)
2023/01/07 13:47:10 [Debug] app/router: MphDomainMatcher is enabled for 1 domain rule(s)
2023/01/07 13:47:10 [Debug] app/router: MphDomainMatcher is enabled for 3676 domain rule(s)
2023/01/07 13:47:10 [Debug] app/router: MphDomainMatcher is enabled for 66559 domain rule(s)
2023/01/07 13:47:10 [Debug] app/proxyman/inbound: creating unix domain socket worker on /etc/xray/sock/xray.sock
2023/01/07 13:47:10 [Debug] app/proxyman/inbound: creating unix domain socket worker on /etc/xray/sock/xray_beta.sock
2023/01/07 13:47:10 [Info] transport/internet/tcp: listening Unix Domain Socket on /etc/xray/sock/xray_beta.sock
2023/01/07 13:47:10 [Warning] transport/internet/tcp: accepting PROXY protocol
2023/01/07 13:47:10 [Info] transport/internet/tcp: listening Unix Domain Socket on /etc/xray/sock/xray.sock
2023/01/07 13:47:10 [Warning] transport/internet/tcp: accepting PROXY protocol
2023/01/07 13:47:10 [Warning] core: Xray 1.7.1 started
~~~
2023/01/07 13:53:15 [Info] [2517277907] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process response > read tcp [2a0d:f302:118:9763::1]:60886->[2606:4700:3033::6815:2db5]:443: read: connection reset by peer
2023/01/07 13:53:15 [Info] [2517277907] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer response payload > io: read/write on closed pipe
2023/01/07 13:53:15 [Info] [2164792634] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process response > read tcp 94.177.8.163:43692->20.189.173.7:443: read: connection reset by peer
2023/01/07 13:53:15 [Info] [2164792634] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > io: read/write on closed pipe
2023/01/07 13:53:16 [Info] [918415802] proxy/vless/inbound: firstLen = 1186
2023/01/07 13:53:16 [Info] [918415802] proxy/vless/inbound: received request for tcp:self.events.data.microsoft.com:443
2023/01/07 13:53:16 [Info] [918415802] app/dispatcher: taking detour [proxy] for [tcp:self.events.data.microsoft.com:443]
2023/01/07 13:53:16 [Info] [918415802] proxy/freedom: opening connection to tcp:self.events.data.microsoft.com:443
2023/01/07 13:53:16 [Info] [918415802] transport/internet/tcp: dialing TCP to tcp:self.events.data.microsoft.com:443
2023/01/07 13:53:16 [Debug] transport/internet: dialing to tcp:self.events.data.microsoft.com:443
2023/01/07 13:53:16 [Info] [4265182920] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > context canceled
2023/01/07 13:53:16 [Info] [918415802] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process response > read tcp 94.177.8.163:37698->13.69.109.131:443: read: connection reset by peer
2023/01/07 13:53:16 [Info] [918415802] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > io: read/write on closed pipe
2023/01/07 13:53:16 [Info] [3118200803] proxy/vless/inbound: firstLen = 1165
2023/01/07 13:53:16 [Info] [3118200803] proxy/vless/inbound: received request for tcp:safebrowsing.google.com:443
2023/01/07 13:53:16 [Info] [3118200803] app/dispatcher: taking detour [proxy] for [tcp:safebrowsing.google.com:443]
2023/01/07 13:53:16 [Info] [3118200803] proxy/freedom: opening connection to tcp:safebrowsing.google.com:443
2023/01/07 13:53:16 [Info] [3118200803] transport/internet/tcp: dialing TCP to tcp:safebrowsing.google.com:443
2023/01/07 13:53:16 [Debug] transport/internet: dialing to tcp:safebrowsing.google.com:443
2023/01/07 13:53:16 [Info] [1051677713] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > context canceled
2023/01/07 13:53:16 [Info] [3680046441] proxy/vless/inbound: firstLen = 1186
2023/01/07 13:53:16 [Info] [3680046441] proxy/vless/inbound: received request for tcp:btbtt16.com:443
2023/01/07 13:53:16 [Info] [3680046441] app/dispatcher: default route for tcp:btbtt16.com:443
2023/01/07 13:53:16 [Info] [3680046441] proxy/freedom: opening connection to tcp:btbtt16.com:443
2023/01/07 13:53:16 [Info] [3680046441] transport/internet/tcp: dialing TCP to tcp:btbtt16.com:443
2023/01/07 13:53:16 [Debug] transport/internet: dialing to tcp:btbtt16.com:443
2023/01/07 13:53:16 [Info] [3680046441] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process response > read tcp [2a0d:f302:118:9763::1]:60892->[2606:4700:3033::6815:2db5]:443: read: connection reset by peer
2023/01/07 13:53:16 [Info] [3680046441] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer response payload > io: read/write on closed pipe
2023/01/07 13:53:17 [Info] [3289130770] proxy/vless/inbound: firstLen = 1062
2023/01/07 13:53:17 [Info] [3289130770] proxy/vless/inbound: received request for tcp:self.events.data.microsoft.com:443
2023/01/07 13:53:17 [Info] [3289130770] app/dispatcher: taking detour [proxy] for [tcp:self.events.data.microsoft.com:443]
2023/01/07 13:53:17 [Info] [3289130770] proxy/freedom: opening connection to tcp:self.events.data.microsoft.com:443
2023/01/07 13:53:17 [Info] [3289130770] transport/internet/tcp: dialing TCP to tcp:self.events.data.microsoft.com:443
2023/01/07 13:53:17 [Debug] transport/internet: dialing to tcp:self.events.data.microsoft.com:443
2023/01/07 13:53:17 [Info] [3289130770] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process response > read tcp 94.177.8.163:37704->13.69.109.131:443: read: connection reset by peer
2023/01/07 13:53:17 [Info] [3289130770] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > io: read/write on closed pipe
2023/01/07 13:53:17 [Info] [3118200803] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > context canceled
2023/01/07 13:53:17 [Info] [2465045776] proxy/vless/inbound: firstLen = 1066
2023/01/07 13:53:17 [Info] [2465045776] proxy/vless/inbound: received request for tcp:self.events.data.microsoft.com:443
2023/01/07 13:53:17 [Info] [2465045776] app/dispatcher: taking detour [proxy] for [tcp:self.events.data.microsoft.com:443]
2023/01/07 13:53:17 [Info] [2465045776] proxy/freedom: opening connection to tcp:self.events.data.microsoft.com:443
2023/01/07 13:53:17 [Info] [2465045776] transport/internet/tcp: dialing TCP to tcp:self.events.data.microsoft.com:443
2023/01/07 13:53:17 [Debug] transport/internet: dialing to tcp:self.events.data.microsoft.com:443
2023/01/07 13:53:17 [Info] [2465045776] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process response > read tcp 94.177.8.163:37706->13.69.109.131:443: read: connection reset by peer
2023/01/07 13:53:17 [Info] [2465045776] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > io: read/write on closed pipe
2023/01/07 13:53:18 [Info] [1779846702] proxy/vless/inbound: firstLen = 1186
2023/01/07 13:53:18 [Info] [1779846702] proxy/vless/inbound: received request for tcp:self.events.data.microsoft.com:443
2023/01/07 13:53:18 [Info] [1779846702] app/dispatcher: taking detour [proxy] for [tcp:self.events.data.microsoft.com:443]
2023/01/07 13:53:18 [Info] [1779846702] proxy/freedom: opening connection to tcp:self.events.data.microsoft.com:443
2023/01/07 13:53:18 [Info] [1779846702] transport/internet/tcp: dialing TCP to tcp:self.events.data.microsoft.com:443
2023/01/07 13:53:18 [Debug] transport/internet: dialing to tcp:self.events.data.microsoft.com:443
2023/01/07 13:53:18 [Info] [3414396236] proxy/vless/inbound: firstLen = 1186
2023/01/07 13:53:18 [Info] [3414396236] proxy/vless/inbound: received request for tcp:self.events.data.microsoft.com:443
2023/01/07 13:53:18 [Info] [3414396236] app/dispatcher: taking detour [proxy] for [tcp:self.events.data.microsoft.com:443]
2023/01/07 13:53:18 [Info] [3414396236] proxy/freedom: opening connection to tcp:self.events.data.microsoft.com:443
2023/01/07 13:53:18 [Info] [3414396236] transport/internet/tcp: dialing TCP to tcp:self.events.data.microsoft.com:443
2023/01/07 13:53:18 [Debug] transport/internet: dialing to tcp:self.events.data.microsoft.com:443
2023/01/07 13:53:18 [Info] [1779846702] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process response > read tcp 94.177.8.163:37708->13.69.109.131:443: read: connection reset by peer
2023/01/07 13:53:18 [Info] [1779846702] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > io: read/write on closed pipe
2023/01/07 13:53:18 [Info] [3414396236] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process response > read tcp 94.177.8.163:37710->13.69.109.131:443: read: connection reset by peer
2023/01/07 13:53:18 [Info] [3414396236] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > io: read/write on closed pipe
2023/01/07 13:53:18 [Info] [2035487320] proxy/vless/inbound: firstLen = 1186
2023/01/07 13:53:18 [Info] [2035487320] proxy/vless/inbound: received request for tcp:safebrowsing.google.com:443
2023/01/07 13:53:18 [Info] [2035487320] app/dispatcher: taking detour [proxy] for [tcp:safebrowsing.google.com:443]
2023/01/07 13:53:18 [Info] [2035487320] proxy/freedom: opening connection to tcp:safebrowsing.google.com:443
2023/01/07 13:53:18 [Info] [2035487320] transport/internet/tcp: dialing TCP to tcp:safebrowsing.google.com:443
2023/01/07 13:53:18 [Debug] transport/internet: dialing to tcp:safebrowsing.google.com:443
2023/01/07 13:53:18 [Info] [694276591] proxy/vless/inbound: firstLen = 1154
2023/01/07 13:53:18 [Info] [694276591] proxy/vless/inbound: received request for tcp:btbtt16.com:443
2023/01/07 13:53:18 [Info] [884931322] proxy/vless/inbound: firstLen = 1186
2023/01/07 13:53:18 [Info] [884931322] proxy/vless/inbound: received request for tcp:www.googleapis.com:443
2023/01/07 13:53:18 [Info] [884931322] app/dispatcher: taking detour [proxy] for [tcp:www.googleapis.com:443]
2023/01/07 13:53:18 [Info] [884931322] proxy/freedom: opening connection to tcp:www.googleapis.com:443
2023/01/07 13:53:18 [Info] [884931322] transport/internet/tcp: dialing TCP to tcp:www.googleapis.com:443
2023/01/07 13:53:18 [Debug] transport/internet: dialing to tcp:www.googleapis.com:443
2023/01/07 13:53:18 [Info] [694276591] app/dispatcher: default route for tcp:btbtt16.com:443
2023/01/07 13:53:18 [Info] [694276591] proxy/freedom: opening connection to tcp:btbtt16.com:443
2023/01/07 13:53:18 [Info] [694276591] transport/internet/tcp: dialing TCP to tcp:btbtt16.com:443
2023/01/07 13:53:18 [Debug] transport/internet: dialing to tcp:btbtt16.com:443
2023/01/07 13:53:18 [Info] [694276591] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process response > read tcp [2a0d:f302:118:9763::1]:60906->[2606:4700:3033::6815:2db5]:443: read: connection reset by peer
2023/01/07 13:53:18 [Info] [694276591] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer response payload > io: read/write on closed pipe
2023/01/07 13:53:19 [Info] [2016730858] proxy/vless/inbound: firstLen = 1186
2023/01/07 13:53:19 [Info] [2016730858] proxy/vless/inbound: received request for tcp:self.events.data.microsoft.com:443
2023/01/07 13:53:19 [Info] [2016730858] app/dispatcher: taking detour [proxy] for [tcp:self.events.data.microsoft.com:443]
2023/01/07 13:53:19 [Info] [2016730858] proxy/freedom: opening connection to tcp:self.events.data.microsoft.com:443
2023/01/07 13:53:19 [Info] [2016730858] transport/internet/tcp: dialing TCP to tcp:self.events.data.microsoft.com:443
2023/01/07 13:53:19 [Debug] transport/internet: dialing to tcp:self.events.data.microsoft.com:443
2023/01/07 13:53:19 [Info] [2016730858] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process response > read tcp 94.177.8.163:37718->13.69.109.131:443: read: connection reset by peer
2023/01/07 13:53:19 [Info] [2016730858] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > io: read/write on closed pipe
2023/01/07 13:53:19 [Info] [589078451] proxy/vless/inbound: firstLen = 1012
2023/01/07 13:53:19 [Info] [589078451] proxy/vless/inbound: received request for tcp:btbtt16.com:443
2023/01/07 13:53:19 [Info] [589078451] app/dispatcher: default route for tcp:btbtt16.com:443
2023/01/07 13:53:19 [Info] [589078451] proxy/freedom: opening connection to tcp:btbtt16.com:443
2023/01/07 13:53:19 [Info] [589078451] transport/internet/tcp: dialing TCP to tcp:btbtt16.com:443
2023/01/07 13:53:19 [Debug] transport/internet: dialing to tcp:btbtt16.com:443
2023/01/07 13:53:19 [Info] [589078451] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process response > read tcp [2a0d:f302:118:9763::1]:60910->[2606:4700:3033::6815:2db5]:443: read: connection reset by peer
2023/01/07 13:53:19 [Info] [589078451] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer response payload > io: read/write on closed pipe
2023/01/07 13:53:19 [Info] [1000076510] proxy/vless/inbound: firstLen = 1000
2023/01/07 13:53:19 [Info] [1000076510] proxy/vless/inbound: received request for tcp:www.googleapis.com:443
2023/01/07 13:53:19 [Info] [1000076510] app/dispatcher: taking detour [proxy] for [tcp:www.googleapis.com:443]
2023/01/07 13:53:19 [Info] [1000076510] proxy/freedom: opening connection to tcp:www.googleapis.com:443
2023/01/07 13:53:19 [Info] [1000076510] transport/internet/tcp: dialing TCP to tcp:www.googleapis.com:443
2023/01/07 13:53:19 [Debug] transport/internet: dialing to tcp:www.googleapis.com:443
2023/01/07 13:53:19 [Info] [2261001964] proxy/vless/inbound: firstLen = 1024
2023/01/07 13:53:19 [Info] [2261001964] proxy/vless/inbound: received request for tcp:safebrowsing.google.com:443
2023/01/07 13:53:19 [Info] [2261001964] app/dispatcher: taking detour [proxy] for [tcp:safebrowsing.google.com:443]
2023/01/07 13:53:19 [Info] [2261001964] proxy/freedom: opening connection to tcp:safebrowsing.google.com:443
2023/01/07 13:53:19 [Info] [2261001964] transport/internet/tcp: dialing TCP to tcp:safebrowsing.google.com:443
2023/01/07 13:53:19 [Debug] transport/internet: dialing to tcp:safebrowsing.google.com:443
2023/01/07 13:53:19 [Info] [1332187637] proxy/vless/inbound: firstLen = 1186
2023/01/07 13:53:19 [Info] [1332187637] proxy/vless/inbound: received request for tcp:self.events.data.microsoft.com:443
2023/01/07 13:53:19 [Info] [1332187637] app/dispatcher: taking detour [proxy] for [tcp:self.events.data.microsoft.com:443]
2023/01/07 13:53:19 [Info] [1332187637] proxy/freedom: opening connection to tcp:self.events.data.microsoft.com:443
2023/01/07 13:53:19 [Info] [1332187637] transport/internet/tcp: dialing TCP to tcp:self.events.data.microsoft.com:443
2023/01/07 13:53:19 [Debug] transport/internet: dialing to tcp:self.events.data.microsoft.com:443
2023/01/07 13:53:19 [Info] [1332187637] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process response > read tcp 94.177.8.163:37726->13.69.109.131:443: read: connection reset by peer
2023/01/07 13:53:19 [Info] [1332187637] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > io: read/write on closed pipe
2023/01/07 13:53:19 [Info] [1321891942] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > context canceled
2023/01/07 13:53:19 [Info] [1321891942] app/proxyman/inbound: failed to close connection > tls: failed to send closeNotify alert (but connection was closed anyway): write unix /etc/xray/sock/xray_beta.sock->@: write: broken pipe
2023/01/07 13:53:19 [Info] [2035487320] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > context canceled
2023/01/07 13:53:19 [Info] [884931322] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > context canceled
2023/01/07 13:53:19 [Info] [4195644699] proxy/vless/inbound: firstLen = 1186
2023/01/07 13:53:19 [Info] [4195644699] proxy/vless/inbound: received request for tcp:self.events.data.microsoft.com:443
2023/01/07 13:53:19 [Info] [4195644699] app/dispatcher: taking detour [proxy] for [tcp:self.events.data.microsoft.com:443]
2023/01/07 13:53:19 [Info] [4195644699] proxy/freedom: opening connection to tcp:self.events.data.microsoft.com:443
2023/01/07 13:53:19 [Info] [4195644699] transport/internet/tcp: dialing TCP to tcp:self.events.data.microsoft.com:443
2023/01/07 13:53:19 [Debug] transport/internet: dialing to tcp:self.events.data.microsoft.com:443
2023/01/07 13:53:20 [Info] [4195644699] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process response > read tcp 94.177.8.163:37728->13.69.109.131:443: read: connection reset by peer
2023/01/07 13:53:20 [Info] [4195644699] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > io: read/write on closed pipe
2023/01/07 13:53:20 [Info] [1000076510] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > context canceled
2023/01/07 13:53:20 [Info] [2261001964] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > context canceled
2023/01/07 13:53:20 [Info] [3882497529] proxy/vless/inbound: firstLen = 1135
2023/01/07 13:53:20 [Info] [3882497529] proxy/vless/inbound: received request for tcp:mtalk.google.com:5228
2023/01/07 13:53:20 [Info] [3882497529] app/dispatcher: taking detour [proxy] for [tcp:mtalk.google.com:5228]
2023/01/07 13:53:20 [Info] [3882497529] proxy/freedom: opening connection to tcp:mtalk.google.com:5228
2023/01/07 13:53:20 [Info] [3882497529] transport/internet/tcp: dialing TCP to tcp:mtalk.google.com:5228
2023/01/07 13:53:20 [Debug] transport/internet: dialing to tcp:mtalk.google.com:5228
2023/01/07 13:53:20 [Info] [3882497529] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process response > read tcp [2a0d:f302:118:9763::1]:50458->[2a00:1450:4025:401::bc]:5228: read: connection reset by peer
2023/01/07 13:53:20 [Info] [3882497529] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer response payload > io: read/write on closed pipe
2023/01/07 13:53:21 [Info] [1278242488] proxy/vless/inbound: firstLen = 1186
2023/01/07 13:53:21 [Info] [1278242488] proxy/vless/inbound: received request for tcp:mtalk.google.com:5228
2023/01/07 13:53:21 [Info] [1278242488] app/dispatcher: taking detour [proxy] for [tcp:mtalk.google.com:5228]
2023/01/07 13:53:21 [Info] [1278242488] proxy/freedom: opening connection to tcp:mtalk.google.com:5228
2023/01/07 13:53:21 [Info] [1278242488] transport/internet/tcp: dialing TCP to tcp:mtalk.google.com:5228
2023/01/07 13:53:21 [Debug] transport/internet: dialing to tcp:mtalk.google.com:5228
2023/01/07 13:53:21 [Info] [1278242488] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process response > read tcp [2a0d:f302:118:9763::1]:50460->[2a00:1450:4025:401::bc]:5228: read: connection reset by peer
2023/01/07 13:53:21 [Info] [1278242488] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer response payload > io: read/write on closed pipe
2023/01/07 13:53:23 [Info] [460779558] proxy/vless/inbound: firstLen = 1166
2023/01/07 13:53:23 [Info] [460779558] proxy/vless/inbound: received request for tcp:www.apkmirror.com:443
2023/01/07 13:53:23 [Info] [460779558] app/dispatcher: default route for tcp:www.apkmirror.com:443
2023/01/07 13:53:23 [Info] [460779558] proxy/freedom: opening connection to tcp:www.apkmirror.com:443
2023/01/07 13:53:23 [Info] [460779558] transport/internet/tcp: dialing TCP to tcp:www.apkmirror.com:443
2023/01/07 13:53:23 [Debug] transport/internet: dialing to tcp:www.apkmirror.com:443
2023/01/07 13:53:23 [Info] [460779558] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process response > read tcp [2a0d:f302:118:9763::1]:41866->[2606:4700:1::6813:863a]:443: read: connection reset by peer
2023/01/07 13:53:23 [Info] [460779558] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer response payload > io: read/write on closed pipe
2023/01/07 13:53:24 [Info] [2772130779] proxy/vless/inbound: firstLen = 1151
2023/01/07 13:53:24 [Info] [2772130779] proxy/vless/inbound: received request for tcp:www.apkmirror.com:443
2023/01/07 13:53:24 [Info] [2772130779] app/dispatcher: default route for tcp:www.apkmirror.com:443
2023/01/07 13:53:24 [Info] [2772130779] proxy/freedom: opening connection to tcp:www.apkmirror.com:443
2023/01/07 13:53:24 [Info] [2772130779] transport/internet/tcp: dialing TCP to tcp:www.apkmirror.com:443
2023/01/07 13:53:24 [Debug] transport/internet: dialing to tcp:www.apkmirror.com:443
2023/01/07 13:53:24 [Info] [2772130779] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process response > read tcp [2a0d:f302:118:9763::1]:41868->[2606:4700:1::6813:863a]:443: read: connection reset by peer
2023/01/07 13:53:24 [Info] [2772130779] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer response payload > io: read/write on closed pipe
2023/01/07 13:53:24 [Info] [2914731643] proxy/vless/inbound: firstLen = 1186
2023/01/07 13:53:24 [Info] [2914731643] proxy/vless/inbound: received request for tcp:www.googleapis.com:443
2023/01/07 13:53:24 [Info] [2914731643] app/dispatcher: taking detour [proxy] for [tcp:www.googleapis.com:443]
2023/01/07 13:53:24 [Info] [2914731643] proxy/freedom: opening connection to tcp:www.googleapis.com:443
2023/01/07 13:53:24 [Info] [2914731643] transport/internet/tcp: dialing TCP to tcp:www.googleapis.com:443
2023/01/07 13:53:24 [Debug] transport/internet: dialing to tcp:www.googleapis.com:443
2023/01/07 13:53:25 [Info] [4035064720] proxy/vless/inbound: firstLen = 1099
2023/01/07 13:53:25 [Info] [4035064720] proxy/vless/inbound: received request for tcp:www.googleapis.com:443
2023/01/07 13:53:25 [Info] [4035064720] app/dispatcher: taking detour [proxy] for [tcp:www.googleapis.com:443]
2023/01/07 13:53:25 [Info] [4035064720] proxy/freedom: opening connection to tcp:www.googleapis.com:443
2023/01/07 13:53:25 [Info] [4035064720] transport/internet/tcp: dialing TCP to tcp:www.googleapis.com:443
2023/01/07 13:53:25 [Debug] transport/internet: dialing to tcp:www.googleapis.com:443
2023/01/07 13:53:26 [Info] [2914731643] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > context canceled
2023/01/07 13:53:26 [Info] [579576700] proxy/vless/inbound: firstLen = 1186
2023/01/07 13:53:26 [Info] [579576700] proxy/vless/inbound: received request for tcp:www.apkmirror.com:443
2023/01/07 13:53:26 [Info] [579576700] app/dispatcher: default route for tcp:www.apkmirror.com:443
2023/01/07 13:53:26 [Info] [579576700] proxy/freedom: opening connection to tcp:www.apkmirror.com:443
2023/01/07 13:53:26 [Info] [579576700] transport/internet/tcp: dialing TCP to tcp:www.apkmirror.com:443
2023/01/07 13:53:26 [Debug] transport/internet: dialing to tcp:www.apkmirror.com:443
2023/01/07 13:53:26 [Info] [579576700] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process response > read tcp [2a0d:f302:118:9763::1]:41874->[2606:4700:1::6813:863a]:443: read: connection reset by peer
2023/01/07 13:53:26 [Info] [579576700] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer response payload > io: read/write on closed pipe
2023/01/07 13:53:26 [Info] [1144783796] proxy/vless/inbound: firstLen = 1186
2023/01/07 13:53:26 [Info] [1144783796] proxy/vless/inbound: received request for tcp:update.googleapis.com:443
2023/01/07 13:53:26 [Info] [1144783796] app/dispatcher: taking detour [proxy] for [tcp:update.googleapis.com:443]
2023/01/07 13:53:26 [Info] [1144783796] proxy/freedom: opening connection to tcp:update.googleapis.com:443
2023/01/07 13:53:26 [Info] [1144783796] transport/internet/tcp: dialing TCP to tcp:update.googleapis.com:443
2023/01/07 13:53:26 [Debug] transport/internet: dialing to tcp:update.googleapis.com:443
2023/01/07 13:53:26 [Info] [2433536322] proxy/vless/inbound: firstLen = 1186
2023/01/07 13:53:26 [Info] [2433536322] proxy/vless/inbound: received request for tcp:clients4.google.com:443
2023/01/07 13:53:26 [Info] [2433536322] app/dispatcher: taking detour [proxy] for [tcp:clients4.google.com:443]
2023/01/07 13:53:26 [Info] [2433536322] proxy/freedom: opening connection to tcp:clients4.google.com:443
2023/01/07 13:53:26 [Info] [2433536322] transport/internet/tcp: dialing TCP to tcp:clients4.google.com:443
2023/01/07 13:53:26 [Debug] transport/internet: dialing to tcp:clients4.google.com:443
2023/01/07 13:53:26 [Info] [4035064720] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > context canceled
2023/01/07 13:53:27 [Info] [3931973742] proxy/vless/inbound: firstLen = 1186
2023/01/07 13:53:27 [Info] [3931973742] proxy/vless/inbound: received request for tcp:www.apkmirror.com:443
2023/01/07 13:53:27 [Info] [3931973742] app/dispatcher: default route for tcp:www.apkmirror.com:443
2023/01/07 13:53:27 [Info] [3931973742] proxy/freedom: opening connection to tcp:www.apkmirror.com:443
2023/01/07 13:53:27 [Info] [3931973742] transport/internet/tcp: dialing TCP to tcp:www.apkmirror.com:443
2023/01/07 13:53:27 [Debug] transport/internet: dialing to tcp:www.apkmirror.com:443
2023/01/07 13:53:27 [Info] [3931973742] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process response > read tcp [2a0d:f302:118:9763::1]:41880->[2606:4700:1::6813:863a]:443: read: connection reset by peer
2023/01/07 13:53:27 [Info] [3931973742] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer response payload > io: read/write on closed pipe
2023/01/07 13:53:27 [Info] [2797027340] proxy/vless/inbound: firstLen = 1186
2023/01/07 13:53:27 [Info] [2797027340] proxy/vless/inbound: received request for tcp:update.googleapis.com:443
2023/01/07 13:53:27 [Info] [2797027340] app/dispatcher: taking detour [proxy] for [tcp:update.googleapis.com:443]
2023/01/07 13:53:27 [Info] [2797027340] proxy/freedom: opening connection to tcp:update.googleapis.com:443
2023/01/07 13:53:27 [Info] [2797027340] transport/internet/tcp: dialing TCP to tcp:update.googleapis.com:443
2023/01/07 13:53:27 [Debug] transport/internet: dialing to tcp:update.googleapis.com:443
2023/01/07 13:53:27 [Info] [994048508] proxy/vless/inbound: firstLen = 1186
2023/01/07 13:53:27 [Info] [994048508] proxy/vless/inbound: received request for tcp:clients4.google.com:443
2023/01/07 13:53:27 [Info] [994048508] app/dispatcher: taking detour [proxy] for [tcp:clients4.google.com:443]
2023/01/07 13:53:27 [Info] [994048508] proxy/freedom: opening connection to tcp:clients4.google.com:443
2023/01/07 13:53:27 [Info] [994048508] transport/internet/tcp: dialing TCP to tcp:clients4.google.com:443
2023/01/07 13:53:27 [Debug] transport/internet: dialing to tcp:clients4.google.com:443
2023/01/07 13:53:27 [Info] [1144783796] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > context canceled
2023/01/07 13:53:27 [Info] [2433536322] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > context canceled
2023/01/07 13:53:28 [Info] [2797027340] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > context canceled
2023/01/07 13:53:28 [Info] [994048508] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > context canceled
2023/01/07 13:53:30 [Info] [1685952464] proxy/vless/inbound: firstLen = 1186
2023/01/07 13:53:30 [Info] [1685952464] proxy/vless/inbound: received request for tcp:www.bing.com:443
2023/01/07 13:53:30 [Info] [1685952464] app/dispatcher: taking detour [proxy] for [tcp:www.bing.com:443]
2023/01/07 13:53:30 [Info] [1685952464] proxy/freedom: opening connection to tcp:www.bing.com:443
2023/01/07 13:53:30 [Info] [1685952464] transport/internet/tcp: dialing TCP to tcp:www.bing.com:443
2023/01/07 13:53:30 [Debug] transport/internet: dialing to tcp:www.bing.com:443
2023/01/07 13:53:30 [Info] [1685952464] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process response > read tcp [2a0d:f302:118:9763::1]:50630->[2620:1ec:c11::200]:443: read: connection reset by peer
2023/01/07 13:53:30 [Info] [1685952464] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > io: read/write on closed pipe
2023/01/07 13:53:32 [Info] [3522142550] proxy/vless/inbound: firstLen = 1186
2023/01/07 13:53:32 [Info] [3522142550] proxy/vless/inbound: received request for tcp:www.bing.com:443
2023/01/07 13:53:32 [Info] [3522142550] app/dispatcher: taking detour [proxy] for [tcp:www.bing.com:443]
2023/01/07 13:53:32 [Info] [3522142550] proxy/freedom: opening connection to tcp:www.bing.com:443
2023/01/07 13:53:32 [Info] [3522142550] transport/internet/tcp: dialing TCP to tcp:www.bing.com:443
2023/01/07 13:53:32 [Debug] transport/internet: dialing to tcp:www.bing.com:443
2023/01/07 13:53:32 [Info] [3522142550] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process response > read tcp [2a0d:f302:118:9763::1]:50632->[2620:1ec:c11::200]:443: read: connection reset by peer
2023/01/07 13:53:32 [Info] [3522142550] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > io: read/write on closed pipe
2023/01/07 13:53:40 [Info] [104758425] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > context canceled
access.log
2023/01/07 13:52:18 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50820 accepted tcp:fd.api.iris.microsoft.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:18 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50821 accepted tcp:www.google.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:27 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50826 accepted tcp:clientservices.googleapis.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:27 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50830 accepted tcp:www.google.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:27 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50832 accepted tcp:www.google.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:27 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50836 accepted tcp:accounts.google.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:27 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50838 accepted tcp:www.googleapis.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:27 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50840 accepted tcp:www.google.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:27 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50842 accepted tcp:www.google.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:27 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50844 accepted tcp:clientservices.googleapis.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:28 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50847 accepted tcp:www.google.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:28 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50849 accepted tcp:www.google.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:28 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50837 accepted tcp:www.eff.org:443 [XRay_beta >> proxy] email: [email protected]
2023/01/07 13:52:28 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50852 accepted tcp:accounts.google.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:28 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50855 accepted tcp:www.googleapis.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:28 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50859 accepted tcp:www.google.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:28 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50857 accepted tcp:www.google.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:28 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50862 accepted tcp:www.google.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:28 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50863 accepted tcp:www.google.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:29 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50866 accepted tcp:www.google.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:29 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50867 accepted tcp:optimizationguide-pa.googleapis.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:29 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50869 accepted tcp:www.google.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:30 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50874 accepted tcp:mtalk.google.com:5228 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:30 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50875 accepted tcp:update.googleapis.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:30 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50877 accepted tcp:accounts.google.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:30 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50879 accepted tcp:www.eff.org:443 [XRay_beta >> proxy] email: [email protected]
2023/01/07 13:52:30 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50881 accepted tcp:www.google.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:30 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50883 accepted tcp:optimizationguide-pa.googleapis.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:30 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50885 accepted tcp:www.googleapis.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:30 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50871 accepted tcp:www.google.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:31 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50887 accepted tcp:mtalk.google.com:5228 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:31 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50889 accepted tcp:update.googleapis.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:31 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50891 accepted tcp:accounts.google.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:31 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50894 accepted tcp:www.googleapis.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:32 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50896 accepted tcp:www.google.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:33 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50898 accepted tcp:www.google.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:34 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50900 accepted tcp:accounts.google.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:35 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50903 accepted tcp:accounts.google.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:35 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50905 accepted tcp:www.googleapis.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:36 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50907 accepted tcp:www.googleapis.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:36 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50909 accepted tcp:github.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:38 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50912 accepted tcp:github.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:40 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50914 accepted tcp:optimizationguide-pa.googleapis.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:41 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50916 accepted tcp:optimizationguide-pa.googleapis.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:41 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50919 accepted tcp:www.googleapis.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:41 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50921 accepted tcp:github.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:42 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50935 accepted tcp:www.googleapis.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:42 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50942 accepted tcp:github.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:43 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50944 accepted tcp:github.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:44 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50947 accepted tcp:github.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:45 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50949 accepted tcp:accounts.google.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:45 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50951 accepted tcp:accounts.google.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:50 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50954 accepted tcp:github.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:51 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50957 accepted tcp:www.googleapis.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:52 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50959 accepted tcp:github.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:52 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50961 accepted tcp:www.googleapis.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:56 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50969 accepted tcp:safebrowsing.google.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:56 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50968 accepted tcp:hub.docker.com:443 [XRay_beta >> proxy] email: [email protected]
2023/01/07 13:52:57 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50971 accepted tcp:safebrowsing.google.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:58 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50979 accepted tcp:self.events.data.microsoft.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:58 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50978 accepted tcp:self.events.data.microsoft.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:58 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50980 accepted tcp:self.events.data.microsoft.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:52:58 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50977 accepted tcp:self.events.data.microsoft.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:00 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50987 accepted tcp:self.events.data.microsoft.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:00 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50985 accepted tcp:self.events.data.microsoft.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:00 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50986 accepted tcp:self.events.data.microsoft.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:00 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50989 accepted tcp:self.events.data.microsoft.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:00 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50990 accepted tcp:v10.events.data.microsoft.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:02 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50993 accepted tcp:mtalk.google.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:04 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50995 accepted tcp:mtalk.google.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:06 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:50998 accepted tcp:v10.events.data.microsoft.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:10 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51001 accepted tcp:accounts.google.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:10 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51003 accepted tcp:www.googleapis.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:11 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51006 accepted tcp:accounts.google.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:11 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51008 accepted tcp:www.googleapis.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:14 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51010 accepted tcp:www.googleapis.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:15 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51013 accepted tcp:www.googleapis.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:15 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51015 accepted tcp:v10.events.data.microsoft.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:15 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51017 accepted tcp:safebrowsing.google.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:15 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51019 accepted tcp:btbtt16.com:443 [XRay_beta >> proxy] email: [email protected]
2023/01/07 13:53:16 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51021 accepted tcp:self.events.data.microsoft.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:16 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51023 accepted tcp:safebrowsing.google.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:16 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51025 accepted tcp:btbtt16.com:443 [XRay_beta >> proxy] email: [email protected]
2023/01/07 13:53:17 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51027 accepted tcp:self.events.data.microsoft.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:17 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51029 accepted tcp:self.events.data.microsoft.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:18 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51032 accepted tcp:self.events.data.microsoft.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:18 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51034 accepted tcp:self.events.data.microsoft.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:18 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51136 accepted tcp:safebrowsing.google.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:18 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51138 accepted tcp:www.googleapis.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:18 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51140 accepted tcp:btbtt16.com:443 [XRay_beta >> proxy] email: [email protected]
2023/01/07 13:53:19 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51142 accepted tcp:self.events.data.microsoft.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:19 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51144 accepted tcp:btbtt16.com:443 [XRay_beta >> proxy] email: [email protected]
2023/01/07 13:53:19 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51148 accepted tcp:www.googleapis.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:19 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51146 accepted tcp:safebrowsing.google.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:19 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51150 accepted tcp:self.events.data.microsoft.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:19 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51152 accepted tcp:self.events.data.microsoft.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:20 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51154 accepted tcp:mtalk.google.com:5228 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:21 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51157 accepted tcp:mtalk.google.com:5228 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:23 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51159 accepted tcp:www.apkmirror.com:443 [XRay_beta >> proxy] email: [email protected]
2023/01/07 13:53:24 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51162 accepted tcp:www.apkmirror.com:443 [XRay_beta >> proxy] email: [email protected]
2023/01/07 13:53:24 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51164 accepted tcp:www.googleapis.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:25 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51166 accepted tcp:www.googleapis.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:26 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51168 accepted tcp:www.apkmirror.com:443 [XRay_beta >> proxy] email: [email protected]
2023/01/07 13:53:26 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51171 accepted tcp:update.googleapis.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:26 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51172 accepted tcp:clients4.google.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:27 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51174 accepted tcp:www.apkmirror.com:443 [XRay_beta >> proxy] email: [email protected]
2023/01/07 13:53:27 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51177 accepted tcp:update.googleapis.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:27 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51179 accepted tcp:clients4.google.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:30 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51185 accepted tcp:www.bing.com:443 [XRay_beta -> proxy] email: [email protected]
2023/01/07 13:53:32 [2408:8239:3e02:e4b2:3562:3d09:6229:3be8]:51188 accepted tcp:www.bing.com:443 [XRay_beta -> proxy] email: [email protected]
1.7.1版本已修复该问题,感谢~
测试Caddy SNI 分流没有修复,还是不支持 PROXY protocol 传入。
可否发pre-release供测试?
action里面有下载呢
You should try new strategies, do thus:
if [ ! -d Xray-core ]
then
git clone https://github.com/XTLS/Xray-core.git --recursive
fi
cd Xray-core
echo "overwrite any change in code file"
git reset --hard origin/main
echo "prepare to pull latest xray code"
git pull
echo "prepare to compile..."
go build -o xray -trimpath -ldflags "-s -w -buildid=" ./main
if [ -f xray ]
then
echo "prepare to pkill xray"
if [ -f run_xray.sh ]
then
pkill xray
else
systemctl stop xray
fi
echo "prepare to overlap xray binary file"
cp xray ..
#if [ $? -ne 0 ]
while [ $? -ne 0 ]
#then
do
pkill xray
rm ../xray
echo "remove xray"
cp xray ..
#fi
done
cd ..
echo "prepare to start xray"
if [ -f run_xray.sh ]
then
./run_xray.sh &
else
systemctl start xray
fi
#/data/data/com.termux/files/home/xray/run_xray.sh &
else
echo "Compile failed"
fi
我这里测试当前 pre-release 的 1.7.1 版本不正常,Chrome 提示:协议不受支持,客户端和服务器不支持一般 SSL 协议版本或加密套件。 但服务端使用从 action 里下载的 https://github.com/XTLS/Xray-core/commit/8c0d3c02570a73cd55f4f61025701bad7cb63c08 是正常的,确认修复~
@PillarsZhang R佬才修,没有release版本,所以得用action里编译生成的版本。
试了替换掉在用的二进制,感觉比现有的略慢耶,不过至少是通了
感谢你提交的详细错误报告,请使用 v1.7.2+ https://github.com/XTLS/Xray-core/releases/tag/v1.7.2
试了替换掉在用的二进制,感觉比现有的略慢耶
(是错觉)