docs: disable Encrypted ClientHello to avoid affecting traffic split (#717)

This commit is contained in:
sommio 2024-12-19 07:46:39 +00:00 committed by GitHub
parent 5451e8742b
commit 359b22376d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 6 additions and 2 deletions

View File

@ -201,6 +201,7 @@ dns {
} }
routing { routing {
request { request {
qtype(https) -> reject
fallback: alidns fallback: alidns
} }
response { response {

View File

@ -121,7 +121,8 @@ dns {
# DNS request type # DNS request type
qtype(a, aaaa) -> alidns qtype(a, aaaa) -> alidns
qtype(cname) -> googledns qtype(cname) -> googledns
# disable ECH to avoid affecting traffic split
qtype(https) -> reject
# If no match, fallback to this upstream. # If no match, fallback to this upstream.
fallback: asis fallback: asis
} }

View File

@ -195,6 +195,7 @@ dns {
} }
routing { routing {
request { request {
qtype(https) -> reject
fallback: alidns fallback: alidns
} }
response { response {

View File

@ -120,7 +120,8 @@ dns {
# DNS 查询类型 # DNS 查询类型
qtype(a, aaaa) -> alidns qtype(a, aaaa) -> alidns
qtype(cname) -> googledns qtype(cname) -> googledns
# 禁用 ECH 避免影响分流
qtype(https) -> reject
# fallback 意为 default。 # fallback 意为 default。
# 如果上面的都不匹配,使用这个 upstream。 # 如果上面的都不匹配,使用这个 upstream。
fallback: asis fallback: asis