Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for masquerading (0.21 sec)

  1. pkg/proxy/nftables/proxier.go

    	clusterIPsCheckChain = "cluster-ips-check"
    
    	// LoadBalancerSourceRanges handling
    	firewallIPsMap     = "firewall-ips"
    	firewallCheckChain = "firewall-check"
    
    	// masquerading
    	markMasqChain     = "mark-for-masquerade"
    	masqueradingChain = "masquerading"
    )
    
    // NewDualStackProxier creates a MetaProxier instance, with IPv4 and IPv6 proxies.
    func NewDualStackProxier(
    	ctx context.Context,
    	syncPeriod time.Duration,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/proxier.go

    			// results in the service VIP being picked as the source IP to reach
    			// a VIP. This leads to a connection from VIP:<random port> to
    			// VIP:<service port>.
    			// Always masquerading OUTPUT (node-originating) traffic with a VIP
    			// source ip and service port destination fixes the outgoing connections.
    			proxier.natRules.Write(
    				args, "src,dst",
    				"-j", string(kubeMarkMasqChain))
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  3. pkg/proxy/iptables/proxier.go

    	proxier.natRules.Write(
    		"-A", string(kubePostroutingChain),
    		"-m", "mark", "!", "--mark", fmt.Sprintf("%s/%s", proxier.masqueradeMark, proxier.masqueradeMark),
    		"-j", "RETURN",
    	)
    	// Clear the mark to avoid re-masquerading if the packet re-traverses the network stack.
    	proxier.natRules.Write(
    		"-A", string(kubePostroutingChain),
    		"-j", "MARK", "--xor-mark", proxier.masqueradeMark,
    	)
    	masqRule := []string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.3.md

    * Incremental improvements to kubelet e2e tests ([#24426](https://github.com/kubernetes/kubernetes/pull/24426), [@pwittrock](https://github.com/pwittrock))
    * Bridge off-cluster traffic into services by masquerading. ([#24429](https://github.com/kubernetes/kubernetes/pull/24429), [@cjcullen](https://github.com/cjcullen))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
Back to top