Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for cidr2 (0.02 sec)

  1. cni/pkg/iptables/iptables_linux.go

    	// Set up netlink routes for localhost
    	cidrs := []string{"0.0.0.0/0"}
    	if cfg.EnableIPv6 {
    		// IPv6 may be enabled, but only partially
    		v, err := ReadSysctl(ipv6DisabledLo)
    		if v != "1" {
    			// If we got an error, we will proceed. Maybe it will work anyways
    			if err != nil {
    				log.Warnf("attempted to read %q got error: %v; attemping to continue", ipv6DisabledLo, err)
    			}
    			cidrs = append(cidrs, "0::0/0")
    		} else {
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Sep 06 09:44:28 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/networking/v1alpha1/generated.proto

    // allocations when the MultiCIDRRangeAllocator is enabled (see the config for
    // kube-controller-manager).  A cluster may have any number of ClusterCIDR
    // resources, all of which will be considered when allocating a CIDR for a
    // Node.  A ClusterCIDR is eligible to be used for a given Node when the node
    // selector matches the node in question and has free CIDRs to allocate.  In
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. cmd/net.go

    	for _, addr := range addrs {
    		ipList.Add(addr)
    	}
    
    	return ipList, err
    }
    
    // sortIPs - sort ips based on higher octets.
    // The logic to sort by last octet is implemented to
    // prefer CIDRs with higher octets, this in-turn skips the
    // localhost/loopback address to be not preferred as the
    // first ip on the list. Subsequently this list helps us print
    // a user friendly message with appropriate values.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Jun 19 14:34:00 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top