Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Egress DNS: Get lowest TTL from the dns resolution chain #19982

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions pkg/network/common/dns.go
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ func (d *DNS) getIPsAndMinTTL(domain string) ([]net.IP, time.Duration, error) {
dialServer = net.JoinHostPort(server, d.port)
}
c := new(dns.Client)
c.Timeout = 2 * time.Second
c.Timeout = 5 * time.Second
in, _, err := c.Exchange(msg, dialServer)
if err != nil {
return nil, defaultTTL, err
Expand All @@ -153,20 +153,20 @@ func (d *DNS) getIPsAndMinTTL(domain string) ([]net.IP, time.Duration, error) {

if in != nil && len(in.Answer) > 0 {
for _, a := range in.Answer {
if !ttlSet || a.Header().Ttl < minTTL {
minTTL = a.Header().Ttl
ttlSet = true
}

switch t := a.(type) {
case *dns.A:
ips = append(ips, t.A)

if !ttlSet || t.Hdr.Ttl < minTTL {
minTTL = t.Hdr.Ttl
ttlSet = true
}
}
}
}
}

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

Expand Down
2 changes: 1 addition & 1 deletion pkg/network/common/dns_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func TestAddDNS(t *testing.T) {
domainName: "example.com",
dnsResolverOutput: "example.com. 200 IN CNAME foo.example.com.\nfoo.example.com. 600 IN A 10.11.12.13",
ips: []net.IP{ip},
ttl: 600,
ttl: 200,
expectFailure: false,
},
{
Expand Down