Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for postrouting (0.27 sec)

  1. cni/pkg/iptables/testdata/hostprobe_ipv6.golden

    iptables -t nat -N ISTIO_POSTRT
    iptables -t nat -A POSTROUTING -j ISTIO_POSTRT
    iptables -t nat -A ISTIO_POSTRT -m owner --socket-exists -p tcp -m set --match-set istio-inpod-probes-v4 dst -j SNAT --to-source 169.254.7.127
    ip6tables -t nat -N ISTIO_POSTRT
    ip6tables -t nat -A POSTROUTING -j ISTIO_POSTRT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 473 bytes
    - Viewed (0)
  2. cni/pkg/iptables/testdata/hostprobe.golden

    iptables -t nat -N ISTIO_POSTRT
    iptables -t nat -A POSTROUTING -j ISTIO_POSTRT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 222 bytes
    - Viewed (0)
  3. pkg/util/iptables/save_restore_test.go

    		-A OUTPUT -m addrtype --dst-type LOCAL -m comment --comment "handle service NodePorts; NOTE: this must be the last rule in the chain" -j KUBE-NODEPORT-HOST
    		-A POSTROUTING -s 10.246.1.0/24 ! -o cbr0 -j MASQUERADE
    		-A POSTROUTING -s 10.0.2.15 -d 10.0.2.15 -m comment --comment "handle pod connecting to self" -j MASQUERADE
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. tools/istio-iptables/pkg/constants/constants.go

    const (
    	INPUT       = "INPUT"
    	OUTPUT      = "OUTPUT"
    	FORWARD     = "FORWARD"
    	PREROUTING  = "PREROUTING"
    	POSTROUTING = "POSTROUTING"
    )
    
    var BuiltInChainsMap = map[string]struct{}{
    	INPUT:       {},
    	OUTPUT:      {},
    	FORWARD:     {},
    	PREROUTING:  {},
    	POSTROUTING: {},
    }
    
    // Constants used for generating iptables commands
    const (
    	TCP = "tcp"
    	UDP = "udp"
    
    	TPROXY   = "TPROXY"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 01:42:30 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. pkg/proxy/nftables/README.md

                         +-------+        +--------+
                             ^                |
          +------------+     |   +---------+  v      +-------------+
          | prerouting |-[*]-+-->| forward |--+-[*]->| postrouting |
          +------------+         +---------+         +-------------+
                ^                                           |
     -  -  -  - | -  -  -  -  -  -  -  -  -  -  -  -  -  -  |  -  -  -  -
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:37:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top