Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for IPV4 (0.06 sec)

  1. pilot/pkg/networking/core/cluster_test.go

    		expectedAddr    string
    		expectedPort    uint32
    	}{
    		// ipv4 use cases
    		{
    			name:            "ipv4 host: defaultEndpoint set to 127.0.0.1:7073",
    			proxy:           ipv4Proxy,
    			defaultEndpoint: "127.0.0.1:7073",
    			expectedAddr:    "127.0.0.1",
    			expectedPort:    7073,
    		},
    		{
    			name:            "ipv4 host: defaultEndpoint set to [::1]:7073",
    			proxy:           ipv4Proxy,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_builder_test.go

    		expectedFamily cluster.Cluster_DnsLookupFamily
    	}{
    		{
    			name:           "all ipv4, dual stack disabled",
    			clusterName:    "foo",
    			discovery:      cluster.Cluster_STRICT_DNS,
    			proxy:          getProxy(),
    			dualStack:      false,
    			expectedFamily: cluster.Cluster_V4_ONLY,
    		},
    		{
    			name:           "all ipv4, dual stack enabled",
    			clusterName:    "foo",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers_test.go

    		expected []metav1.TableRow
    	}{
    		{
    			// Test name, IPv4 only.
    			ccc: networking.ServiceCIDR{
    				ObjectMeta: metav1.ObjectMeta{Name: "test1"},
    				Spec: networking.ServiceCIDRSpec{
    					CIDRs: []string{ipv4CIDR},
    				},
    			},
    			options: printers.GenerateOptions{},
    			// Columns: Name, IPv4, IPv6, Age.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods_test.go

    			podIPs: []v1.PodIP{
    				{IP: "192.168.0.1"},
    				{IP: "2001:db8::2"},
    			},
    		},
    		{
    			// by default the cluster prefers IPv4
    			name: "CRI dual-stack PodIPs override NodeAddresses prefer IPv4",
    			nodeAddresses: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "10.0.0.1"},
    				{Type: v1.NodeInternalIP, Address: "fd01::1234"},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  5. src/crypto/x509/x509_test.go

    			IssuingCertificateURL: []string{"http://crt.example.com/ca1.crt"},
    
    			DNSNames:       []string{"test.example.com"},
    			EmailAddresses: []string{"******@****.***"},
    			IPAddresses:    []net.IP{net.IPv4(127, 0, 0, 1).To4(), net.ParseIP("2001:4860:0:2001::68")},
    			URIs:           []*url.URL{parseURI("https://foo.com/wibble#foo")},
    
    			PolicyIdentifiers:       []asn1.ObjectIdentifier{[]int{1, 2, 3}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    	var buffer bytes.Buffer
    	buffer.WriteString(managedHostsHeader)
    	buffer.WriteString("127.0.0.1\tlocalhost\n")                      // ipv4 localhost
    	buffer.WriteString("::1\tlocalhost ip6-localhost ip6-loopback\n") // ipv6 localhost
    	buffer.WriteString("fe00::0\tip6-localnet\n")
    	buffer.WriteString("fe00::0\tip6-mcastprefix\n")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

      echo "Configuring IP firewall rules"
    
      # Do not consider loopback addresses as martian source or destination while
      # routing. This enables the use of 127/8 for local routing purposes.
      sysctl -w net.ipv4.conf.all.route_localnet=1
    
      # The GCI image has host firewall which drop most inbound/forwarded packets.
      # We need to add rules to accept all TCP/UDP/ICMP/SCTP packets.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top