60 lines
1.9 KiB
YAML
60 lines
1.9 KiB
YAML
################ DNS Plugins #################
|
||
plugins:
|
||
|
||
- tag: mikrotik-one
|
||
type: forward
|
||
args:
|
||
concurrent: 1
|
||
upstreams:
|
||
- addr: "udp://10.248.0.1"
|
||
|
||
|
||
- tag: cn-dns
|
||
type: forward
|
||
args:
|
||
concurrent: 6
|
||
upstreams:
|
||
- addr: "udp://202.96.128.86"
|
||
- addr: "udp://202.96.128.166"
|
||
- addr: "udp://119.29.29.29"
|
||
- addr: "udp://223.5.5.5"
|
||
- addr: "udp://114.114.114.114"
|
||
- addr: "udp://180.76.76.76"
|
||
|
||
|
||
- tag: jp-dns
|
||
type: forward
|
||
args:
|
||
concurrent: 4 # 同步向 3 条上游并发查询
|
||
upstreams:
|
||
- addr: "tls://1dot1dot1dot1.cloudflare-dns.com"
|
||
dial_addr: "1.1.1.1"
|
||
enable_pipeline: true
|
||
- addr: "tls://1dot1dot1dot1.cloudflare-dns.com"
|
||
dial_addr: "1.0.0.1"
|
||
enable_pipeline: true
|
||
- addr: "tls://dns.google"
|
||
dial_addr: "8.8.8.8"
|
||
enable_pipeline: true
|
||
- addr: "tls://dns.google"
|
||
dial_addr: "8.8.4.4"
|
||
enable_pipeline: true
|
||
|
||
# MikroTik Address List 插件 - 性能优化配置
|
||
- tag: mikrotik_amazon
|
||
type: mikrotik_addresslist
|
||
args:
|
||
host: "10.248.0.1"
|
||
port: 9728
|
||
username: "admin"
|
||
password: "szn0s!nw@pwd()"
|
||
use_tls: false
|
||
timeout: 3 # 🚀 优化:减少连接超时到3秒
|
||
address_list4: "gfw"
|
||
mask4: 24 # 🚀 优化:使用/24网段掩码,减少地址条目数量
|
||
comment: "auto-amazon"
|
||
timeout_addr: 43200 # 🚀 优化:减少到12小时,提高缓存效率
|
||
cache_ttl: 7200 # 🚀 优化:2小时缓存,平衡性能和准确性
|
||
verify_add: false # 🚀 优化:关闭验证,显著提升性能
|
||
add_all_ips: true # 🚀 优化:启用多IP支持
|
||
max_ips: 10 # 🚀 优化:限制每域名最多10个IP |