Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for JumpInbound (0.14 sec)

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

    package log
    
    type Command struct {
    	// Short identifier that shows up in NFLOG output. Must be less than 64 characters
    	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"}
    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/run.go

    				"--tproxy-mark", cfg.cfg.InboundTProxyMark+"/0xffffffff", "--on-port", cfg.cfg.InboundCapturePort)
    			table = constants.MANGLE
    		} else {
    			table = constants.NAT
    		}
    		cfg.ruleBuilder.AppendRule(iptableslog.JumpInbound, constants.PREROUTING, table, "-p", constants.TCP,
    			"-j", constants.ISTIOINBOUND)
    
    		if cfg.cfg.InboundPortsInclude == "*" {
    			// Apply any user-specified port exclusions.
    			if cfg.cfg.InboundPortsExclude != "" {
    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