Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for IPV4 (0.04 sec)

  1. src/net/netip/netip_test.go

    		// Single number. Some parsers accept this as an IPv4 address in
    		// big-endian uint32 form, but we don't.
    		"1234",
    		// IPv4 with a zone specifier
    		"1.2.3.4%eth0",
    		// IPv4 field must have at least one digit
    		".1.2.3",
    		"1.2.3.",
    		"1..2.3",
    		// IPv4 address too long
    		"1.2.3.4.5",
    		// IPv4 in dotted octal form
    		"0300.0250.0214.0377",
    		// IPv4 in dotted hex form
    		"0xc0.0xa8.0x8c.0xff",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_test.go

    	}{
    		{
    			name: "internal k8s service with ipv4 & ipv6 endpoint for Kubernetes TCP protocol",
    			instances: []*model.ServiceInstance{
    				buildServiceInstance(svc, "10.10.10.10"),
    				buildServiceInstance(svc, "fd00:10:244:1::11"),
    			},
    			services:    []*model.Service{svc},
    			listenersOn: "0.0.0.0_9999",
    		},
    		{
    			name: "external service with ipv4 & ipv6 endpoints for Kubernetes auto protocol",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // Defines which IP family to use for single stack or the order of IP families for dual-stack.
      // Valid list items are "IPv4", "IPv6".
      // More info: https://kubernetes.io/docs/concepts/services-networking/dual-stack/#services
      repeated string ipFamilies = 29;
    
      // Controls whether Services are configured to use IPv4, IPv6, or both. Valid options
      // are PreferDualStack, RequireDualStack, and SingleStack.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  4. src/net/dnsclient_unix_test.go

    	// a few A records, no AAAA records
    	{
    		"ipv4.google.com.",
    		[]string{
    			"nameserver 8.8.8.8",
    			"nameserver 2001:4860:4860::8888",
    		},
    		nil,
    		true, false,
    	},
    	{
    		"ipv4.google.com",
    		[]string{
    			"domain golang.org",
    			"nameserver 2001:4860:4860::8888",
    			"nameserver 8.8.8.8",
    		},
    		nil,
    		true, false,
    	},
    	{
    		"ipv4.google.com",
    		[]string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/proxier.go

    const (
    	sysctlVSConnTrack             = "net/ipv4/vs/conntrack"
    	sysctlConnReuse               = "net/ipv4/vs/conn_reuse_mode"
    	sysctlExpireNoDestConn        = "net/ipv4/vs/expire_nodest_conn"
    	sysctlExpireQuiescentTemplate = "net/ipv4/vs/expire_quiescent_template"
    	sysctlForward                 = "net/ipv4/ip_forward"
    	sysctlArpIgnore               = "net/ipv4/conf/all/arp_ignore"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  6. pkg/apis/networking/validation/validation_test.go

    				},
    			},
    		},
    		"good-iprange-ipv4-ipv6": {
    			expectedErrors: 0,
    			ipRange: &networking.ServiceCIDR{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "test-name",
    				},
    				Spec: networking.ServiceCIDRSpec{
    					CIDRs: []string{"192.168.0.0/24", "fd00:1234::/64"},
    				},
    			},
    		},
    		"not-iprange-ipv4": {
    			expectedErrors: 1,
    			ipRange: &networking.ServiceCIDR{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  7. pkg/controller/endpoint/endpoints_controller_test.go

    					ClusterIP: "10.0.0.1",
    				},
    			},
    			expectedEndpointFamily: ipv4,
    		},
    		{
    			name:       "v4 service, in a dual stack cluster",
    			ipFamilies: ipv4ipv6,
    			service: v1.Service{
    				Spec: v1.ServiceSpec{
    					ClusterIP: "10.0.0.1",
    				},
    			},
    			expectedEndpointFamily: ipv4,
    		},
    		{
    			name:       "v4 service, in a dual stack ipv6-primary cluster",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  8. pkg/kubelet/nodestatus/setters_test.go

    				{Type: v1.NodeInternalIP, Address: "10.1.1.1"},
    				{Type: v1.NodeHostName, Address: testKubeletHostname},
    			},
    			shouldError: false,
    		},
    		{
    			name:   "Dual-stack cloud, IPv4 first, request IPv4",
    			nodeIP: netutils.ParseIPSloppy("0.0.0.0"),
    			nodeAddresses: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "10.1.1.1"},
    				{Type: v1.NodeInternalIP, Address: "fc01:1234::5678"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. pkg/proxy/iptables/proxier.go

    	// performance over iptables debuggability
    	largeClusterEndpointsThreshold = 1000
    )
    
    const sysctlRouteLocalnet = "net/ipv4/conf/all/route_localnet"
    const sysctlNFConntrackTCPBeLiberal = "net/netfilter/nf_conntrack_tcp_be_liberal"
    
    // NewDualStackProxier creates a MetaProxier instance, with IPv4 and IPv6 proxies.
    func NewDualStackProxier(
    	ctx context.Context,
    	ipt [2]utiliptables.Interface,
    	sysctl utilsysctl.Interface,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  10. pkg/proxy/nftables/proxier.go

    ) (proxy.Provider, error) {
    	// Create an ipv4 instance of the single-stack proxier
    	ipv4Proxier, err := NewProxier(ctx, v1.IPv4Protocol,
    		syncPeriod, minSyncPeriod, masqueradeAll, masqueradeBit,
    		localDetectors[v1.IPv4Protocol], hostname, nodeIPs[v1.IPv4Protocol],
    		recorder, healthzServer, nodePortAddresses, initOnly)
    	if err != nil {
    		return nil, fmt.Errorf("unable to create ipv4 proxier: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
Back to top