Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/icexin/sshtun
- Owner: icexin
- License: mit
- Created: 2016-05-18T13:24:57.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-02-15T11:36:48.000Z (almost 3 years ago)
- Last Synced: 2024-06-19T00:33:27.799Z (6 months ago)
- Language: Go
- Size: 3.91 KB
- Stars: 30
- Watchers: 3
- Forks: 8
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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`