An open API service indexing awesome lists of open source software.

https://github.com/sgreben/sshtunnel

library providing a convenient dialer for SSH-tunneled TCP and Unix domain socket connections. #golang
https://github.com/sgreben/sshtunnel

golang library native-go openssh-client putty ssh tcp tunnel unix-socket

Last synced: about 2 months ago
JSON representation

library providing a convenient dialer for SSH-tunneled TCP and Unix domain socket connections. #golang

Awesome Lists containing this project

README

        

# sshtunnel

[![](https://godoc.org/github.com/sgreben/sshtunnel?status.svg)](http://godoc.org/github.com/sgreben/sshtunnel) [![](https://goreportcard.com/badge/github.com/sgreben/sshtunnel/goreportcard)](https://goreportcard.com/report/github.com/sgreben/sshtunnel) [![cover.run](https://cover.run/go/github.com/sgreben/sshtunnel.svg?style=flat&tag=golang-1.10)](https://cover.run/go?tag=golang-1.10&repo=github.com%2Fsgreben%2Fsshtunnel) [![Build Status](https://travis-ci.org/sgreben/sshtunnel.svg?branch=master)](https://travis-ci.org/sgreben/sshtunnel)

Go library providing a dialer for SSH-tunneled TCP and Unix domain socket connections. Please note the [**limitations**](#limitations) below.

The underlying package `golang.org/x/crypto/ssh` already provides a dialer `ssh.Client.Dial` that can establish `direct-tcpip` (TCP) and `direct-streamlocal` (Unix domain socket) connections via SSH.

In comparison, the functions `Dial/DialContext`, `ReDial/ReDialContext`, `Listen/ListenContext` in this package provide additional convenience features such as redialling dropped connections, and serving the tunnel locally.

Furthermore, a wrapper [`github.com/sgreben/sshtunnel/exec`](http://godoc.org/github.com/sgreben/sshtunnel/exec) around (`exec`'d) external clients, with a similar interface as the native client, is provided.

- [Get it](#get-it)
- [Use it](#use-it)
- [Docs](#docs)
- [Toy example (native)](#toy-example-native)
- [Toy example (external client)](#toy-example-external-client)
- [Bigger examples](#bigger-examples)
- [Limitations](#limitations)

## Get it

```sh
go get -u "github.com/sgreben/sshtunnel"
```

## Use it

```go
import "github.com/sgreben/sshtunnel"
```

### Docs

[![](https://godoc.org/github.com/sgreben/sshtunnel?status.svg)](http://godoc.org/github.com/sgreben/sshtunnel)

### Toy example (native)

```go
package main

import (
"fmt"
"io"
"os"

"golang.org/x/crypto/ssh"
"github.com/sgreben/sshtunnel"
)

func main() {
// Connect to "google.com:80" via a tunnel to "ubuntu@my-ssh-server-host:22"
keyPath := "private-key.pem"
authConfig := sshtunnel.ConfigAuth{
Keys: []sshtunnel.KeySource{{Path: &keyPath}},
}
sshAuthMethods, _ := authConfig.Methods()
clientConfig := ssh.ClientConfig{
User: "ubuntu",
Auth: sshAuthMethods,
HostKeyCallback: ssh.InsecureIgnoreHostKey(),
}
tunnelConfig := sshtunnel.Config{
SSHAddr: "my-ssh-server-host:22",
SSHClient: &clientConfig,
}
conn, _, err := sshtunnel.Dial("tcp", "google.com:80", &tunnelConfig)
if err != nil {
panic(err)
}
// Do things with conn
fmt.Fprintln(conn, "GET /")
io.Copy(os.Stdout, conn)
}
```

### Toy example (external client)

```go
package main

import (
"fmt"
"io"
"log"
"os"
"os/exec"
"time"

"github.com/sgreben/sshtunnel/exec"
)

func main() {
// Connect to "google.com:80" via a tunnel to "ubuntu@my-ssh-server-host:22"
//
// Unlike the "native" example above, here a binary named `ssh` (which must be in $PATH)
// is used to set up the tunnel.
tunnelConfig := sshtunnel.Config{
User: "ubuntu",
SSHHost: "my-ssh-server-host",
SSHPort: "22",
CommandTemplate: sshtunnel.CommandTemplateOpenSSH,
CommandConfig: func(cmd *exec.Cmd) error {
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
cmd.Stdin = os.Stdin
return nil
},
}

tunnelConfig.Backoff.Min = 50 * time.Millisecond
tunnelConfig.Backoff.Max = 1 * time.Second
tunnelConfig.Backoff.MaxAttempts = 8

conn, _, err := sshtunnel.Dial("google.com:80", &tunnelConfig)
if err != nil {
panic(err)
}
// Do things with conn
fmt.Fprintln(conn, "GET /")
io.Copy(os.Stdout, conn)
}
```

### Bigger examples

Projects using this library:

- [docker-compose-hosts](https://github.com/sgreben/docker-compose-hosts).
- [with-ssh-docker-socket](https://github.com/sgreben/with-ssh-docker-socket).

## Limitations

- **No tests**; want some - write some.