Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AppendRuleV6 (0.18 sec)

  1. tools/istio-iptables/pkg/capture/run.go

    		cfg.ruleBuilder.AppendRuleV6(iptableslog.UndefinedCommand, constants.ISTIOOUTPUT, constants.NAT, "-d", cidr.String(), "-j", constants.RETURN)
    	}
    
    	cfg.handleOutboundPortsInclude()
    
    	cfg.handleOutboundIncludeRules(ipv4RangesInclude, cfg.ruleBuilder.AppendRuleV4, cfg.ruleBuilder.InsertRuleV4)
    	cfg.handleOutboundIncludeRules(ipv6RangesInclude, cfg.ruleBuilder.AppendRuleV6, cfg.ruleBuilder.InsertRuleV6)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  2. cni/pkg/iptables/iptables.go

    		"dst",
    		"-j", "SNAT",
    		"--to-source", hostSNATIP.String(),
    	)
    
    	// For V6 we have to use a different set and a different SNAT IP
    	if cfg.cfg.EnableIPv6 {
    		iptablesBuilder.AppendRuleV6(
    			iptableslog.UndefinedCommand, ChainHostPostrouting, iptablesconstants.NAT,
    			"-m", "owner",
    			"--socket-exists",
    			"-p", "tcp",
    			"-m", "set",
    			"--match-set", fmt.Sprintf(ipset.V6Name, ProbeIPSet),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top