kenaito-dns/config/dns_server.go

12 lines
198 B
Go
Raw Normal View History

2024-11-07 23:54:55 +08:00
package config
/*
* @Description DNS服务配置
* @Author www.odboy.cn
* @Date 20241108
*/
const (
2024-11-12 20:34:02 +08:00
DNSServerPort = ":53"
ForwardDNServer = "8.8.8.8:53" // Google的公共DNS服务器
2024-11-07 23:54:55 +08:00
)