Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for JumpOutbound (0.13 sec)

  1. tools/istio-iptables/pkg/log/command.go

    	Identifier string
    	Comment    string
    }
    
    var (
    	JumpInbound             = Command{"JumpInbound", "direct all traffic through ISTIO_INBOUND chain"}
    	JumpOutbound            = Command{"JumpOutbound", "direct all traffic through ISTIO_OUTBOUND chain"}
    	ExcludeInboundPort      = Command{"ExcludeInboundPort", "exclude inbound port from capture"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 15 16:33:57 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/capture/testdata/logging.golden

    iptables -t nat -A ISTIO_IN_REDIRECT -p tcp -j REDIRECT --to-ports 15006
    iptables -t nat -A OUTPUT -p tcp -j NFLOG --nflog-prefix "JumpOutbound" --nflog-group 1337 --nflog-size 20
    iptables -t nat -A OUTPUT -p tcp -j ISTIO_OUTPUT
    iptables -t nat -A ISTIO_OUTPUT -o lo -s 127.0.0.6/32 -j RETURN
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/capture/run.go

    	if redirectDNS {
    		// Jump from OUTPUT chain to ISTIOOUTPUT chain for all UDP traffic
    		cfg.ruleBuilder.AppendRule(iptableslog.JumpOutbound, constants.OUTPUT, constants.NAT, "-p", constants.UDP, "-j", constants.ISTIOOUTPUT)
    		cfg.ruleBuilder.AppendRule(iptableslog.JumpOutbound, constants.OUTPUT, constants.RAW, "-p", constants.UDP, "-j", constants.ISTIOOUTPUT)
    
    		HandleDNSUDP(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
Back to top