Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for srcIP (0.03 sec)

  1. pkg/kubelet/prober/scale_test.go

    // from the same process, same as in the Kubelet, and targets the same IP:port to verify
    // that the ephemeral port is not exhausted.
    
    // The default port range on a normal Linux system has 28321 free ephemeral ports per
    // tuple srcIP,srcPort:dstIP:dstPort:Proto: /proc/sys/net/ipv4/ip_local_port_range 32768 60999
    // 1 pods x 600 containers/pod x 1 probes/container x 1 req/sec = 600 req/sec
    // 600 req/sec x 59 sec = 35400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 16:33:01 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/httplog/httplog.go

    		// This can cause apiserver to crash with unrecoverable fatal error.
    		// More info about concurrent read and write for maps: https://golang.org/doc/go1.6#runtime
    		"userAgent", rl.userAgent,
    		"audit-ID", auditID,
    		"srcIP", rl.req.RemoteAddr,
    	}
    	// Lock for accessing addedKeyValuePairs and addedInfo
    	rl.mutex.Lock()
    	defer rl.mutex.Unlock()
    	keysAndValues = append(keysAndValues, rl.addedKeyValuePairs...)
    
    	if rl.hijacked {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 10:10:35 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  3. cni/pkg/iptables/iptables.go

    	//
    	// We do this so we can exempt this traffic from ztunnel capture/proxy - otherwise both kube-proxy (legit)
    	// and kubelet (skippable) traffic would have the same srcip once they got to the pod, and would be indistinguishable.
    
    	// CLI: -t mangle -A ISTIO_PRERT -s 169.254.7.127 -p tcp -m tcp --dport <PROBEPORT> -j ACCEPT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top