Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CmdToString (0.71 sec)

  1. tools/istio-iptables/pkg/dependencies/implementation.go

    	// true if legacy mode, false if nf_tables
    	Legacy bool
    	// true if we detected that existing rules are present for this variant (legacy, nft, v6)
    	ExistingRules bool
    }
    
    func (v IptablesVersion) CmdToString(cmd constants.IptablesCmd) string {
    	switch cmd {
    	case constants.IPTables:
    		return v.DetectedBinary
    	case constants.IPTablesSave:
    		return v.DetectedSaveBinary
    	case constants.IPTablesRestore:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 19:54:50 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. cni/pkg/iptables/iptables.go

    	var data string
    
    	if isIpv4 {
    		data = iptablesBuilder.BuildV4Restore()
    	} else {
    		data = iptablesBuilder.BuildV6Restore()
    	}
    
    	log.Infof("Running %s with the following input:\n%v", iptVer.CmdToString(cmd), strings.TrimSpace(data))
    	// --noflush to prevent flushing/deleting previous contents from table
    	return cfg.ext.Run(cmd, iptVer, strings.NewReader(data), "--noflush", "-v")
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/capture/run.go

    	if isIpv4 {
    		data = cfg.ruleBuilder.BuildV4Restore()
    	} else {
    		data = cfg.ruleBuilder.BuildV6Restore()
    	}
    
    	log.Infof("Running iptables restore with: %s and the following input:\n%v", iptVer.CmdToString(constants.IPTablesRestore), strings.TrimSpace(data))
    	// --noflush to prevent flushing/deleting previous contents from table
    	return cfg.ext.Run(constants.IPTablesRestore, iptVer, strings.NewReader(data), "--noflush")
    }
    
    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