dns: reduce lookup timeout and retry attempts

For NET-77.

Change-Id: I35922e33aca9eca1b05c232e5a6191fb94997840
diff --git a/dns/client.go b/dns/client.go
index 42fa03c..5f3f9d8 100644
--- a/dns/client.go
+++ b/dns/client.go
@@ -39,8 +39,8 @@
 	servers:    []tcpip.FullAddress{{Addr: tcpip.Address([]byte{8, 8, 8, 8}), Port: 53}},
 	search:     []string{},
 	ndots:      100,
-	timeout:    time.Duration(10) * time.Second,
-	attempts:   10,
+	timeout:    3 * time.Second,
+	attempts:   3,
 	rotate:     true,
 	unknownOpt: false,
 	lookup:     []string{},