Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for postrouting (0.19 sec)

  1. pkg/proxy/nftables/proxier_test.go

    		add chain ip kube-proxy nat-output { type nat hook output priority -100 ; }
    		add rule ip kube-proxy nat-output jump services
    		add chain ip kube-proxy nat-postrouting { type nat hook postrouting priority 100 ; }
    		add rule ip kube-proxy nat-postrouting jump masquerading
    		add chain ip kube-proxy nat-prerouting { type nat hook prerouting priority -100 ; }
    		add rule ip kube-proxy nat-prerouting jump services
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

      iptables -w -t nat -F || true
    
      if [[ "${NON_MASQUERADE_CIDR:-}" == "0.0.0.0/0" ]]; then
        echo "Add rules for ip masquerade"
        iptables -w -t nat -N IP-MASQ
        iptables -w -t nat -A POSTROUTING -m comment --comment "ip-masq: ensure nat POSTROUTING directs all non-LOCAL destination traffic to our custom IP-MASQ chain" -m addrtype ! --dst-type LOCAL -j IP-MASQ
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/proxier_test.go

    	ipset := ipsettest.NewFake(testIPSetVersion)
    	fp := NewFakeProxier(ctx, ipt, ipvs, ipset, nil, nil, v1.IPv4Protocol)
    	fp.createAndLinkKubeChain()
    	expectedNATChains := `:KUBE-SERVICES - [0:0]
    :KUBE-POSTROUTING - [0:0]
    :KUBE-NODE-PORT - [0:0]
    :KUBE-LOAD-BALANCER - [0:0]
    :KUBE-MARK-MASQ - [0:0]
    `
    	expectedFilterChains := `:KUBE-FORWARD - [0:0]
    :KUBE-NODE-PORT - [0:0]
    :KUBE-PROXY-FIREWALL - [0:0]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
Back to top