on-demand-ssh-tunnel: Program that sends traffic through SSH tunnels on-demand

[ library, mit, network, program ] [ Propose Tags ]

Program that sends traffic through SSH tunnels on-demand


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.1.0.3, 0.1.0.4, 0.1.0.5, 0.1.0.6
Dependencies base (<5), bytestring, GenericPretty, network, on-demand-ssh-tunnel, process, random [details]
License MIT
Copyright (c) 2015 Predrag Radovic
Author Predrag Radovic
Maintainer predrg@gmail.com
Category Network
Home page https://github.com/crackleware/on-demand-ssh-tunnel
Uploaded by pedja at 2015-02-24T17:01:49Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Executables on-demand-ssh-tunnel
Downloads 2797 total (11 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2015-02-25 [all 1 reports]

Readme for on-demand-ssh-tunnel-0.1.0.6

[back to package description]
Example usage:

    $ on-demand-ssh-tunnel '[ SSHTunnel 59000 "127.0.0.1:5900" ["user@host1", "while true; do date; sleep 60; done"] ]'

When something connects to 127.0.0.1:59000 on-demand-ssh-tunnel will
start ssh subprocess

    ssh -v -Lrandom-tunnel-port:127.0.0.1:5900 -n user@host1

to tunnel communication to VNC server accessible on port 5900 (on host1).