Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for tunneling (0.22 sec)

  1. 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)
  2. cluster/addons/calico-policy-controller/ippool-crd.yaml

                        description: When enabled is true, ipip tunneling will be used
                          to deliver packets to destinations within this pool.
                        type: boolean
                      mode:
                        description: The IPIP mode.  This can be one of "always" or "cross-subnet".  A
                          mode of "always" will also use IPIP tunneling for routing to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  3. src/net/interface_linux.go

    	// See linux/if_arp.h.
    	// Note that Linux doesn't support IPv4 over IPv6 tunneling.
    	sysARPHardwareIPv4IPv4 = 768 // IPv4 over IPv4 tunneling
    	sysARPHardwareIPv6IPv6 = 769 // IPv6 over IPv6 tunneling
    	sysARPHardwareIPv6IPv4 = 776 // IPv6 over IPv4 tunneling
    	sysARPHardwareGREIPv4  = 778 // any over GRE over IPv4 tunneling
    	sysARPHardwareGREIPv6  = 823 // any over GRE over IPv6 tunneling
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 27 05:42:03 UTC 2022
    - 7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/proxy/doc.go

    // connection, and it is used for the PortForward subprotocol (e.g.
    // kubectl port-forward). This proxy implements tunneling by transparently
    // encoding and decoding SPDY framed data into and out of the payload of a
    // WebSocket data frame. The primary structure for this tunneling is
    // the TunnelingConnection. A lot of the other code in streamtunnel.go
    // is for properly upgrading both the upstream SPDY connection and the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 17:56:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtunnel.go

    // SPDY connection and a downstream tunneling connection through the stored
    // UpgradeAwareProxy.
    func NewTunnelingHandler(upgradeHandler http.Handler) *TunnelingHandler {
    	return &TunnelingHandler{upgradeHandler: upgradeHandler}
    }
    
    // ServeHTTP uses the upgradeHandler to tunnel between a downstream tunneling
    // connection and an upstream SPDY connection. The tunneling connection is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  6. samples/unixdomainsockets/src/main/java/okhttp3/unixdomainsockets/TunnelingUnixSocket.java

    import jnr.unixsocket.UnixSocket;
    import jnr.unixsocket.UnixSocketAddress;
    import jnr.unixsocket.UnixSocketChannel;
    
    /**
     * Subtype UNIX socket for a higher-fidelity impersonation of TCP sockets. This is named "tunneling"
     * because it assumes the ultimate destination has a hostname and port.
     */
    final class TunnelingUnixSocket extends UnixSocket {
      private final File path;
      private InetSocketAddress inetSocketAddress;
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Feb 12 16:33:52 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  7. tests/integration/pilot/tunneling_test.go

    func listFilesInDirectory(ctx framework.TestContext, dir string) []string {
    	files, err := os.ReadDir("testdata/tunneling/" + dir)
    	if err != nil {
    		ctx.Fatalf("failed to read files in directory: %s", err)
    	}
    	filesList := make([]string, 0, len(files))
    	for _, file := range files {
    		filesList = append(filesList, fmt.Sprintf("testdata/tunneling/%s/%s", dir, file.Name()))
    	}
    	return filesList
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. src/hash/example_test.go

    // license that can be found in the LICENSE file.
    
    package hash_test
    
    import (
    	"bytes"
    	"crypto/sha256"
    	"encoding"
    	"fmt"
    	"log"
    )
    
    func Example_binaryMarshaler() {
    	const (
    		input1 = "The tunneling gopher digs downwards, "
    		input2 = "unaware of what he will find."
    	)
    
    	first := sha256.New()
    	first.Write([]byte(input1))
    
    	marshaler, ok := first.(encoding.BinaryMarshaler)
    	if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 04 03:47:34 UTC 2017
    - 1.2K bytes
    - Viewed (0)
  9. pkg/hbone/README.md

    # HTTP Based Overlay Network (HBONE)
    
    HTTP Based Overlay Network (HBONE) is the protocol used by Istio for communication between workloads in the mesh.
    At a high level, the protocol consists of tunneling TCP connections over HTTP/2 CONNECT, over mTLS.
    
    ## Specification
    
    TODO
    
    ## Implementations
    
    ### Clients
    
    #### CLI
    
    A CLI client is available using the `client` binary.
    
    Usage examples:
    
    ```shell
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 11 16:27:16 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/lif/link.go

    // On Solaris, each logical network interface represents network layer
    // adjacency information and the interface has a only single network
    // address or address pair for tunneling. It's usual that multiple
    // logical network interfaces share the same logical data link.
    type Link struct {
    	Name  string // name, equivalent to IP interface name
    	Index int    // index, equivalent to IP interface index
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top