Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for NIC (0.02 sec)

  1. tools/istio-iptables/pkg/capture/testdata/basic-exclude-nic.golden

    iptables -t nat -N ISTIO_INBOUND
    iptables -t nat -N ISTIO_REDIRECT
    iptables -t nat -N ISTIO_IN_REDIRECT
    iptables -t nat -N ISTIO_OUTPUT
    iptables -t nat -A PREROUTING -i not-istio-nic -j RETURN
    iptables -t nat -A OUTPUT -o not-istio-nic -j RETURN
    iptables -t nat -A ISTIO_INBOUND -p tcp --dport 15008 -j RETURN
    iptables -t nat -A ISTIO_REDIRECT -p tcp -j REDIRECT --to-ports 15001
    iptables -t nat -A ISTIO_IN_REDIRECT -p tcp -j REDIRECT --to-ports 15006
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/capture/testdata/tproxy.golden

    iptables -t mangle -N ISTIO_INBOUND
    iptables -t nat -N ISTIO_OUTPUT
    iptables -t raw -N ISTIO_OUTPUT
    iptables -t nat -A PREROUTING -i not-istio-nic -j RETURN
    iptables -t nat -A OUTPUT -o not-istio-nic -j RETURN
    iptables -t mangle -A PREROUTING -i not-istio-nic -j RETURN
    iptables -t mangle -A OUTPUT -o not-istio-nic -j RETURN
    iptables -t nat -A ISTIO_INBOUND -p tcp --dport 15008 -j RETURN
    iptables -t nat -A ISTIO_REDIRECT -p tcp -j REDIRECT --to-ports 15001
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/capture/run_test.go

    				cfg.DNSServersV4 = []string{"127.0.0.53"}
    				cfg.EnableIPv6 = false
    				cfg.ProxyGID = "1,2"
    				cfg.ProxyUID = "3,4"
    			},
    		},
    		{
    			"basic-exclude-nic",
    			func(cfg *config.Config) {
    				cfg.ExcludeInterfaces = "not-istio-nic"
    			},
    		},
    		{
    			"logging",
    			func(cfg *config.Config) {
    				cfg.TraceLogging = true
    			},
    		},
    		{
    			"drop-invalid",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. tools/istio-iptables/pkg/cmd/root.go

    			"Only applies when all inbound traffic (i.e. \"*\") is being redirected.",
    		&cfg.InboundPortsExclude)
    
    	flag.BindEnv(fs, constants.ExcludeInterfaces, "c",
    		"Comma separated list of NIC (optional). Neither inbound nor outbound traffic will be captured.",
    		&cfg.ExcludeInterfaces)
    
    	flag.BindEnv(fs, constants.ServiceCidr, "i",
    		"Comma separated list of IP ranges in CIDR form to redirect to envoy (optional). "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 17:36:41 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. cmd/globals.go

    	deleteMultipartCleanupSleeper = newDynamicSleeper(5, 25*time.Millisecond, false)
    
    	// Is _MINIO_DISABLE_API_FREEZE_ON_BOOT set?
    	globalDisableFreezeOnBoot bool
    
    	// Contains NIC interface name used for internode communication
    	globalInternodeInterface     string
    	globalInternodeInterfaceOnce sync.Once
    
    	// Set last client perf extra time (get lock, and validate)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. cmd/server-main.go

    	nodeNameSum := sha256.Sum256([]byte(globalLocalNodeName))
    	globalLocalNodeNameHex = hex.EncodeToString(nodeNameSum[:])
    
    	// Initialize, see which NIC the service is running on, and save it as global value
    	setGlobalInternodeInterface(ctxt.Interface)
    
    	globalTCPOptions = xhttp.TCPOptions{
    		UserTimeout: int(ctxt.UserTimeout.Milliseconds()),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (1)
  7. cluster/gce/windows/k8s-node-setup.psm1

            -Verbose
        netsh interface ipv4 set interface "${vnic_name}" forwarding=enabled
      }
    
      Try {
        Get-HNSPolicyList | Remove-HnsPolicyList
      } Catch { }
    
      # Add a route from the management NIC to the pod CIDR.
      #
      # When a packet from a Kubernetes service backend arrives on the destination
      # Windows node, the reverse SNAT will be applied and the source address of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top