We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
对TCP4/6(DNS)的必要性有一些疑问。 TCP检查用HTTP 204code,UDP用DNS检查能否提升一点检查效率,特别是节点较多的情况,每次检查都有几百条连接。
建议取消TCP4/6(DNS)检查,可以少量优化性能,但不多,该建议优先级较低。
The text was updated successfully, but these errors were encountered:
Thanks for opening this issue!
Sorry, something went wrong.
@Mitsuhaxy 或许可以启发式探活,节点延时越高则本次触发探活概率越低,每次每个类型最多触发50个节点的探活
在引入新的DNS上游类型后,是否考虑重新设计节点检测方式,建议设置三种检测类型: 一、TCP检测,用于判断普通TCP流量走向 二、UDP检测,用于判断普通UDP流量走向(或许可以使用STUN检测,允许优先使用FULLCONE NAT类型的节点) 三、DNS检测,同时检测DoUDP、DoTCP、DoH、DoT、DoQ、DoH3,用于判断DNS服务器可用性
关于启发式探活或许设置为ln(delay)*delay,单位为秒 节点A:延迟50ms,下次探测时间为ln50*50=195.60s 节点B:延迟120ms,下次探测时间为ln120*120=574.50s 节点C:延迟230ms,下次探测时间为ln230*230=1250.75s
ln(delay)*delay
ln50*50=195.60s
ln120*120=574.50s
ln230*230=1250.75s
No branches or pull requests
Improvement Suggestion
对TCP4/6(DNS)的必要性有一些疑问。
TCP检查用HTTP 204code,UDP用DNS检查能否提升一点检查效率,特别是节点较多的情况,每次检查都有几百条连接。
Potential Benefits
建议取消TCP4/6(DNS)检查,可以少量优化性能,但不多,该建议优先级较低。
The text was updated successfully, but these errors were encountered: