]> andersk Git - openssh.git/blame - sftp.1
- djm@cvs.openbsd.org 2002/02/12 12:44:46
[openssh.git] / sftp.1
CommitLineData
c25d3df7 1.\" $OpenBSD: sftp.1,v 1.30 2002/02/12 12:32:27 djm Exp $
61e96248 2.\"
f3c7c613 3.\" Copyright (c) 2001 Damien Miller. All rights reserved.
61e96248 4.\"
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.\"
317611b5 25.Dd February 4, 2001
61e96248 26.Dt SFTP 1
27.Os
28.Sh NAME
29.Nm sftp
e68225b2 30.Nd Secure file transfer program
61e96248 31.Sh SYNOPSIS
32.Nm sftp
7d5e8c46 33.Op Fl vC1
a5ec8a3d 34.Op Fl b Ar batchfile
61e96248 35.Op Fl o Ar ssh_option
e3c1c3e6 36.Op Fl s Ar subsystem | sftp_server
7d5e8c46 37.Op Fl B Ar buffer_size
38.Op Fl F Ar ssh_config
39.Op Fl P Ar sftp_server path
c25d3df7 40.Op Fl R Ar num_requests
e3c1c3e6 41.Op Fl S Ar program
42.Ar host
edeeab1e 43.Nm sftp
44.Op [\fIuser\fR@]\fIhost\fR[:\fIfile\fR [\fIfile\fR]]
45.Nm sftp
3730bb22 46.Op [\fIuser\fR@]\fIhost\fR[:\fIdir\fR[\fI/\fR]]
61e96248 47.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
cf7ff074 58.Ar host ,
61e96248 59then enters an interactive command mode.
60.Pp
3730bb22 61The second usage format will retrieve files automatically if a non-interactive
cf7ff074 62authentication method is used; otherwise it will do so after
63successful interactive authentication.
edeeab1e 64.Pp
65The last usage format allows the sftp client to start in a remote directory.
66.Pp
61e96248 67The options are as follows:
68.Bl -tag -width Ds
a5ec8a3d 69.It Fl b Ar batchfile
70Batch mode reads a series of commands from an input
acf06a60 71.Ar batchfile
a5ec8a3d 72instead of
acf06a60 73.Em stdin .
74Since it lacks user interaction it should be used in conjunction with
75non-interactive authentication.
76.Nm
3730bb22 77will abort if any of the following
78commands fail:
acf06a60 79.Ic get , put , rename , ln , rm , mkdir , chdir , lchdir
a5ec8a3d 80and
acf06a60 81.Ic lmkdir .
61e96248 82.It Fl o Ar ssh_option
38539909 83Can be used to pass options to
84.Nm ssh
85in the format used in the
86.Xr ssh 1
87configuration file. This is useful for specifying options
88for which there is no separate
89.Nm sftp
e3c1c3e6 90command-line flag. For example, to specify an alternate
91port use:
92.Ic sftp -oPort=24 .
93.It Fl s Ar subsystem | sftp_server
94Specifies the SSH2 subsystem or the path for an sftp server
95on the remote host. A path is useful for using sftp over
96protocol version 1, or when the remote
97.Nm sshd
98does not have an sftp subsystem configured.
7d5e8c46 99.It Fl v
100Raise logging level. This option is also passed to ssh.
101.It Fl B Ar buffer_size
102Specify the size of the buffer that
103.Nm
104uses when transferring files. Larger buffers require fewer round trips at
105the cost of higher memory consumption. The default is 32768 bytes.
106.It Fl C
107Enables compression (via ssh's
108.Fl C
109flag).
110.It Fl F Ar ssh_config
111Specifies an alternative
112per-user configuration file for
113.Nm ssh .
114This option is directly passed to
115.Xr ssh 1 .
116.It Fl P Ar sftp_server path
117Connect directly to a local
118.Nm sftp-server
119(rather than via
120.Nm ssh )
121This option may be useful in debugging the client and server.
c25d3df7 122.It Fl R Ar num_requests
123Specify how many requests may be outstanding at any one time. Increasing
124this may slightly improve file transfer speed but will increase memory
125usage. The default is 16 outstanding requests.
e3c1c3e6 126.It Fl S Ar program
127Name of the
128.Ar program
129to use for the encrypted connection.
130The program must understand
131.Xr ssh 1
132options.
7d5e8c46 133.It Fl 1
134Specify the use of protocol version 1.
61e96248 135.El
136.Sh INTERACTIVE COMMANDS
0426a3b4 137Once in interactive mode,
138.Nm
3730bb22 139understands a set of commands similar to those of
61e96248 140.Xr ftp 1 .
a0e6fead 141Commands are case insensitive and pathnames may be enclosed in quotes if they
142contain spaces.
61e96248 143.Bl -tag -width Ds
68874d2b 144.It Ic bye
145Quit sftp.
0426a3b4 146.It Ic cd Ar path
3730bb22 147Change remote directory to
0426a3b4 148.Ar path .
149.It Ic lcd Ar path
3730bb22 150Change local directory to
0426a3b4 151.Ar path .
152.It Ic chgrp Ar grp Ar path
3730bb22 153Change group of file
0426a3b4 154.Ar path
155to
61e96248 156.Ar grp .
157.Ar grp
0426a3b4 158must be a numeric GID.
159.It Ic chmod Ar mode Ar path
3730bb22 160Change permissions of file
0426a3b4 161.Ar path
162to
163.Ar mode .
164.It Ic chown Ar own Ar path
3730bb22 165Change owner of file
0426a3b4 166.Ar path
167to
61e96248 168.Ar own .
169.Ar own
170must be a numeric UID.
17910dce 171.It Ic exit
172Quit sftp.
58c54a79 173.It Xo Ic get
174.Op Ar flags
175.Ar remote-path
176.Op Ar local-path
177.Xc
61e96248 178Retrieve the
0426a3b4 179.Ar remote-path
61e96248 180and store it on the local machine.
181If the local
3730bb22 182path name is not specified, it is given the same name it has on the
183remote machine. If the
58c54a79 184.Fl P
185flag is specified, then the file's full permission and access time are
186copied too.
17910dce 187.It Ic help
188Display help text.
0426a3b4 189.It Ic lls Op Ar ls-options Op Ar path
3730bb22 190Display local directory listing of either
61e96248 191.Ar path
192or current directory if
193.Ar path
0426a3b4 194is not specified.
195.It Ic lmkdir Ar path
61e96248 196Create local directory specified by
0426a3b4 197.Ar path .
3a7fe5ba 198.It Ic ln Ar oldpath Ar newpath
3730bb22 199Create a symbolic link from
3a7fe5ba 200.Ar oldpath
201to
202.Ar newpath .
0426a3b4 203.It Ic lpwd
204Print local working directory.
205.It Ic ls Op Ar path
61e96248 206Display remote directory listing of either
207.Ar path
0426a3b4 208or current directory if
209.Ar path
210is not specified.
211.It Ic lumask Ar umask
3730bb22 212Set local umask to
0426a3b4 213.Ar umask .
214.It Ic mkdir Ar path
61e96248 215Create remote directory specified by
0426a3b4 216.Ar path .
58c54a79 217.It Xo Ic put
218.Op Ar flags
219.Ar local-path
220.Op Ar local-path
221.Xc
61e96248 222Upload
0426a3b4 223.Ar local-path
3730bb22 224and store it on the remote machine. If the remote path name is not
225specified, it is given the same name it has on the local machine. If the
58c54a79 226.Fl P
227flag is specified, then the file's full permission and access time are
228copied too.
0426a3b4 229.It Ic pwd
230Display remote working directory.
0426a3b4 231.It Ic quit
232Quit sftp.
233.It Ic rename Ar oldpath Ar newpath
61e96248 234Rename remote file from
235.Ar oldpath
236to
0426a3b4 237.Ar newpath .
238.It Ic rmdir Ar path
61e96248 239Remove remote directory specified by
0426a3b4 240.Ar path .
241.It Ic rm Ar path
61e96248 242Delete remote file specified by
0426a3b4 243.Ar path .
3a7fe5ba 244.It Ic symlink Ar oldpath Ar newpath
3730bb22 245Create a symbolic link from
3a7fe5ba 246.Ar oldpath
247to
248.Ar newpath .
61e96248 249.It Ic ! Ar command
3730bb22 250Execute
61e96248 251.Ar command
0426a3b4 252in local shell.
61e96248 253.It Ic !
0426a3b4 254Escape to local shell.
255.It Ic ?
256Synonym for help.
257.El
61e96248 258.Sh AUTHORS
259Damien Miller <djm@mindrot.org>
260.Sh SEE ALSO
2cad6cef 261.Xr scp 1 ,
61e96248 262.Xr ssh 1 ,
263.Xr ssh-add 1 ,
264.Xr ssh-keygen 1 ,
2cad6cef 265.Xr sftp-server 8 ,
266.Xr sshd 8
267.Rs
7b518233 268.%A T. Ylonen
269.%A S. Lehtinen
2cad6cef 270.%T "SSH File Transfer Protocol"
271.%N draft-ietf-secsh-filexfer-00.txt
272.%D January 2001
273.%O work in progress material
274.Re
This page took 0.134952 seconds and 5 git commands to generate.