Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for NIC (0.04 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. pkg/kubelet/cm/devicemanager/topology_hints_test.go

    									v1.ResourceName("gpu"):             resource.MustParse("1"),
    									v1.ResourceName("nic"):             resource.MustParse("1"),
    								},
    							},
    						},
    					},
    				},
    			},
    			registeredDevices: []string{"gpu", "nic"},
    			expected:          map[string]int{"gpu": 2, "nic": 2},
    		},
    		{
    			description: "Init containers request more device plugin resources than user containers",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 47.5K bytes
    - Viewed (0)
  4. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    trader.aero
    trading.aero
    trainer.aero
    union.aero
    workinggroup.aero
    works.aero
    
    // af : http://www.nic.af/help.jsp
    af
    gov.af
    com.af
    org.af
    net.af
    edu.af
    
    // ag : http://www.nic.ag/prices.htm
    ag
    com.ag
    org.ag
    net.ag
    co.ag
    nom.ag
    
    // ai : http://nic.com.ai/
    ai
    off.ai
    com.ai
    net.ai
    org.ai
    
    // al : http://www.ert.gov.al/ert_alb/faq_det.html?Id=31
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/util/iptables/iptables.go

    	// ChainOutput used for the packets going out from local
    	ChainOutput Chain = "OUTPUT"
    	// ChainInput used for incoming packets
    	ChainInput Chain = "INPUT"
    	// ChainForward used for the packets for another NIC
    	ChainForward Chain = "FORWARD"
    )
    
    const (
    	cmdIPTablesSave     string = "iptables-save"
    	cmdIPTablesRestore  string = "iptables-restore"
    	cmdIPTables         string = "iptables"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 28.6K bytes
    - Viewed (0)
  9. 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)
  10. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    newmexico.museum newport.museum news news.hu newspaper.museum newyork.museum next nextdirect nexus neyagawa.osaka.jp nf nf.ca nfl nflfan.org nfshost.com ng ng.eu.org ngo ngo.lk ngo.ng ngo.ph ngo.za ngrok.io nh-serv.co.uk nh.us nhk nhlfan.net nhs.uk ni nic.in nic.tj nic.za nichinan.miyazaki.jp nichinan.tottori.jp nico nid.io niepce.museum nieruchomosci.pl niigata.jp niigata.niigata.jp niihama.ehime.jp niikappu.hokkaido.jp niimi.okayama.jp niiza.saitama.jp nikaho.akita.jp nike niki.hokkaido.jp nikita.jp nikko.tochigi.jp...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
Back to top