Mercurial > dropbear
comparison CHANGES @ 515:fe30d2a2d626
- Document idle_timeout
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Tue, 11 Nov 2008 13:51:55 +0000 |
parents | a3748e54273c |
children | ce104c8b0be1 |
comparison
equal
deleted
inserted
replaced
514:e30a962c09b9 | 515:fe30d2a2d626 |
---|---|
10 dbclient -J 'nc remotehost 22' remotehost | 10 dbclient -J 'nc remotehost 22' remotehost |
11 (the hostname is still provided purely for looking up saved host keys) | 11 (the hostname is still provided purely for looking up saved host keys) |
12 | 12 |
13 - Combine netcat-alike and proxy support to allow "multihop" connections, with | 13 - Combine netcat-alike and proxy support to allow "multihop" connections, with |
14 comma-separated host syntax. Allows running | 14 comma-separated host syntax. Allows running |
15 | |
15 dbclient user1@host1,user2@host2,user3@host3 | 16 dbclient user1@host1,user2@host2,user3@host3 |
17 | |
16 to end up at host3 via the other two, using SSH TCP forwarding. It's a bit | 18 to end up at host3 via the other two, using SSH TCP forwarding. It's a bit |
17 like onion-routing. All connections are established from the local machine. | 19 like onion-routing. All connections are established from the local machine. |
18 The comma-separated syntax can also be used for scp/rsync, eg | 20 The comma-separated syntax can also be used for scp/rsync, eg |
21 | |
19 rsync -a -e dbclient m@gateway,m2@host,martello:/home/matt/ ~/backup/ | 22 rsync -a -e dbclient m@gateway,m2@host,martello:/home/matt/ ~/backup/ |
23 | |
20 to bounce through a few hosts. | 24 to bounce through a few hosts. |
25 | |
26 - Add -I "idle timeout" option (contributed by Farrell Aultman) | |
21 | 27 |
22 - Allow restrictions on authorized_keys logins such as restricting commands | 28 - Allow restrictions on authorized_keys logins such as restricting commands |
23 to be run etc. This is a subset of those allowed by OpenSSH, doesn't | 29 to be run etc. This is a subset of those allowed by OpenSSH, doesn't |
24 yet allow restricting source host. | 30 yet allow restricting source host. |
25 | 31 |