Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,052 for tunnel (0.15 sec)

  1. pilot/pkg/networking/core/networkfilter_test.go

    	tunnelingEnabled := &networking.DestinationRule{
    		Host: "tunnel-proxy.com",
    		TrafficPolicy: &networking.TrafficPolicy{
    			Tunnel: &networking.TrafficPolicy_TunnelSettings{
    				Protocol:   "CONNECT",
    				TargetHost: "example.com",
    				TargetPort: 8443,
    			},
    		},
    	}
    	tunnelingEnabledWithoutProtocol := &networking.DestinationRule{
    		Host: "tunnel-proxy.com",
    		TrafficPolicy: &networking.TrafficPolicy{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  2. tests/integration/pilot/testdata/tunneling/destination-rule.tmpl.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: tunnel-outbound-traffic-to-external-svc-via-external-forward-proxy
    spec:
      host: external-forward-proxy.{{ .externalNamespace }}.svc.cluster.local
      subsets:
      - name: external-svc-tcp
        trafficPolicy:
          tunnel:
            targetHost: external.{{ .externalNamespace }}
            targetPort: {{ .externalSvcTcpPort }}
      - name: external-svc-tls
        trafficPolicy:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 20 19:37:50 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. architecture/ambient/peer-authentication.md

    ```mermaid
    graph TD;
    src[src pod]-->|plaintext port|ztunnel{"ztunnel (L4 policy applied here)"}
    ztunnel{ztunnel}-->|TLS|wp{waypoint}
    wp-->|mTLS|ztunnel
    ztunnel-->|plaintext|dst[dst pod]
    ```
    
    And here's an example of an authenticated request to a captured destination:
    
    ```mermaid
    graph TD;
    src[src pod]-->|15008|ztunnel{ztunnel}
    ztunnel-->|HBONE|dwp{"destination waypoint (all policy applied here)"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. releasenotes/notes/destination-rule-tunneling.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
    - |
      **Added** support for tunneling outbound traffic via external HTTP forward proxies using HTTP CONNECT or POST methods.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 15 23:31:52 UTC 2022
    - 313 bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/AbstractProxyResolveIntegrationTest.groovy

            proxyServer.configureProxyHost(executer, "https")
            module.allowAll()
    
            then:
            succeeds('listJars')
    
            and:
            proxyServer.requestCount == (tunnel ? 1 : 2)
        }
    
        def "can resolve from repo with other proxy scheme configured"() {
            given:
            proxyServer.start()
            setupServer()
    
            and:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  6. src/net/interface_linux_test.go

    	ti.name = fmt.Sprintf("gotest%d", suffix)
    	xname, err := exec.LookPath("ip")
    	if err != nil {
    		return err
    	}
    	ti.setupCmds = append(ti.setupCmds, &exec.Cmd{
    		Path: xname,
    		Args: []string{"ip", "tunnel", "add", ti.name, "mode", "gre", "local", ti.local, "remote", ti.remote},
    	})
    	ti.setupCmds = append(ti.setupCmds, &exec.Cmd{
    		Path: xname,
    		Args: []string{"ip", "address", "add", ti.local, "peer", ti.remote, "dev", ti.name},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 06 00:05:32 UTC 2018
    - 3.7K bytes
    - Viewed (0)
  7. pilot/pkg/networking/util/util.go

    		mergedPolicy.LoadBalancer = subsetPolicy.LoadBalancer
    	}
    	if subsetPolicy.Tls != nil || hasPortLevel {
    		mergedPolicy.Tls = subsetPolicy.Tls
    	}
    
    	if subsetPolicy.Tunnel != nil {
    		mergedPolicy.Tunnel = subsetPolicy.Tunnel
    	}
    	if subsetPolicy.ProxyProtocol != nil {
    		mergedPolicy.ProxyProtocol = subsetPolicy.ProxyProtocol
    	}
    	return mergedPolicy
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/egressselector/egress_selector.go

    	return tunnelHTTPConnect(t.conn, t.proxyAddress, addr)
    }
    
    var _ proxier = &grpcProxier{}
    
    type grpcProxier struct {
    	tunnel client.Tunnel
    }
    
    func (g *grpcProxier) proxy(ctx context.Context, addr string) (net.Conn, error) {
    	return g.tunnel.DialContext(ctx, "tcp", addr)
    }
    
    type proxyServerConnector interface {
    	// connect establishes connection to the proxy server, and returns a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  9. pilot/pkg/xds/endpoints/endpoint_builder.go

    	if !mtlsEnabled {
    		meta.TLSMode = ""
    	}
    	util.AppendLbEndpointMetadata(meta, ep.Metadata)
    
    	tunnel := supportTunnel(b, e)
    	if mtlsEnabled && !features.PreferHBONESend {
    		tunnel = false
    	}
    	if b.proxy.Metadata.DisableHBONESend {
    		tunnel = false
    	}
    	if tunnel {
    		address, port := e.Address, int(e.EndpointPort)
    		// We intentionally do not take into account waypoints here.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/proxy/doc.go

    // the output streams of a WebSocket connection (e.g. STDIN, STDOUT,
    // STDERR, TTY resize, and error streams) to the input streams of a
    // SPDY connection.
    //
    // The stream tunnel proxy tunnels SPDY frames through a WebSocket
    // connection, and it is used for the PortForward subprotocol (e.g.
    // kubectl port-forward). This proxy implements tunneling by transparently
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 17:56:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top