Blame


1 7b682af0 2021-11-21 op # lstun -- lazy ssh tunnel
2 7b682af0 2021-11-21 op
3 7b682af0 2021-11-21 op lstun is a simple utility to lazily (on demand) spawn a ssh tunnel to
4 7b682af0 2021-11-21 op a remote machine and kill it after some time of inactivity.
5 7b682af0 2021-11-21 op
6 7b682af0 2021-11-21 op To compile it just run
7 7b682af0 2021-11-21 op
8 56be64f8 2021-11-25 op $ ./autogen.sh # if building from a git checkout
9 56be64f8 2021-11-25 op $ ./configure
10 56be64f8 2021-11-25 op $ make
11 56be64f8 2021-11-25 op # make install # eventually
12 7b682af0 2021-11-21 op
13 2040c43f 2021-11-25 op The only dependency is libevent. It expects ssh to be `/usr/bin/ssh`,
14 2040c43f 2021-11-25 op compile with `-DSSH_PATH=...` to alter the path eventually.
15 7b682af0 2021-11-21 op
16 7b682af0 2021-11-21 op Check out the manpage for the usage.