comparison dbclient.1 @ 895:5608a5a61c2a

Change port separator to ^ since % is used in ipv6 addresses
author Matt Johnston <matt@ucc.asn.au>
date Sat, 15 Feb 2014 21:42:35 +0800
parents f8b28a3de6cb
children 17d874ae93a1
comparison
equal deleted inserted replaced
894:7032deca6b90 895:5608a5a61c2a
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 client designed to be small enough to be used in small memory 22 is a SSH 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 key from file 34 Read the identity key from file
125 .SH MULTI-HOP 125 .SH MULTI-HOP
126 Dropbear will also allow multiple "hops" to be specified, separated by commas. In 126 Dropbear will also allow multiple "hops" to be specified, separated by commas. In
127 this case a connection will be made to the first host, then a TCP forwarded 127 this case a connection will be made to the first host, then a TCP forwarded
128 connection will be made through that to the second host, and so on. Hosts other than 128 connection will be made through that to the second host, and so on. Hosts other than
129 the final destination will not see anything other than the encrypted SSH stream. 129 the final destination will not see anything other than the encrypted SSH stream.
130 A port for a host can be specified with a hash (eg matt@martello%44 ). 130 A port for a host can be specified with a hash (eg matt@martello^44 ).
131 This syntax can also be used with scp or rsync (specifying dbclient as the 131 This syntax can also be used with scp or rsync (specifying dbclient as the
132 ssh/rsh command). A file can be "bounced" through multiple SSH hops, eg 132 ssh/rsh command). A file can be "bounced" through multiple SSH hops, eg
133 133
134 scp -S dbclient matt@martello,root@wrt,canyons:/tmp/dump . 134 scp -S dbclient matt@martello,root@wrt,canyons:/tmp/dump .
135 135