blob: 753a4f2b981498af0d0e48f9730ae22e85dd990d [file] [log] [blame]
Damien Millerc2b98272003-09-03 12:13:30 +10001.\" $OpenBSD: sftp.1,v 1.45 2003/09/02 18:50:06 jmc Exp $
Damien Miller33804262001-02-04 23:20:18 +11002.\"
Ben Lindstrom92a2e382001-03-05 06:59:27 +00003.\" Copyright (c) 2001 Damien Miller. All rights reserved.
Damien Miller33804262001-02-04 23:20:18 +11004.\"
5.\" Redistribution and use in source and binary forms, with or without
6.\" modification, are permitted provided that the following conditions
7.\" are met:
8.\" 1. Redistributions of source code must retain the above copyright
9.\" notice, this list of conditions and the following disclaimer.
10.\" 2. Redistributions in binary form must reproduce the above copyright
11.\" notice, this list of conditions and the following disclaimer in the
12.\" documentation and/or other materials provided with the distribution.
13.\"
14.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24.\"
Ben Lindstrom8ffeacf2001-04-10 02:43:57 +000025.Dd February 4, 2001
Damien Miller33804262001-02-04 23:20:18 +110026.Dt SFTP 1
27.Os
28.Sh NAME
29.Nm sftp
Damien Miller50677922003-05-23 18:44:04 +100030.Nd secure file transfer program
Damien Miller33804262001-02-04 23:20:18 +110031.Sh SYNOPSIS
Damien Millerd6ead282003-05-14 19:30:38 +100032.Nm sftp
Damien Miller495dca32003-04-01 21:42:14 +100033.Bk -words
Damien Miller81b6e782002-02-08 22:06:03 +110034.Op Fl vC1
Ben Lindstrom562c26b2001-03-07 01:26:48 +000035.Op Fl b Ar batchfile
Damien Miller33804262001-02-04 23:20:18 +110036.Op Fl o Ar ssh_option
Ben Lindstrom6a337632001-09-18 05:47:32 +000037.Op Fl s Ar subsystem | sftp_server
Damien Miller81b6e782002-02-08 22:06:03 +110038.Op Fl B Ar buffer_size
39.Op Fl F Ar ssh_config
40.Op Fl P Ar sftp_server path
Damien Miller16a13332002-02-13 14:03:56 +110041.Op Fl R Ar num_requests
Ben Lindstrom6a337632001-09-18 05:47:32 +000042.Op Fl S Ar program
43.Ar host
Damien Miller495dca32003-04-01 21:42:14 +100044.Ek
Damien Millerd6ead282003-05-14 19:30:38 +100045.Nm sftp
Damien Millerc2b98272003-09-03 12:13:30 +100046.Oo Oo Ar user Ns @ Oc Ns
Damien Miller495dca32003-04-01 21:42:14 +100047.Ar host Ns Oo : Ns Ar file Oo
48.Ar file Oc Oc Oc
Damien Millerd6ead282003-05-14 19:30:38 +100049.Nm sftp
Damien Millerc2b98272003-09-03 12:13:30 +100050.Oo Oo Ar user Ns @ Oc Ns
Damien Miller495dca32003-04-01 21:42:14 +100051.Ar host Ns Oo : Ns Ar dir Ns
52.Oo Ar / Oc Oc Oc
Damien Millerd6ead282003-05-14 19:30:38 +100053.Nm sftp
Damien Millerfb7508e2003-05-14 13:47:07 +100054.Fl b Ar batchfile
Damien Millerc2b98272003-09-03 12:13:30 +100055.Oo Ar user Ns @ Oc Ns Ar host
Damien Miller33804262001-02-04 23:20:18 +110056.Sh DESCRIPTION
57.Nm
58is an interactive file transfer program, similar to
59.Xr ftp 1 ,
60which performs all operations over an encrypted
61.Xr ssh 1
62transport.
63It may also use many features of ssh, such as public key authentication and
64compression.
65.Nm
66connects and logs into the specified
Ben Lindstromaafff9c2001-05-06 03:01:02 +000067.Ar host ,
Damien Miller33804262001-02-04 23:20:18 +110068then enters an interactive command mode.
69.Pp
Ben Lindstrom24643222001-06-25 05:08:11 +000070The second usage format will retrieve files automatically if a non-interactive
Ben Lindstromaafff9c2001-05-06 03:01:02 +000071authentication method is used; otherwise it will do so after
72successful interactive authentication.
Ben Lindstrom63667f62001-04-13 00:00:14 +000073.Pp
Damien Millerfb7508e2003-05-14 13:47:07 +100074The third usage format allows the sftp client to start in a remote directory.
Ben Lindstrom63667f62001-04-13 00:00:14 +000075.Pp
Damien Miller50677922003-05-23 18:44:04 +100076The final usage format allows for automated sessions using the
Damien Millerfb7508e2003-05-14 13:47:07 +100077.Fl b
Damien Miller50677922003-05-23 18:44:04 +100078option.
79In such cases, it is usually necessary to configure public key authentication
80to obviate the need to enter a password at connection time (see
Damien Millerfb7508e2003-05-14 13:47:07 +100081.Xr sshd 8
Damien Millerd6ead282003-05-14 19:30:38 +100082and
Damien Millerfb7508e2003-05-14 13:47:07 +100083.Xr ssh-keygen 1
Damien Miller50677922003-05-23 18:44:04 +100084for details).
Damien Miller33804262001-02-04 23:20:18 +110085The options are as follows:
86.Bl -tag -width Ds
Ben Lindstrom562c26b2001-03-07 01:26:48 +000087.It Fl b Ar batchfile
88Batch mode reads a series of commands from an input
Ben Lindstrom283cb822001-03-09 00:09:02 +000089.Ar batchfile
Ben Lindstrom562c26b2001-03-07 01:26:48 +000090instead of
Ben Lindstrom283cb822001-03-09 00:09:02 +000091.Em stdin .
92Since it lacks user interaction it should be used in conjunction with
93non-interactive authentication.
94.Nm
Ben Lindstrom24643222001-06-25 05:08:11 +000095will abort if any of the following
96commands fail:
Ben Lindstrom3612bda2002-03-05 01:26:38 +000097.Ic get , put , rename , ln ,
Damien Miller495dca32003-04-01 21:42:14 +100098.Ic rm , mkdir , chdir , ls ,
Damien Miller956f3fb2003-01-10 21:40:00 +110099.Ic lchdir , chmod , chown , chgrp , lpwd
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000100and
Ben Lindstrom283cb822001-03-09 00:09:02 +0000101.Ic lmkdir .
Damien Miller495dca32003-04-01 21:42:14 +1000102Termination on error can be suppressed on a command by command basis by
103prefixing the command with a
Damien Miller50677922003-05-23 18:44:04 +1000104.Sq Ic \-
105character (for example,
106.Ic -rm /tmp/blah* ) .
Damien Miller33804262001-02-04 23:20:18 +1100107.It Fl o Ar ssh_option
Ben Lindstrom14c62eb2001-08-15 23:25:46 +0000108Can be used to pass options to
109.Nm ssh
Ben Lindstrom3072aae2002-06-21 01:02:39 +0000110in the format used in
111.Xr ssh_config 5 .
112This is useful for specifying options
Ben Lindstrom14c62eb2001-08-15 23:25:46 +0000113for which there is no separate
114.Nm sftp
Damien Miller50677922003-05-23 18:44:04 +1000115command-line flag.
116For example, to specify an alternate port use:
Ben Lindstrom6a337632001-09-18 05:47:32 +0000117.Ic sftp -oPort=24 .
118.It Fl s Ar subsystem | sftp_server
119Specifies the SSH2 subsystem or the path for an sftp server
Damien Miller50677922003-05-23 18:44:04 +1000120on the remote host.
121A path is useful for using
122.Nm
123over protocol version 1, or when the remote
124.Xr sshd 8
Ben Lindstrom6a337632001-09-18 05:47:32 +0000125does not have an sftp subsystem configured.
Damien Miller81b6e782002-02-08 22:06:03 +1100126.It Fl v
Damien Miller50677922003-05-23 18:44:04 +1000127Raise logging level.
128This option is also passed to ssh.
Damien Miller81b6e782002-02-08 22:06:03 +1100129.It Fl B Ar buffer_size
Damien Miller495dca32003-04-01 21:42:14 +1000130Specify the size of the buffer that
Damien Miller81b6e782002-02-08 22:06:03 +1100131.Nm
Damien Miller50677922003-05-23 18:44:04 +1000132uses when transferring files.
133Larger buffers require fewer round trips at the cost of higher
134memory consumption.
135The default is 32768 bytes.
Damien Miller81b6e782002-02-08 22:06:03 +1100136.It Fl C
137Enables compression (via ssh's
138.Fl C
139flag).
140.It Fl F Ar ssh_config
141Specifies an alternative
142per-user configuration file for
Damien Miller50677922003-05-23 18:44:04 +1000143.Xr ssh 1 .
Damien Miller81b6e782002-02-08 22:06:03 +1100144This option is directly passed to
145.Xr ssh 1 .
146.It Fl P Ar sftp_server path
Damien Miller50677922003-05-23 18:44:04 +1000147Connect directly to a local sftp server
Damien Miller81b6e782002-02-08 22:06:03 +1100148(rather than via
Damien Miller50677922003-05-23 18:44:04 +1000149.Xr ssh 1 )
Damien Miller81b6e782002-02-08 22:06:03 +1100150This option may be useful in debugging the client and server.
Damien Miller16a13332002-02-13 14:03:56 +1100151.It Fl R Ar num_requests
Damien Miller50677922003-05-23 18:44:04 +1000152Specify how many requests may be outstanding at any one time.
153Increasing this may slightly improve file transfer speed
154but will increase memory usage.
155The default is 16 outstanding requests.
Ben Lindstrom6a337632001-09-18 05:47:32 +0000156.It Fl S Ar program
157Name of the
158.Ar program
159to use for the encrypted connection.
160The program must understand
161.Xr ssh 1
162options.
Damien Miller81b6e782002-02-08 22:06:03 +1100163.It Fl 1
164Specify the use of protocol version 1.
Damien Miller33804262001-02-04 23:20:18 +1100165.El
166.Sh INTERACTIVE COMMANDS
Damien Millerd7686fd2001-02-10 00:40:03 +1100167Once in interactive mode,
168.Nm
Ben Lindstrom24643222001-06-25 05:08:11 +0000169understands a set of commands similar to those of
Damien Miller33804262001-02-04 23:20:18 +1100170.Xr ftp 1 .
Ben Lindstrom27cb1d02001-02-10 21:59:35 +0000171Commands are case insensitive and pathnames may be enclosed in quotes if they
172contain spaces.
Damien Miller33804262001-02-04 23:20:18 +1100173.Bl -tag -width Ds
Ben Lindstrom59e12492001-08-15 23:22:56 +0000174.It Ic bye
Damien Miller50677922003-05-23 18:44:04 +1000175Quit
176.Nm sftp .
Damien Millerd7686fd2001-02-10 00:40:03 +1100177.It Ic cd Ar path
Ben Lindstrom24643222001-06-25 05:08:11 +0000178Change remote directory to
Damien Millerd7686fd2001-02-10 00:40:03 +1100179.Ar path .
180.It Ic lcd Ar path
Ben Lindstrom24643222001-06-25 05:08:11 +0000181Change local directory to
Damien Millerd7686fd2001-02-10 00:40:03 +1100182.Ar path .
183.It Ic chgrp Ar grp Ar path
Ben Lindstrom24643222001-06-25 05:08:11 +0000184Change group of file
Damien Millerd7686fd2001-02-10 00:40:03 +1100185.Ar path
186to
Damien Miller33804262001-02-04 23:20:18 +1100187.Ar grp .
188.Ar grp
Damien Millerd7686fd2001-02-10 00:40:03 +1100189must be a numeric GID.
190.It Ic chmod Ar mode Ar path
Ben Lindstrom24643222001-06-25 05:08:11 +0000191Change permissions of file
Damien Millerd7686fd2001-02-10 00:40:03 +1100192.Ar path
193to
194.Ar mode .
195.It Ic chown Ar own Ar path
Ben Lindstrom24643222001-06-25 05:08:11 +0000196Change owner of file
Damien Millerd7686fd2001-02-10 00:40:03 +1100197.Ar path
198to
Damien Miller33804262001-02-04 23:20:18 +1100199.Ar own .
200.Ar own
201must be a numeric UID.
Ben Lindstromc9b6eab2001-03-07 01:29:17 +0000202.It Ic exit
Damien Miller50677922003-05-23 18:44:04 +1000203Quit
204.Nm sftp .
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000205.It Xo Ic get
206.Op Ar flags
207.Ar remote-path
208.Op Ar local-path
209.Xc
Damien Miller33804262001-02-04 23:20:18 +1100210Retrieve the
Damien Millerd7686fd2001-02-10 00:40:03 +1100211.Ar remote-path
Damien Miller33804262001-02-04 23:20:18 +1100212and store it on the local machine.
213If the local
Ben Lindstrom24643222001-06-25 05:08:11 +0000214path name is not specified, it is given the same name it has on the
Damien Miller50677922003-05-23 18:44:04 +1000215remote machine.
216If the
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000217.Fl P
218flag is specified, then the file's full permission and access time are
219copied too.
Ben Lindstromc9b6eab2001-03-07 01:29:17 +0000220.It Ic help
221Display help text.
Damien Millerd7686fd2001-02-10 00:40:03 +1100222.It Ic lls Op Ar ls-options Op Ar path
Ben Lindstrom24643222001-06-25 05:08:11 +0000223Display local directory listing of either
Damien Miller33804262001-02-04 23:20:18 +1100224.Ar path
225or current directory if
226.Ar path
Damien Millerd7686fd2001-02-10 00:40:03 +1100227is not specified.
228.It Ic lmkdir Ar path
Damien Miller33804262001-02-04 23:20:18 +1100229Create local directory specified by
Damien Millerd7686fd2001-02-10 00:40:03 +1100230.Ar path .
Damien Miller058316f2001-03-08 10:08:49 +1100231.It Ic ln Ar oldpath Ar newpath
Ben Lindstrom24643222001-06-25 05:08:11 +0000232Create a symbolic link from
Damien Miller058316f2001-03-08 10:08:49 +1100233.Ar oldpath
234to
235.Ar newpath .
Damien Millerd7686fd2001-02-10 00:40:03 +1100236.It Ic lpwd
237Print local working directory.
Damien Millere1a49812002-09-12 09:54:25 +1000238.It Xo Ic ls
239.Op Ar flags
240.Op Ar path
241.Xc
Damien Miller33804262001-02-04 23:20:18 +1100242Display remote directory listing of either
243.Ar path
Damien Millerd7686fd2001-02-10 00:40:03 +1100244or current directory if
Damien Miller33804262001-02-04 23:20:18 +1100245.Ar path
Damien Miller50677922003-05-23 18:44:04 +1000246is not specified.
247If the
Damien Millere1a49812002-09-12 09:54:25 +1000248.Fl l
249flag is specified, then display additional details including permissions
250and ownership information.
Damien Millerd7686fd2001-02-10 00:40:03 +1100251.It Ic lumask Ar umask
Ben Lindstrom24643222001-06-25 05:08:11 +0000252Set local umask to
Damien Millerd7686fd2001-02-10 00:40:03 +1100253.Ar umask .
254.It Ic mkdir Ar path
255Create remote directory specified by
256.Ar path .
Damien Miller62d57f62003-01-10 21:43:24 +1100257.It Ic progress
258Toggle display of progress meter.
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000259.It Xo Ic put
260.Op Ar flags
261.Ar local-path
Ben Lindstromd5767812002-12-23 02:23:37 +0000262.Op Ar remote-path
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000263.Xc
Damien Miller33804262001-02-04 23:20:18 +1100264Upload
Damien Millerd7686fd2001-02-10 00:40:03 +1100265.Ar local-path
Damien Miller50677922003-05-23 18:44:04 +1000266and store it on the remote machine.
267If the remote path name is not specified, it is given the same name it has
268on the local machine.
269If the
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000270.Fl P
271flag is specified, then the file's full permission and access time are
272copied too.
Damien Millerd7686fd2001-02-10 00:40:03 +1100273.It Ic pwd
274Display remote working directory.
Damien Millerd7686fd2001-02-10 00:40:03 +1100275.It Ic quit
Damien Miller50677922003-05-23 18:44:04 +1000276Quit
277.Nm sftp .
Damien Millerd7686fd2001-02-10 00:40:03 +1100278.It Ic rename Ar oldpath Ar newpath
Damien Miller33804262001-02-04 23:20:18 +1100279Rename remote file from
280.Ar oldpath
281to
Damien Millerd7686fd2001-02-10 00:40:03 +1100282.Ar newpath .
283.It Ic rmdir Ar path
Damien Miller33804262001-02-04 23:20:18 +1100284Remove remote directory specified by
Damien Millerd7686fd2001-02-10 00:40:03 +1100285.Ar path .
286.It Ic rm Ar path
Damien Miller33804262001-02-04 23:20:18 +1100287Delete remote file specified by
Damien Millerd7686fd2001-02-10 00:40:03 +1100288.Ar path .
Damien Miller058316f2001-03-08 10:08:49 +1100289.It Ic symlink Ar oldpath Ar newpath
Ben Lindstrom24643222001-06-25 05:08:11 +0000290Create a symbolic link from
Damien Miller058316f2001-03-08 10:08:49 +1100291.Ar oldpath
292to
293.Ar newpath .
Damien Miller63421802003-01-08 14:05:23 +1100294.It Ic version
295Display the
296.Nm
297protocol version.
Damien Millerc2b98272003-09-03 12:13:30 +1000298.It Ic \&! Ar command
Ben Lindstrom24643222001-06-25 05:08:11 +0000299Execute
Damien Miller33804262001-02-04 23:20:18 +1100300.Ar command
Damien Millerd7686fd2001-02-10 00:40:03 +1100301in local shell.
Damien Millerc2b98272003-09-03 12:13:30 +1000302.It Ic \&!
Damien Millerd7686fd2001-02-10 00:40:03 +1100303Escape to local shell.
Damien Millerc2b98272003-09-03 12:13:30 +1000304.It Ic \&?
Damien Millerd7686fd2001-02-10 00:40:03 +1100305Synonym for help.
306.El
Damien Miller33804262001-02-04 23:20:18 +1100307.Sh SEE ALSO
Ben Lindstrom160ec622001-04-22 17:17:46 +0000308.Xr scp 1 ,
Damien Miller33804262001-02-04 23:20:18 +1100309.Xr ssh 1 ,
310.Xr ssh-add 1 ,
311.Xr ssh-keygen 1 ,
Ben Lindstrom3072aae2002-06-21 01:02:39 +0000312.Xr ssh_config 5 ,
Ben Lindstrom160ec622001-04-22 17:17:46 +0000313.Xr sftp-server 8 ,
314.Xr sshd 8
315.Rs
Ben Lindstrom90fd0602001-06-25 04:45:33 +0000316.%A T. Ylonen
317.%A S. Lehtinen
Ben Lindstrom160ec622001-04-22 17:17:46 +0000318.%T "SSH File Transfer Protocol"
319.%N draft-ietf-secsh-filexfer-00.txt
320.%D January 2001
321.%O work in progress material
322.Re