2fact

Results 4 comments of 2fact

> 只要打开主开关,xray分流模式,mosdns接管整个dns,淘宝加载就特别慢,分流规则除了上面一些流媒体,底下就是禁quic,然后先代理掉geosite:geolocation-!cn,然后cn的domain和ip直连 淘宝iOS客户端有些地方会用QUIC,如果你的分流规则里屏蔽QUIC在China直连之前,同时淘宝客户端fallback不及时或者实效,就会卡住甚至没响应。如果是这种情况,把QUIC移到China下面就能解决。

域名解析策略为 IPIfNonMatch 时并不会生效,因为生成的 global.json 里路由规则最后总有一个 default,总能匹配上,所以并不会触发 IP 解析再匹配。 临时解决方法把策略改成 IPOnDemand 应该就可以。不过会导致额外解析成本。 Xray 好像没有计划增加像 Sing-Box 类似的指定默认路由的功能,所以要修复得把这条 default 规则去掉,确保 default outbound 在第一个。 ```json5 { "type": "field", "_flag": "default", "outboundTag": "default", "network": "tcp,udp"...

Thanks for the continuous improvements! Found one issue that the SOCKS outbound can't be configured to skip authentication. While `users` list is not empty, Xray will always authenticate: https://xtls.github.io/config/outbounds/socks.html#serverobject. Suppose...

> > Found one issue that the SOCKS outbound can't be configured to skip authentication. While `users` list is not empty, Xray will always authenticate: https://xtls.github.io/config/outbounds/socks.html#serverobject. > > Try #391...