blob: ecd4d31748c8adba0421246536df7fddedf1e803 [file] [log] [blame]
Damien Miller62d57f62003-01-10 21:43:24 +11001.\" $OpenBSD: sftp.1,v 1.40 2003/01/10 08:19:07 fgsch 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 Miller225736c2001-02-19 21:51:08 +110030.Nd Secure file transfer program
Damien Miller33804262001-02-04 23:20:18 +110031.Sh SYNOPSIS
32.Nm sftp
Damien Miller81b6e782002-02-08 22:06:03 +110033.Op Fl vC1
Ben Lindstrom562c26b2001-03-07 01:26:48 +000034.Op Fl b Ar batchfile
Damien Miller33804262001-02-04 23:20:18 +110035.Op Fl o Ar ssh_option
Ben Lindstrom6a337632001-09-18 05:47:32 +000036.Op Fl s Ar subsystem | sftp_server
Damien Miller81b6e782002-02-08 22:06:03 +110037.Op Fl B Ar buffer_size
38.Op Fl F Ar ssh_config
39.Op Fl P Ar sftp_server path
Damien Miller16a13332002-02-13 14:03:56 +110040.Op Fl R Ar num_requests
Ben Lindstrom6a337632001-09-18 05:47:32 +000041.Op Fl S Ar program
42.Ar host
Ben Lindstrom63667f62001-04-13 00:00:14 +000043.Nm sftp
44.Op [\fIuser\fR@]\fIhost\fR[:\fIfile\fR [\fIfile\fR]]
45.Nm sftp
Ben Lindstrom24643222001-06-25 05:08:11 +000046.Op [\fIuser\fR@]\fIhost\fR[:\fIdir\fR[\fI/\fR]]
Damien Miller33804262001-02-04 23:20:18 +110047.Sh DESCRIPTION
48.Nm
49is an interactive file transfer program, similar to
50.Xr ftp 1 ,
51which performs all operations over an encrypted
52.Xr ssh 1
53transport.
54It may also use many features of ssh, such as public key authentication and
55compression.
56.Nm
57connects and logs into the specified
Ben Lindstromaafff9c2001-05-06 03:01:02 +000058.Ar host ,
Damien Miller33804262001-02-04 23:20:18 +110059then enters an interactive command mode.
60.Pp
Ben Lindstrom24643222001-06-25 05:08:11 +000061The second usage format will retrieve files automatically if a non-interactive
Ben Lindstromaafff9c2001-05-06 03:01:02 +000062authentication method is used; otherwise it will do so after
63successful interactive authentication.
Ben Lindstrom63667f62001-04-13 00:00:14 +000064.Pp
65The last usage format allows the sftp client to start in a remote directory.
66.Pp
Damien Miller33804262001-02-04 23:20:18 +110067The options are as follows:
68.Bl -tag -width Ds
Ben Lindstrom562c26b2001-03-07 01:26:48 +000069.It Fl b Ar batchfile
70Batch mode reads a series of commands from an input
Ben Lindstrom283cb822001-03-09 00:09:02 +000071.Ar batchfile
Ben Lindstrom562c26b2001-03-07 01:26:48 +000072instead of
Ben Lindstrom283cb822001-03-09 00:09:02 +000073.Em stdin .
74Since it lacks user interaction it should be used in conjunction with
75non-interactive authentication.
76.Nm
Ben Lindstrom24643222001-06-25 05:08:11 +000077will abort if any of the following
78commands fail:
Ben Lindstrom3612bda2002-03-05 01:26:38 +000079.Ic get , put , rename , ln ,
Damien Miller956f3fb2003-01-10 21:40:00 +110080.Ic rm , mkdir , chdir , ls ,
81.Ic lchdir , chmod , chown , chgrp , lpwd
Ben Lindstrom562c26b2001-03-07 01:26:48 +000082and
Ben Lindstrom283cb822001-03-09 00:09:02 +000083.Ic lmkdir .
Damien Miller956f3fb2003-01-10 21:40:00 +110084Termination on error can be suppressed on a command by command basis by
85prefixing the command with a
86.Ic '-'
87character (For example,
88.Ic -rm /tmp/blah*
89).
Damien Miller33804262001-02-04 23:20:18 +110090.It Fl o Ar ssh_option
Ben Lindstrom14c62eb2001-08-15 23:25:46 +000091Can be used to pass options to
92.Nm ssh
Ben Lindstrom3072aae2002-06-21 01:02:39 +000093in the format used in
94.Xr ssh_config 5 .
95This is useful for specifying options
Ben Lindstrom14c62eb2001-08-15 23:25:46 +000096for which there is no separate
97.Nm sftp
Ben Lindstrom6a337632001-09-18 05:47:32 +000098command-line flag. For example, to specify an alternate
99port use:
100.Ic sftp -oPort=24 .
101.It Fl s Ar subsystem | sftp_server
102Specifies the SSH2 subsystem or the path for an sftp server
103on the remote host. A path is useful for using sftp over
104protocol version 1, or when the remote
105.Nm sshd
106does not have an sftp subsystem configured.
Damien Miller81b6e782002-02-08 22:06:03 +1100107.It Fl v
108Raise logging level. This option is also passed to ssh.
109.It Fl B Ar buffer_size
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000110Specify the size of the buffer that
Damien Miller81b6e782002-02-08 22:06:03 +1100111.Nm
112uses when transferring files. Larger buffers require fewer round trips at
113the cost of higher memory consumption. The default is 32768 bytes.
114.It Fl C
115Enables compression (via ssh's
116.Fl C
117flag).
118.It Fl F Ar ssh_config
119Specifies an alternative
120per-user configuration file for
121.Nm ssh .
122This option is directly passed to
123.Xr ssh 1 .
124.It Fl P Ar sftp_server path
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000125Connect directly to a local
126.Nm sftp-server
Damien Miller81b6e782002-02-08 22:06:03 +1100127(rather than via
128.Nm ssh )
129This option may be useful in debugging the client and server.
Damien Miller16a13332002-02-13 14:03:56 +1100130.It Fl R Ar num_requests
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000131Specify how many requests may be outstanding at any one time. Increasing
Damien Miller16a13332002-02-13 14:03:56 +1100132this may slightly improve file transfer speed but will increase memory
133usage. The default is 16 outstanding requests.
Ben Lindstrom6a337632001-09-18 05:47:32 +0000134.It Fl S Ar program
135Name of the
136.Ar program
137to use for the encrypted connection.
138The program must understand
139.Xr ssh 1
140options.
Damien Miller81b6e782002-02-08 22:06:03 +1100141.It Fl 1
142Specify the use of protocol version 1.
Damien Miller33804262001-02-04 23:20:18 +1100143.El
144.Sh INTERACTIVE COMMANDS
Damien Millerd7686fd2001-02-10 00:40:03 +1100145Once in interactive mode,
146.Nm
Ben Lindstrom24643222001-06-25 05:08:11 +0000147understands a set of commands similar to those of
Damien Miller33804262001-02-04 23:20:18 +1100148.Xr ftp 1 .
Ben Lindstrom27cb1d02001-02-10 21:59:35 +0000149Commands are case insensitive and pathnames may be enclosed in quotes if they
150contain spaces.
Damien Miller33804262001-02-04 23:20:18 +1100151.Bl -tag -width Ds
Ben Lindstrom59e12492001-08-15 23:22:56 +0000152.It Ic bye
153Quit sftp.
Damien Millerd7686fd2001-02-10 00:40:03 +1100154.It Ic cd Ar path
Ben Lindstrom24643222001-06-25 05:08:11 +0000155Change remote directory to
Damien Millerd7686fd2001-02-10 00:40:03 +1100156.Ar path .
157.It Ic lcd Ar path
Ben Lindstrom24643222001-06-25 05:08:11 +0000158Change local directory to
Damien Millerd7686fd2001-02-10 00:40:03 +1100159.Ar path .
160.It Ic chgrp Ar grp Ar path
Ben Lindstrom24643222001-06-25 05:08:11 +0000161Change group of file
Damien Millerd7686fd2001-02-10 00:40:03 +1100162.Ar path
163to
Damien Miller33804262001-02-04 23:20:18 +1100164.Ar grp .
165.Ar grp
Damien Millerd7686fd2001-02-10 00:40:03 +1100166must be a numeric GID.
167.It Ic chmod Ar mode Ar path
Ben Lindstrom24643222001-06-25 05:08:11 +0000168Change permissions of file
Damien Millerd7686fd2001-02-10 00:40:03 +1100169.Ar path
170to
171.Ar mode .
172.It Ic chown Ar own Ar path
Ben Lindstrom24643222001-06-25 05:08:11 +0000173Change owner of file
Damien Millerd7686fd2001-02-10 00:40:03 +1100174.Ar path
175to
Damien Miller33804262001-02-04 23:20:18 +1100176.Ar own .
177.Ar own
178must be a numeric UID.
Ben Lindstromc9b6eab2001-03-07 01:29:17 +0000179.It Ic exit
180Quit sftp.
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000181.It Xo Ic get
182.Op Ar flags
183.Ar remote-path
184.Op Ar local-path
185.Xc
Damien Miller33804262001-02-04 23:20:18 +1100186Retrieve the
Damien Millerd7686fd2001-02-10 00:40:03 +1100187.Ar remote-path
Damien Miller33804262001-02-04 23:20:18 +1100188and store it on the local machine.
189If the local
Ben Lindstrom24643222001-06-25 05:08:11 +0000190path name is not specified, it is given the same name it has on the
191remote machine. If the
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000192.Fl P
193flag is specified, then the file's full permission and access time are
194copied too.
Ben Lindstromc9b6eab2001-03-07 01:29:17 +0000195.It Ic help
196Display help text.
Damien Millerd7686fd2001-02-10 00:40:03 +1100197.It Ic lls Op Ar ls-options Op Ar path
Ben Lindstrom24643222001-06-25 05:08:11 +0000198Display local directory listing of either
Damien Miller33804262001-02-04 23:20:18 +1100199.Ar path
200or current directory if
201.Ar path
Damien Millerd7686fd2001-02-10 00:40:03 +1100202is not specified.
203.It Ic lmkdir Ar path
Damien Miller33804262001-02-04 23:20:18 +1100204Create local directory specified by
Damien Millerd7686fd2001-02-10 00:40:03 +1100205.Ar path .
Damien Miller058316f2001-03-08 10:08:49 +1100206.It Ic ln Ar oldpath Ar newpath
Ben Lindstrom24643222001-06-25 05:08:11 +0000207Create a symbolic link from
Damien Miller058316f2001-03-08 10:08:49 +1100208.Ar oldpath
209to
210.Ar newpath .
Damien Millerd7686fd2001-02-10 00:40:03 +1100211.It Ic lpwd
212Print local working directory.
Damien Millere1a49812002-09-12 09:54:25 +1000213.It Xo Ic ls
214.Op Ar flags
215.Op Ar path
216.Xc
Damien Miller33804262001-02-04 23:20:18 +1100217Display remote directory listing of either
218.Ar path
Damien Millerd7686fd2001-02-10 00:40:03 +1100219or current directory if
Damien Miller33804262001-02-04 23:20:18 +1100220.Ar path
Damien Millere1a49812002-09-12 09:54:25 +1000221is not specified. If the
222.Fl l
223flag is specified, then display additional details including permissions
224and ownership information.
Damien Millerd7686fd2001-02-10 00:40:03 +1100225.It Ic lumask Ar umask
Ben Lindstrom24643222001-06-25 05:08:11 +0000226Set local umask to
Damien Millerd7686fd2001-02-10 00:40:03 +1100227.Ar umask .
228.It Ic mkdir Ar path
229Create remote directory specified by
230.Ar path .
Damien Miller62d57f62003-01-10 21:43:24 +1100231.It Ic progress
232Toggle display of progress meter.
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000233.It Xo Ic put
234.Op Ar flags
235.Ar local-path
Ben Lindstromd5767812002-12-23 02:23:37 +0000236.Op Ar remote-path
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000237.Xc
Damien Miller33804262001-02-04 23:20:18 +1100238Upload
Damien Millerd7686fd2001-02-10 00:40:03 +1100239.Ar local-path
Ben Lindstrom24643222001-06-25 05:08:11 +0000240and store it on the remote machine. If the remote path name is not
241specified, it is given the same name it has on the local machine. If the
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000242.Fl P
243flag is specified, then the file's full permission and access time are
244copied too.
Damien Millerd7686fd2001-02-10 00:40:03 +1100245.It Ic pwd
246Display remote working directory.
Damien Millerd7686fd2001-02-10 00:40:03 +1100247.It Ic quit
248Quit sftp.
249.It Ic rename Ar oldpath Ar newpath
Damien Miller33804262001-02-04 23:20:18 +1100250Rename remote file from
251.Ar oldpath
252to
Damien Millerd7686fd2001-02-10 00:40:03 +1100253.Ar newpath .
254.It Ic rmdir Ar path
Damien Miller33804262001-02-04 23:20:18 +1100255Remove remote directory specified by
Damien Millerd7686fd2001-02-10 00:40:03 +1100256.Ar path .
257.It Ic rm Ar path
Damien Miller33804262001-02-04 23:20:18 +1100258Delete remote file specified by
Damien Millerd7686fd2001-02-10 00:40:03 +1100259.Ar path .
Damien Miller058316f2001-03-08 10:08:49 +1100260.It Ic symlink Ar oldpath Ar newpath
Ben Lindstrom24643222001-06-25 05:08:11 +0000261Create a symbolic link from
Damien Miller058316f2001-03-08 10:08:49 +1100262.Ar oldpath
263to
264.Ar newpath .
Damien Miller63421802003-01-08 14:05:23 +1100265.It Ic version
266Display the
267.Nm
268protocol version.
Damien Miller33804262001-02-04 23:20:18 +1100269.It Ic ! Ar command
Ben Lindstrom24643222001-06-25 05:08:11 +0000270Execute
Damien Miller33804262001-02-04 23:20:18 +1100271.Ar command
Damien Millerd7686fd2001-02-10 00:40:03 +1100272in local shell.
Damien Miller33804262001-02-04 23:20:18 +1100273.It Ic !
Damien Millerd7686fd2001-02-10 00:40:03 +1100274Escape to local shell.
275.It Ic ?
276Synonym for help.
277.El
Damien Miller33804262001-02-04 23:20:18 +1100278.Sh AUTHORS
279Damien Miller <djm@mindrot.org>
280.Sh SEE ALSO
Ben Lindstrom160ec622001-04-22 17:17:46 +0000281.Xr scp 1 ,
Damien Miller33804262001-02-04 23:20:18 +1100282.Xr ssh 1 ,
283.Xr ssh-add 1 ,
284.Xr ssh-keygen 1 ,
Ben Lindstrom3072aae2002-06-21 01:02:39 +0000285.Xr ssh_config 5 ,
Ben Lindstrom160ec622001-04-22 17:17:46 +0000286.Xr sftp-server 8 ,
287.Xr sshd 8
288.Rs
Ben Lindstrom90fd0602001-06-25 04:45:33 +0000289.%A T. Ylonen
290.%A S. Lehtinen
Ben Lindstrom160ec622001-04-22 17:17:46 +0000291.%T "SSH File Transfer Protocol"
292.%N draft-ietf-secsh-filexfer-00.txt
293.%D January 2001
294.%O work in progress material
295.Re