implemented forwarding
This commit is contained in:
parent
62b22b9ad7
commit
b079e6988f
@ -1,15 +1,12 @@
|
|||||||
zones:
|
zones:
|
||||||
- zone: example.com.
|
- zone: example.com.
|
||||||
file: zonefile.txt
|
file: zonefile.txt
|
||||||
acl:
|
|
||||||
- vpn
|
|
||||||
|
|
||||||
acl:
|
acl:
|
||||||
- name: vpn
|
- name: vpn
|
||||||
cidr: 10.0.0.0/24
|
cidr: 10.0.0.0/24
|
||||||
|
|
||||||
forward:
|
forward:
|
||||||
alc:
|
acl:
|
||||||
- vpn
|
- vpn
|
||||||
|
server: "8.8.8.8:53"
|
||||||
|
|
||||||
|
47
coolDns.go
47
coolDns.go
@ -29,7 +29,8 @@ type config struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type configForward struct {
|
type configForward struct {
|
||||||
ACL []string `yaml:"acl"`
|
ACL []string `yaml:"acl"`
|
||||||
|
Server string `yaml:"server"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type configACL struct {
|
type configACL struct {
|
||||||
@ -145,6 +146,7 @@ func createACLList(config []configACL) (map[string]*net.IPNet, error) {
|
|||||||
|
|
||||||
func createServer(zones []zone, config config, aclList map[string]*net.IPNet) *dns.ServeMux {
|
func createServer(zones []zone, config config, aclList map[string]*net.IPNet) *dns.ServeMux {
|
||||||
srv := dns.NewServeMux()
|
srv := dns.NewServeMux()
|
||||||
|
c := new(dns.Client)
|
||||||
|
|
||||||
for _, z := range zones {
|
for _, z := range zones {
|
||||||
srv.HandleFunc(z.zone, func(w dns.ResponseWriter, r *dns.Msg) {
|
srv.HandleFunc(z.zone, func(w dns.ResponseWriter, r *dns.Msg) {
|
||||||
@ -248,6 +250,49 @@ func createServer(zones []zone, config config, aclList map[string]*net.IPNet) *d
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Handle any other request
|
||||||
|
srv.HandleFunc(".", func(w dns.ResponseWriter, r *dns.Msg) {
|
||||||
|
remoteIP, _, err := net.SplitHostPort(w.RemoteAddr().String())
|
||||||
|
ip := net.ParseIP(remoteIP)
|
||||||
|
|
||||||
|
if err != nil && ip != nil {
|
||||||
|
log.Printf("Faild to parse remote IP WTF? :%s", err.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check ACL rules
|
||||||
|
if len(config.Forward.ACL) != 0 {
|
||||||
|
passed := false
|
||||||
|
for _, rule := range config.Forward.ACL {
|
||||||
|
|
||||||
|
if aclList[rule].Contains(ip) {
|
||||||
|
passed = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if !passed {
|
||||||
|
m := new(dns.Msg)
|
||||||
|
m.SetReply(r)
|
||||||
|
m.SetRcode(r, dns.RcodeRefused)
|
||||||
|
w.WriteMsg(m)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Forward request
|
||||||
|
in, _, err := c.Exchange(r, config.Forward.Server)
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
m := new(dns.Msg)
|
||||||
|
m.SetReply(r)
|
||||||
|
m.SetRcode(r, dns.RcodeServerFailure)
|
||||||
|
w.WriteMsg(m)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
w.WriteMsg(in)
|
||||||
|
})
|
||||||
|
|
||||||
return srv
|
return srv
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user