Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 952 for dns2 (0.15 sec)

  1. pkg/kubelet/network/dns/dns_windows.go

    		klog.ErrorS(err, "Cannot get host DNS Configuration.")
    		return nil, err
    	}
    
    	// If we get here, the resolverConfig == hostResolvConf and that is not actually a file, so
    	// it means to use the host settings.
    	// Get host DNS settings
    	hostDNS, err := getDNSServerList()
    	if err != nil {
    		err = fmt.Errorf("Could not get the host's DNS Server List. Error: %w", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 21 22:21:57 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. tools/istio-clean-iptables/pkg/config/config.go

    		c.ProxyGID = c.ProxyUID
    	}
    	// Lookup DNS nameservers. We only do this if DNS is enabled in case of some obscure theoretical
    	// case where reading /etc/resolv.conf could fail.
    	// If capture all DNS option is enabled, we don't need to read from the dns resolve conf. All
    	// traffic to port 53 will be captured.
    	if c.RedirectDNS && !c.CaptureAllDNS {
    		dnsConfig, err := dns.ClientConfigFromFile("/etc/resolv.conf")
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 01 04:37:36 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. pkg/test/echo/common/scheme/scheme.go

    	// This is similar to `openssl s_client`
    	// Response data is not returned; only information about the TLS handshake.
    	TLS Instance = "tls"
    	// DNS does a DNS query and reports back the results.
    	DNS Instance = "dns"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 17:19:22 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  4. tests/integration/security/egress_gateway_origination_test.go

    				Certificate: file.AsStringOrFail(t, path.Join(env.IstioSrc, "tests/testdata/certs/dns/cert-chain.pem")),
    				PrivateKey:  file.AsStringOrFail(t, path.Join(env.IstioSrc, "tests/testdata/certs/dns/key.pem")),
    				CaCert:      file.AsStringOrFail(t, path.Join(env.IstioSrc, "tests/testdata/certs/dns/root-cert.pem")),
    			}, false)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  5. src/net/lookup.go

    }
    
    // errMalformedDNSRecordsDetail is the DNSError detail which is returned when a Resolver.Lookup...
    // method receives DNS records which contain invalid DNS names. This may be returned alongside
    // results which have had the malformed records filtered out.
    var errMalformedDNSRecordsDetail = "DNS response contained records which contain invalid names"
    
    // dial makes a new connection to the provided server (which must be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/ConnectionListenerTest.kt

          ),
        )
        server!!.enqueue(MockResponse())
        val dns = FakeDns()
        dns["fakeurl"] = client.dns.lookup(server!!.hostName)
        dns["www.fakeurl"] = client.dns.lookup(server!!.hostName)
        client =
          client.newBuilder()
            .dns(dns)
            .build()
        val call =
          client.newCall(
            Request.Builder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. docs/federation/lookup/README.md

    ## Get started
    
    ### 1. Prerequisites
    
    Install MinIO - [MinIO Quickstart Guide](https://min.io/docs/minio/linux/index.html#quickstart-for-linux).
    
    ### 2. Run MinIO in federated mode
    
    Bucket lookup from DNS federation requires two dependencies
    
    - etcd (for bucket DNS service records)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 4K bytes
    - Viewed (0)
  8. manifests/addons/dashboards/ztunnel.libsonnet

          panels.timeSeries.bytesRate('Bytes Transmitted', queries.bytes, 'Bytes sent and recieved per instance'),
          panels.timeSeries.dns('DNS Request', queries.dns, 'DNS queries recieved per instance'),
        ]),
        row.new('Operations')
        + row.withPanels([
          panels.timeSeries.base(
            'XDS', queries.ztunnelXdsConnections, |||
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. pkg/proxy/nftables/helpers_test.go

    	# svc2
    	add chain ip testing service-42NFTM6N-ns2/svc2/tcp/p80
    	add rule ip testing service-42NFTM6N-ns2/svc2/tcp/p80 ip daddr 172.30.0.42 tcp dport 80 ip saddr != 10.0.0.0/8 jump mark-for-masquerade
    	add rule ip testing service-42NFTM6N-ns2/svc2/tcp/p80 numgen random mod 1 vmap { 0 : goto endpoint-SGOXE6O3-ns2/svc2/tcp/p80__10.180.0.2/80 }
    	add chain ip testing external-42NFTM6N-ns2/svc2/tcp/p80
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  10. pkg/kubelet/network/dns/dns_test.go

    		}
    		options[i].DNS, options[i].DNSSearch = dnsConfig.Servers, dnsConfig.Searches
    	}
    	t.Logf("nameservers %+v", options[1].DNS)
    	if len(options[0].DNS) != 1 {
    		t.Errorf("expected cluster nameserver only, got %+v", options[0].DNS)
    	} else if options[0].DNS[0] != clusterNS {
    		t.Errorf("expected nameserver %s, got %v", clusterNS, options[0].DNS[0])
    	}
    	expLength := len(options[1].DNSSearch) + 3
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
Back to top