comparison dbclient.1 @ 784:0e5ea6812bb7

Use % rather than # for port delimiter
author Matt Johnston <matt@ucc.asn.au>
date Wed, 17 Apr 2013 23:17:27 +0800
parents 34e69908b3f7
children f8b28a3de6cb
comparison
equal deleted inserted replaced
783:34e69908b3f7 784:0e5ea6812bb7
13 .RI [ command ] 13 .RI [ command ]
14 14
15 .B dbclient 15 .B dbclient
16 [ 16 [
17 .I args ] 17 .I args ]
18 .I [user1]@host1[#port1],[user2]@host2[#port2],... 18 .I [user1]@host1[%port1],[user2]@host2[%port2],...
19 19
20 .SH DESCRIPTION 20 .SH DESCRIPTION
21 .B dbclient 21 .B dbclient
22 is a SSH 2 client designed to be small enough to be used in small memory 22 is a SSH 2 client designed to be small enough to be used in small memory
23 environments, while still being functional and secure enough for general use. 23 environments, while still being functional and secure enough for general use.
24 .SH OPTIONS 24 .SH OPTIONS
25 .TP 25 .TP
26 .B \-p \fIport 26 .B \-p \fIport
27 Connect to 27 Connect to
28 .I port 28 .I port
29 on the remote host. Alternatively a port can be specified as hostname#port. 29 on the remote host. Alternatively a port can be specified as hostname%port.
30 Default is 22. 30 Default is 22.
31 .TP 31 .TP
32 .B \-i \fIidfile 32 .B \-i \fIidfile
33 Identity file. 33 Identity file.
34 Read the identity from file 34 Read the identity from file
124 .SH MULTI-HOP 124 .SH MULTI-HOP
125 Dropbear will also allow multiple "hops" to be specified, separated by commas. In 125 Dropbear will also allow multiple "hops" to be specified, separated by commas. In
126 this case a connection will be made to the first host, then a TCP forwarded 126 this case a connection will be made to the first host, then a TCP forwarded
127 connection will be made through that to the second host, and so on. Hosts other than 127 connection will be made through that to the second host, and so on. Hosts other than
128 the final destination will not see anything other than the encrypted SSH stream. 128 the final destination will not see anything other than the encrypted SSH stream.
129 A port for a host can be specified with a hash (eg matt@martello#44 ). 129 A port for a host can be specified with a hash (eg matt@martello%44 ).
130 This syntax can also be used with scp or rsync (specifying dbclient as the 130 This syntax can also be used with scp or rsync (specifying dbclient as the
131 ssh/rsh command). A file can be "bounced" through multiple SSH hops, eg 131 ssh/rsh command). A file can be "bounced" through multiple SSH hops, eg
132 132
133 scp -S dbclient matt@martello,root@wrt,canyons:/tmp/dump . 133 scp -S dbclient matt@martello,root@wrt,canyons:/tmp/dump .
134 134