diff --git a/README.md b/README.md index 63c00f1..2f1a4f8 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ * 支持多Hosts文件 + 自定义Hosts、通配符Hosts; * 支持配置文件自动重载,支持监听TCP/UDP端口; * 支持DNS查询缓存(IP乱序、TTL倒计时、ECS); -* 支持禁用IPv6解析; +* 支持屏蔽指定查询类型; * 支持将查询结果中的IPv4地址添加至IPSet。 ## DNS查询请求处理流程 diff --git a/ts-dns-full.toml b/ts-dns-full.toml index b81dc82..e153f69 100644 --- a/ts-dns-full.toml +++ b/ts-dns-full.toml @@ -5,7 +5,7 @@ listen = ":53/udp" # 监听端口,支持指定tcp/udp,不指定时默认同 gfwlist = "gfwlist.txt" # gfwlist文件路径,release包中已预下载。官方地址:https://raw.githubusercontent.com/gfwlist/gfwlist/master/gfwlist.txt gfwlist_b64 = true # 是否使用base64解码gfwlist文件,默认为true cnip = "cnip.txt" # 中国ip网段列表,用于辅助域名分组 -disable_ipv6 = true # 禁用IPv6地址解析,默认为false +disable_qtypes = ["AAAA", "HTTPS"] # 屏蔽IPv6/HTTPS查询 hosts_files = ["/etc/hosts"] # hosts文件路径,支持多hosts [hosts] # 自定义域名映射