mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-04 21:57:44 +03:00
Improve error message on DNSSEC failure
This commit is contained in:
parent
0f78684e5f
commit
70311614a0
1 changed files with 6 additions and 2 deletions
|
@ -569,8 +569,12 @@ func (proxy *Proxy) processIncomingQuery(serverInfo *ServerInfo, clientProto str
|
|||
}
|
||||
}
|
||||
if rcode := Rcode(response); rcode == dns.RcodeServerFailure { // SERVFAIL
|
||||
dlog.Infof("Server [%v] returned temporary error code [%v] -- Upstream server may be experiencing connectivity issues", serverInfo.Name, rcode)
|
||||
serverInfo.noticeFailure(proxy)
|
||||
if pluginsState.dnssec {
|
||||
dlog.Debug("A response had an invalid DNSSEC signature")
|
||||
} else {
|
||||
dlog.Infof("Server [%v] returned temporary error code SERVFAIL -- Invalid DNSSEC signature received or server may be experiencing connectivity issues", serverInfo.Name)
|
||||
serverInfo.noticeFailure(proxy)
|
||||
}
|
||||
} else {
|
||||
serverInfo.noticeSuccess(proxy)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue