Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for eth3 (0.04 sec)

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

    			func(cfg *config.Config) {
    				cfg.InboundPortsInclude = "4000,5000"
    				cfg.KubeVirtInterfaces = "eth0,eth1"
    				cfg.EnableIPv6 = true
    			},
    		},
    		{
    			"ipv6-ipnets",
    			func(cfg *config.Config) {
    				cfg.InboundPortsInclude = "4000,5000"
    				cfg.InboundPortsExclude = "6000,7000,"
    				cfg.KubeVirtInterfaces = "eth0,eth1"
    				cfg.OutboundIPRangesExclude = "2001:db8::/32"
    				cfg.OutboundIPRangesInclude = "2001:db8::/32"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/capture/testdata/ipnets-with-kube-virt-interfaces.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 -I PREROUTING 1 -i eth1 -j RETURN
    iptables -t nat -I PREROUTING 1 -i eth2 -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: Thu Jun 06 03:53:23 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/capture/testdata/kube-virt-interfaces.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 -I PREROUTING 1 -i eth1 -j RETURN
    iptables -t nat -I PREROUTING 1 -i eth2 -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.3K bytes
    - Viewed (0)
  4. tools/istio-iptables/pkg/capture/testdata/ipv6-ipnets.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 -I PREROUTING 1 -i eth0 -j RETURN
    iptables -t nat -I PREROUTING 1 -i eth1 -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: Thu Jun 06 03:53:23 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/capture/testdata/ipv6-virt-interfaces.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 -I PREROUTING 1 -i eth0 -j RETURN
    iptables -t nat -I PREROUTING 1 -i eth1 -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
    - 2.7K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/capture/testdata/ipv6-uid-gid.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 -I PREROUTING 1 -i eth0 -j RETURN
    iptables -t nat -I PREROUTING 1 -i eth1 -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: Thu Jun 06 03:53:23 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. pkg/proxy/util/localdetector_test.go

    	cases := []struct {
    		ifaceName               string
    		expectedJumpIfOutput    []string
    		expectedJumpIfNotOutput []string
    	}{
    		{
    			ifaceName:               "eth0",
    			expectedJumpIfOutput:    []string{"-i", "eth0"},
    			expectedJumpIfNotOutput: []string{"!", "-i", "eth0"},
    		},
    	}
    	for _, c := range cases {
    		localDetector := NewDetectLocalByBridgeInterface(c.ifaceName)
    		if !localDetector.IsImplemented() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 15:34:37 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/testing/fake_test.go

    	fake := NewFakeNetlinkHandle(false)
    	_ = ipvs.NetLinkHandle(fake) // Ensure that the interface is honored
    	fake.SetLocalAddresses("eth0", "1.2.3.4")
    	var expected, addr sets.Set[string]
    	expected = sets.New("1.2.3.4")
    	addr, _ = fake.GetLocalAddresses("eth0")
    	if !addr.Equal(expected) {
    		t.Errorf("Unexpected mismatch, expected: %v, got: %v", expected, addr)
    	}
    	addr, _ = fake.GetAllLocalAddresses()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. .github/workflows/codeql-analysis.yml

            if: ${{ matrix.language == 'java' }}
    
        - name: Disable checksum offloading
          # See: https://github.com/actions/virtual-environments/issues/1187#issuecomment-686735760
          run: sudo ethtool -K eth0 tx off rx off
    
        # Install and setup JDK 11
        - name: Setup JDK 11
          uses: actions/setup-java@v4
          with:
            distribution: temurin
            java-version: 11
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. src/net/netip/netip_pkg_test.go

    		},
    		{
    			ip:     "500.0.0.1",
    			errstr: "field has value >255",
    		},
    		{
    			ip:     "::gggg%eth0",
    			errstr: "must have at least one digit",
    		},
    		{
    			ip:     "fe80::1cc0:3e8c:119f:c2e1%",
    			errstr: "zone must be a non-empty string",
    		},
    		{
    			ip:     "%eth0",
    			errstr: "missing IPv6 address",
    		},
    	}
    	for _, test := range tests {
    		t.Run(test.ip, func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 02 15:37:19 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top