-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathexample_test.go
34 lines (28 loc) · 1.05 KB
/
example_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package tunnel_test
import (
"log"
"github.com/davrodpin/mole/tunnel"
)
// This example shows the basic usage of the package: define both the source and
// destination endpoints, the ssh server and then start the tunnel that will
// exchange data from the local address to the remote address through the
// established ssh channel.
func Example() {
sourceEndpoints := []string{"127.0.0.1:8080"}
destinationEndpoints := []string{"user@example.com:80"}
// Initialize the SSH Server configuration providing all values so
// tunnel.NewServer will not try to lookup any value using $HOME/.ssh/config
server, err := tunnel.NewServer("user", "172.17.0.20:2222", "/home/user/.ssh/key", "", "/home/user/.ssh/config")
if err != nil {
log.Fatalf("error processing server options: %v\n", err)
}
t, err := tunnel.New("local", server, sourceEndpoints, destinationEndpoints, "/home/user/.ssh/key")
if err != nil {
log.Fatalf("error creating tunnel: %v\n", err)
}
// Start the tunnel
err = t.Start()
if err != nil {
log.Fatalf("error starting tunnel: %v\n", err)
}
}