comandy/dns.go

31 lines
568 B
Go
Raw Permalink Normal View History

2024-04-19 01:31:15 +09:00
package main
import "github.com/fumiama/terasu/dns"
func init() {
2024-05-02 18:53:32 +09:00
dns.IPv4Servers.Add(&dns.DNSConfig{
Servers: map[string][]string{
"dot.360.cn": {
"101.198.192.33:853",
"112.65.69.15:853",
"101.226.4.6:853",
"218.30.118.6:853",
"123.125.81.6:853",
"140.207.198.6:853",
},
2024-04-19 01:31:15 +09:00
},
})
2024-05-02 18:53:32 +09:00
dns.IPv6Servers.Add(&dns.DNSConfig{
Servers: map[string][]string{
"dot.360.cn": {
"101.198.192.33:853",
"112.65.69.15:853",
"101.226.4.6:853",
"218.30.118.6:853",
"123.125.81.6:853",
"140.207.198.6:853",
},
2024-04-19 01:31:15 +09:00
},
})
}