Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/icexin/sshtun

multiple ssh tunnel at once
https://github.com/icexin/sshtun

Last synced: about 1 month ago
JSON representation

multiple ssh tunnel at once

Awesome Lists containing this project

README

        

# Overview

sshtun creates mutiple tunnels like `ssh -L`

# Install

`go install github.com/icexin/sshtun`

# Config

``` toml
[ssh]
# ssh address
addr="example.com:22"

# ssh user name
user="root"

# ssh user password
password="xxx"

# or ssh private key
keyPath="/Users/icexin/.ssh/id_rsa"

[ports]
# listen on 0.0.0.0:8090 and forward connections to icexin.com:80
8080="icexin.com:80"

# you may specify more tunnels
8090="google.com:80"

```

# Usage

`./sshtun`