Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for NIC (0.2 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. src/main/resources/fess_indices/fess/cs/stopwords.txt

    dnes
    cz
    tímto
    budeš
    budem
    byli
    jseš
    můj
    svým
    ta
    tomto
    tohle
    tuto
    tyto
    jej
    zda
    proč
    máte
    tato
    kam
    tohoto
    kdo
    kteří
    mi
    nám
    tom
    tomuto
    mít
    nic
    proto
    kterou
    byla
    toho
    protože
    asi
    ho
    naši
    napište
    re
    což
    tím
    takže
    svých
    její
    svými
    jste
    aj
    tu
    tedy
    teto
    bylo
    kde
    ke
    pravé
    ji
    nad
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 992 bytes
    - Viewed (0)
  4. 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)
  5. 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)
Back to top