Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mattvonrocketstein/tunl
command line ssh tunnel manager
https://github.com/mattvonrocketstein/tunl
Last synced: 3 months ago
JSON representation
command line ssh tunnel manager
- Host: GitHub
- URL: https://github.com/mattvonrocketstein/tunl
- Owner: mattvonrocketstein
- License: other
- Created: 2014-12-09T09:14:28.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2023-10-25T21:17:26.000Z (about 1 year ago)
- Last Synced: 2024-10-03T10:14:13.988Z (3 months ago)
- Language: Python
- Homepage:
- Size: 260 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
## About tunl
Tunl is a ssh-tunnel manager without a lot of frills. It has a command-line interface which works any place you have ssh and python. I wrote this mainly because I wanted dead simple command-line and programmatic access to a ssh-tunnel manager with unsurprising configuration files. (Also I can't be bothered to remember the ssh command line syntax, and I sure do hate typing)
[The main documentation is located here.](http://mattvonrocketstein.github.io/tunl/)
## Installing tunl
Install with pypi:
```shell
$ pip install tunl
```Or try the bleeding edge:
```shell
$ git clone https://github.com/mattvonrocketstein/tunl.git
$ cd tunl
$ virtualenv venv
$ source venv/bin/activate
$ python setup.py develop
```