Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 176 for tunnel (0.2 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. 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)
  3. 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)
  4. 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)
  5. okhttp/src/main/kotlin/okhttp3/internal/connection/ConnectPlan.kt

        // Make an SSL Tunnel on the first message pair of each SSL + proxy connection.
        val url = route.address.url
        val requestLine = "CONNECT ${url.toHostHeader(includeDefaultPort = true)} HTTP/1.1"
        while (true) {
          val source = this.source!!
          val sink = this.sink!!
          val tunnelCodec =
            Http1ExchangeCodec(
              // No client for CONNECT tunnels:
              client = null,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtunnel.go

    	"k8s.io/client-go/tools/portforward"
    	"k8s.io/klog/v2"
    )
    
    // TunnelingHandler is a handler which tunnels SPDY through WebSockets.
    type TunnelingHandler struct {
    	// Used to communicate between upstream SPDY and downstream tunnel.
    	upgradeHandler http.Handler
    }
    
    // NewTunnelingHandler is used to create the tunnel between an upstream
    // SPDY connection and a downstream tunneling connection through the stored
    // UpgradeAwareProxy.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/connection/RealRoutePlanner.kt

          connectionSpecIndex = -1,
          isTlsFallback = false,
        )
      }
    
      /**
       * Returns a request that creates a TLS tunnel via an HTTP proxy. Everything in the tunnel request
       * is sent unencrypted to the proxy server, so tunnels include only the minimum set of headers.
       * This avoids sending potentially sensitive data like HTTP cookies to the proxy unencrypted.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/certificates/v1beta1/types.go

    	//  "encipher only",
    	//  "decipher only",
    	//  "any",
    	//  "server auth",
    	//  "client auth",
    	//  "code signing",
    	//  "email protection",
    	//  "s/mime",
    	//  "ipsec end system",
    	//  "ipsec tunnel",
    	//  "ipsec user",
    	//  "timestamping",
    	//  "ocsp signing",
    	//  "microsoft sgc",
    	//  "netscape sgc"
    	// +listType=atomic
    	Usages []KeyUsage `json:"usages,omitempty" protobuf:"bytes,5,opt,name=usages"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  9. architecture/ambient/ztunnel.md

    If there is no waypoint, ztunnel will enforce RBAC policies against the request.
    
    If all checks pass, ztunnel will open a connection to the target. This will spoof the source IP (from `Forwarded` for waypoints, or the incoming IP otherwise).
    Once the connection is established we return a 200 HTTP code, and bi-directionally copy data to/from the tunnel to the destination.
    
    ## Certificates
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. pkg/workloadapi/workload.proto

      string workload_name = 13;
    
      // If set, this indicates a workload expects to directly receive tunnel traffic.
      // In ztunnel, this means:
      // * Requests *from* this workload do not need to be tunneled if they already are tunneled by the tunnel_protocol.
      // * Requests *to* this workload, via the tunnel_protocol, do not need to be de-tunneled.
      bool native_tunnel = 14;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top