~cjwatson/ubuntu/precise/openssh/precise-proposed

« back to all changes in this revision

Viewing changes to sftp.1

  • Committer: Colin Watson
  • Date: 2011-01-24 12:43:25 UTC
  • mfrom: (2660.2.14 gssapi)
  • mto: This revision was merged to the branch mainline in revision 3226.
  • Revision ID: cjwatson@debian.org-20110124124325-lpg368jr1esoeqtt
* New upstream release (http://www.openssh.org/txt/release-5.7):
  - Implement Elliptic Curve Cryptography modes for key exchange (ECDH)
    and host/user keys (ECDSA) as specified by RFC5656.  ECDH and ECDSA
    offer better performance than plain DH and DSA at the same equivalent
    symmetric key length, as well as much shorter keys.
  - sftp(1)/sftp-server(8): add a protocol extension to support a hard
    link operation.  It is available through the "ln" command in the
    client.  The old "ln" behaviour of creating a symlink is available
    using its "-s" option or through the preexisting "symlink" command.
  - scp(1): Add a new -3 option to scp: Copies between two remote hosts
    are transferred through the local host (closes: #508613).
  - ssh(1): "atomically" create the listening mux socket by binding it on
    a temporary name and then linking it into position after listen() has
    succeeded.  This allows the mux clients to determine that the server
    socket is either ready or stale without races (closes: #454784).
    Stale server sockets are now automatically removed (closes: #523250).
  - ssh(1): install a SIGCHLD handler to reap expired child process
    (closes: #594687).
  - ssh(1)/ssh-agent(1): honour $TMPDIR for client xauth and ssh-agent
    temporary directories (closes: #357469, although only if you arrange
    for ssh-agent to actually see $TMPDIR since the setgid bit will cause
    it to be stripped off).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
.\" $OpenBSD: sftp.1,v 1.83 2010/02/08 10:50:20 markus Exp $
 
1
.\" $OpenBSD: sftp.1,v 1.88 2010/12/04 00:18:01 djm Exp $
2
2
.\"
3
3
.\" Copyright (c) 2001 Damien Miller.  All rights reserved.
4
4
.\"
22
22
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23
23
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
24
.\"
25
 
.Dd $Mdocdate: February 8 2010 $
 
25
.Dd $Mdocdate: December 4 2010 $
26
26
.Dt SFTP 1
27
27
.Os
28
28
.Sh NAME
38
38
.Op Fl D Ar sftp_server_path
39
39
.Op Fl F Ar ssh_config
40
40
.Op Fl i Ar identity_file
 
41
.Op Fl l Ar limit
41
42
.Op Fl o Ar ssh_option
42
43
.Op Fl P Ar port
43
44
.Op Fl R Ar num_requests
49
50
.Oo Ar user Ns @ Oc Ns
50
51
.Ar host Ns Op : Ns Ar
51
52
.Nm sftp
52
 
.Oo Ar user Ns @ Oc Ns
 
53
.Oo
 
54
.Ar user Ns @ Oc Ns
53
55
.Ar host Ns Oo : Ns Ar dir Ns
54
 
.Op Ar / Oc
 
56
.Op Ar /
 
57
.Oc
55
58
.Nm sftp
56
59
.Fl b Ar batchfile
57
60
.Oo Ar user Ns @ Oc Ns Ar host
125
128
.Ic get , put , rename , ln ,
126
129
.Ic rm , mkdir , chdir , ls ,
127
130
.Ic lchdir , chmod , chown ,
128
 
.Ic chgrp , lpwd , df ,
 
131
.Ic chgrp , lpwd , df , symlink ,
129
132
and
130
133
.Ic lmkdir .
131
134
Termination on error can be suppressed on a command by command basis by
157
160
authentication is read.
158
161
This option is directly passed to
159
162
.Xr ssh 1 .
 
163
.It Fl l Ar limit
 
164
Limits the used bandwidth, specified in Kbit/s.
160
165
.It Fl o Ar ssh_option
161
166
Can be used to pass options to
162
167
.Nm ssh
196
201
.It HostName
197
202
.It IdentityFile
198
203
.It IdentitiesOnly
 
204
.It IPQoS
199
205
.It KbdInteractiveDevices
 
206
.It KexAlgorithms
200
207
.It LogLevel
201
208
.It MACs
202
209
.It NoHostAuthenticationForLocalhost
385
392
.It Ic lmkdir Ar path
386
393
Create local directory specified by
387
394
.Ar path .
388
 
.It Ic ln Ar oldpath Ar newpath
389
 
Create a symbolic link from
 
395
.It Xo Ic ln
 
396
.Op Fl s
 
397
.Ar oldpath
 
398
.Ar newpath
 
399
.Xc
 
400
Create a link from
390
401
.Ar oldpath
391
402
to
392
403
.Ar newpath .
 
404
If the
 
405
.Fl s
 
406
flag is specified the created link is a symbolic link, otherwise it is
 
407
a hard link.
393
408
.It Ic lpwd
394
409
Print local working directory.
395
410
.It Xo Ic ls