Skip to content

Commit e9d50ca

Browse files
Merge pull request #19982 from pravisankar/fix-egress-dns-ttl
Egress DNS: Get lowest TTL from the dns resolution chain
2 parents 4839513 + abcc7f6 commit e9d50ca

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

pkg/network/common/dns.go

+7-7
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ func (d *DNS) getIPsAndMinTTL(domain string) ([]net.IP, time.Duration, error) {
142142
dialServer = net.JoinHostPort(server, d.port)
143143
}
144144
c := new(dns.Client)
145-
c.Timeout = 2 * time.Second
145+
c.Timeout = 5 * time.Second
146146
in, _, err := c.Exchange(msg, dialServer)
147147
if err != nil {
148148
return nil, defaultTTL, err
@@ -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

pkg/network/common/dns_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ func TestAddDNS(t *testing.T) {
5050
domainName: "example.com",
5151
dnsResolverOutput: "example.com. 200 IN CNAME foo.example.com.\nfoo.example.com. 600 IN A 10.11.12.13",
5252
ips: []net.IP{ip},
53-
ttl: 600,
53+
ttl: 200,
5454
expectFailure: false,
5555
},
5656
{

0 commit comments

Comments
 (0)