Created
August 16, 2022 14:34
-
-
Save Sen/466d0fb023653fc1eabe7b249d2cecdb to your computer and use it in GitHub Desktop.
dns setting on mosdns
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
log: | |
level: error | |
file: '' | |
plugin: | |
- tag: main_server | |
type: server | |
args: | |
entry: | |
- _no_ecs | |
- lazy_cache | |
- _prefer_ipv4 | |
- _single_flight | |
- main_sequence | |
server: | |
- protocol: udp | |
addr: '127.0.0.1:5335' | |
- protocol: tcp | |
addr: '127.0.0.1:5335' | |
- tag: main_sequence | |
type: sequence | |
args: | |
exec: | |
- if: | |
- query_is_ad_domain | |
exec: | |
- _block_with_nxdomain | |
- _end | |
- if: | |
- query_is_local_domain | |
- '!_query_is_common' | |
exec: | |
- forward_local | |
- _end | |
- if: | |
- query_is_non_local_domain | |
exec: | |
- forward_remote | |
- _end | |
- primary: | |
- forward_local | |
- if: | |
- '!response_has_local_ip' | |
exec: | |
- _drop_response | |
secondary: | |
- forward_remote | |
fast_fallback: 150 | |
always_standby: true | |
- tag: forward_local | |
type: fast_forward | |
args: | |
upstream: | |
#- addr: ${{ ./dns0.sh }} | |
#- addr: ${{ ./dns1.sh }} | |
- addr: 'tls://dns.alidns.com' | |
- addr: 'https://doh.pub/dns-query' | |
- addr: 'https://223.5.5.5/dns-query' | |
- addr: 'https://223.6.6.6/dns-query' | |
- tag: forward_remote | |
type: fast_forward | |
args: | |
upstream: | |
- addr: 'https://dns.google/dns-query' | |
- addr: 'https://1.1.1.1/dns-query' | |
- addr: 'tls://8.8.4.4' | |
idle_timeout: 60 | |
- addr: 'tls://101.101.101.101' | |
idle_timeout: 30 | |
- tag: lazy_cache | |
type: cache | |
args: | |
size: 512000 | |
lazy_cache_ttl: 259200 | |
- tag: query_is_local_domain | |
type: query_matcher | |
args: | |
domain: | |
- 'ext:./geosite.dat:cn' | |
- tag: query_is_non_local_domain | |
type: query_matcher | |
args: | |
domain: | |
- 'ext:./geosite.dat:geolocation-!cn' | |
- tag: response_has_local_ip | |
type: response_matcher | |
args: | |
ip: | |
- 'ext:./geoip.dat:cn' | |
- tag: query_is_ad_domain | |
type: query_matcher | |
args: | |
domain: | |
- 'ext:./serverlist.txt' | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment