-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ACL里添加- reject(geosite:cn)后无法测速 #905
Comments
v2fly domain list 是把 www.gstatic.com 列入 cn 域名的。 这个域名有中国的备案并且有中国境内的 CDN (由 北京谷翔信息技术有限公司 运营)。 实践中通常把有中国境内 CDN 的 Google 域名列入 cn 域名, 用于在客户端侧做境内外分流加速并节省代理流量。 因此这不能算 bug, 如果只是要解决你遇到的问题, 在 ACL 里面, |
我在xray里同样的写法 就没有出问题。是不是两个协议用的geosite.dat不同啊。我在hy这边还回去了。换成了geoip:cn |
xray 支持客户端分流。 如果客户端都把 cn 流量 direct 了, 那服务端 block cn 流量也不会出问题。 |
哦哦,我的意思是xray那边我也用geosite在服务端block cn流量,测速就没有问题。所以我觉得可能是两边用的dat文件规则判定不同。 |
能把你的 xray 客户端和服务端配置文件(可以删掉 inbounds 和 outbounds 里的鉴权信息)发来吗? 我们可以测试看看和 hysteria 的判定上有哪些差异。 |
客户端用的是同一个Clash规则文件。所以不用发了。服务端xray的路由
在clash verge客户端点击xray(reality)节点测速 也就是说路由规则没有名中,任何阻止或分流的规则,也就是在xray的geosite里www.gstatic.com 不是 CN 和HY的区别就是这把,HY2里就和你说的一样,这个算是CN,于是在ACL里的block规则就block掉了,导致客户端点HY2节点测速就error。 就像你说的,确实可能不算是bug。我也不知道Xray那边用的库是基于哪里的。我以及改了。HY2配置,让geosite:CN的走warp出站了。 |
我试验了一下, 使用你提供的配置文件节选编写一个完整的 xray 配置文件, 启动了 xray 点这里, 展开过长的配置文件{
"log": {
"loglevel": "warn"
},
"inbounds": [
{
"protocol": "socks",
"listen": "127.0.0.1",
"port": 21081,
"settings": {
"udpEnabled": false
}
}
],
"outbounds": [
{
"protocol": "freedom",
"settings": {
"domainStrategy": "AsIs"
},
"tag": "direct"
},
{
"protocol": "blackhole",
"settings": {
"response": {
"type": "http"
}
},
"tag": "block"
}
],
"dns": {
"servers": [
"8.8.8.8",
"8.8.4.4"
]
},
"routing": {
"strategy": "rules",
"settings": {
"domainStrategy": "IPIfNonMatch",
"domainMatcher": "mph",
"rules": [
{
"type": "field",
"domain": [
"geosite:cn"
],
"outboundTag": "block"
},
{
"type": "field",
"protocol": ["bittorrent"],
"outboundTag": "block"
},
{
"type": "field",
"inboundTag": ["socks-in"],
"outboundTag": "direct"
},
{
"type":"field",
"outboundTag": "direct",
"domain":[
"geosite:openai",
"geosite:twitter",
"geosite:reddit"
]
}
]
}
}
} 我仅修改了 xray 不会自动下载/更新 geosite.dat, 这个操作通常由包管理或者一键脚本提供, 我检查了下看来大部分实现和 Hysteria 一样是从 https://github.com/Loyalsoldier/v2ray-rules-dat/releases/latest/download/geosite.dat 下载的 geosite.dat。 我启动了 xray, 并发起 socks5 请求, 可以看到基于您提供的路由规则, 我怀疑你那里没有被 block 是以下原因:
|
辛苦你了。我使用的是teddysun的docker部署的Xray。晚一点我发下完整配置。block的出站是有配的。晚一点我整理下发 |
我不用 docker, 我搜索了一下找到了这个 dockerfile 这里面的 geosite.dat 是从 https://github.com/v2fly/domain-list-community/releases/latest/download/dlc.dat 下载的, |
感谢你仔细的排查。OK 那就是域名库的问题而不是代理程序的问题了。 暂时我先把cn都用warp出站了。后面我在想想怎么做更合理。再次感谢! |
日志
客户端clash测速就是error,手机上的应用也是
The text was updated successfully, but these errors were encountered: