my coredns config
Corefile edited
43 lines 706 B view raw
1firecracker:53 { 2 hosts { 3 172.16.0.1 br.firecracker 4 172.16.0.2 vm1.firecracker 5 fallthrough 6 } 7 8 loadbalance 9} 10 11internal:53 { 12 hosts { 13 172.16.0.1 br.internal 14 172.16.0.2 vm1.internal 15 fallthrough 16 } 17 18 loadbalance 19} 20 21ts.net:53 { 22 # Forward non-internal queries (e.g., to Google DNS) 23 forward . 100.100.100.100 24 # Log and errors for debugging 25 log 26 errors 27 health 28} 29 30.:53 { 31 # Forward non-internal queries (e.g., to Google DNS) 32 forward . 8.8.8.8 8.8.4.4 1.1.1.1 1.0.0.1 { 33 max_fails 3 34 expire 10s 35 health_check 5s 36 policy round_robin 37 except ts.net 38 } 39 # Log and errors for debugging 40 log 41 errors 42 health 43}