Skip to content

Commit 509d8b9

Browse files
author
Ravi Sankar Penta
committed
Egress DNS: Get lowest TTL from the dns resolution chain
- Currently, we consider minTTL as lowest TTL among all available dns 'A' records and TTL for CNAME recs are ignored. This change will get lowest TTL for the entire chain irrespective of the dns record type.
1 parent 3611001 commit 509d8b9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

pkg/network/common/dns.go

+6-6
Original file line numberDiff line numberDiff line change
@@ -153,20 +153,20 @@ func (d *DNS) getIPsAndMinTTL(domain string) ([]net.IP, time.Duration, error) {
153153

154154
if in != nil && len(in.Answer) > 0 {
155155
for _, a := range in.Answer {
156+
if !ttlSet || a.Header().Ttl < minTTL {
157+
minTTL = a.Header().Ttl
158+
ttlSet = true
159+
}
160+
156161
switch t := a.(type) {
157162
case *dns.A:
158163
ips = append(ips, t.A)
159-
160-
if !ttlSet || t.Hdr.Ttl < minTTL {
161-
minTTL = t.Hdr.Ttl
162-
ttlSet = true
163-
}
164164
}
165165
}
166166
}
167167
}
168168

169-
if !ttlSet {
169+
if !ttlSet || (len(ips) == 0) {
170170
return nil, defaultTTL, fmt.Errorf("IPv4 addr not found for domain: %q, nameservers: %v", domain, d.nameservers)
171171
}
172172

0 commit comments

Comments
 (0)