Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,806 for tproxy (0.13 sec)

  1. tools/istio-iptables/pkg/capture/testdata/tproxy.golden

    iptables -t mangle -A ISTIO_DIVERT -j MARK --set-mark 1337
    iptables -t mangle -A ISTIO_DIVERT -j ACCEPT
    iptables -t mangle -A ISTIO_TPROXY ! -d 127.0.0.1/32 -p tcp -j TPROXY --tproxy-mark 1337/0xffffffff --on-port 15006
    iptables -t mangle -A PREROUTING -p tcp -j ISTIO_INBOUND
    iptables -t mangle -A ISTIO_INBOUND -p tcp -m conntrack --ctstate RELATED,ESTABLISHED -j ISTIO_DIVERT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. cni/pkg/plugin/testdata/tproxy.txt.golden

    * mangle
    -N ISTIO_DIVERT
    -N ISTIO_TPROXY
    -N ISTIO_INBOUND
    -A ISTIO_DIVERT -j MARK --set-mark 1337
    -A ISTIO_DIVERT -j ACCEPT
    -A ISTIO_TPROXY ! -d 127.0.0.1/32 -p tcp -j TPROXY --tproxy-mark 1337/0xffffffff --on-port 15006
    -A PREROUTING -p tcp -j ISTIO_INBOUND
    -A ISTIO_INBOUND -p tcp --dport 15020 -j RETURN
    -A ISTIO_INBOUND -p tcp --dport 15021 -j RETURN
    -A ISTIO_INBOUND -p tcp --dport 15090 -j RETURN
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 22:54:20 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/capture/testdata/inbound-ports-tproxy.golden

    iptables -t mangle -A ISTIO_DIVERT -j MARK --set-mark 1337
    iptables -t mangle -A ISTIO_DIVERT -j ACCEPT
    iptables -t mangle -A ISTIO_TPROXY ! -d 127.0.0.1/32 -p tcp -j TPROXY --tproxy-mark 1337/0xffffffff --on-port 15006
    iptables -t mangle -A PREROUTING -p tcp -j ISTIO_INBOUND
    iptables -t mangle -A ISTIO_INBOUND -p tcp --dport 32000 -m conntrack --ctstate RELATED,ESTABLISHED -j ISTIO_DIVERT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inject/hello-tproxy.yaml.injected

              valueFrom:
                resourceFieldRef:
                  divisor: "0"
                  resource: limits.cpu
            - name: PROXY_CONFIG
              value: |
                {"interceptionMode":"TPROXY"}
            - name: ISTIO_META_POD_PORTS
              value: |-
                [
                    {"name":"http","containerPort":80}
                ]
            - name: ISTIO_META_APP_CONTAINERS
              value: hello
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. cni/pkg/plugin/testdata/custom-uid-tproxy.txt.golden

    * mangle
    -N ISTIO_DIVERT
    -N ISTIO_TPROXY
    -N ISTIO_INBOUND
    -A ISTIO_DIVERT -j MARK --set-mark 1337
    -A ISTIO_DIVERT -j ACCEPT
    -A ISTIO_TPROXY ! -d 127.0.0.1/32 -p tcp -j TPROXY --tproxy-mark 1337/0xffffffff --on-port 15006
    -A PREROUTING -p tcp -j ISTIO_INBOUND
    -A ISTIO_INBOUND -p tcp --dport 15020 -j RETURN
    -A ISTIO_INBOUND -p tcp --dport 15021 -j RETURN
    -A ISTIO_INBOUND -p tcp --dport 15090 -j RETURN
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 26 16:39:28 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/capture/testdata/inbound-ports-wildcard-tproxy.golden

    iptables -t mangle -A ISTIO_DIVERT -j MARK --set-mark 1337
    iptables -t mangle -A ISTIO_DIVERT -j ACCEPT
    iptables -t mangle -A ISTIO_TPROXY ! -d 127.0.0.1/32 -p tcp -j TPROXY --tproxy-mark 1337/0xffffffff --on-port 15006
    iptables -t mangle -A PREROUTING -p tcp -j ISTIO_INBOUND
    iptables -t mangle -A ISTIO_INBOUND -p tcp -m conntrack --ctstate RELATED,ESTABLISHED -j ISTIO_DIVERT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inject/proxy-override-runas.yaml.tproxy.injected

            prometheus.io/port: "15020"
            prometheus.io/scrape: "true"
            proxy.istio.io/overrides: '{"containers":[{"name":"istio-proxy","resources":{},"securityContext":{"runAsUser":1234,"runAsGroup":4321}}]}'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. istioctl/pkg/kubeinject/testdata/mesh-config.yaml

      # If "TPROXY", use iptables TPROXY to redirect to Envoy.
      # The "TPROXY" mode preserves both the source and destination IP
      # addresses and ports, so that they can be used for advanced filtering
      # and manipulation.
      # The "TPROXY" mode also configures the sidecar to run with the
      # CAP_NET_ADMIN capability, which is required to use TPROXY.
      #interceptionMode: REDIRECT
      #
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. tools/packaging/common/sidecar.env

    # The "REDIRECT" mode loses source addresses during redirection.
    # If "TPROXY", use iptables TPROXY to redirect to Envoy.
    # The "TPROXY" mode preserves both the source and destination IP
    # addresses and ports, so that they can be used for advanced filtering
    # and manipulation.
    # The "TPROXY" mode also configures the sidecar to run with the
    # CAP_NET_ADMIN capability, which is required to use TPROXY.
    # If not set, defaults to "REDIRECT".
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 18:02:42 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/constants/constants.go

    	INPUT:       {},
    	OUTPUT:      {},
    	FORWARD:     {},
    	PREROUTING:  {},
    	POSTROUTING: {},
    }
    
    // Constants used for generating iptables commands
    const (
    	TCP = "tcp"
    	UDP = "udp"
    
    	TPROXY   = "TPROXY"
    	RETURN   = "RETURN"
    	ACCEPT   = "ACCEPT"
    	REDIRECT = "REDIRECT"
    	MARK     = "MARK"
    	CT       = "CT"
    	DROP     = "DROP"
    )
    
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 01:42:30 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top