2001-09-27 07:24:01 +04:00
|
|
|
.\" $NetBSD: sftp.1,v 1.7 2001/09/27 03:24:05 itojun Exp $
|
|
|
|
.\" $OpenBSD: sftp.1,v 1.26 2001/09/17 20:38:09 stevesk Exp $
|
2001-02-07 19:46:40 +03:00
|
|
|
.\"
|
2001-03-19 22:42:00 +03:00
|
|
|
.\" Copyright (c) 2001 Damien Miller. All rights reserved.
|
2001-02-07 19:46:40 +03:00
|
|
|
.\"
|
|
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
|
|
.\" modification, are permitted provided that the following conditions
|
|
|
|
.\" are met:
|
|
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
|
|
.\" documentation and/or other materials provided with the distribution.
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
.\"
|
2001-04-09 16:49:14 +04:00
|
|
|
.Dd February 4, 2001
|
2001-02-07 19:46:40 +03:00
|
|
|
.Dt SFTP 1
|
|
|
|
.Os
|
|
|
|
.Sh NAME
|
|
|
|
.Nm sftp
|
2001-04-10 12:07:54 +04:00
|
|
|
.Nd Secure file transfer program
|
2001-02-07 19:46:40 +03:00
|
|
|
.Sh SYNOPSIS
|
|
|
|
.Nm sftp
|
2001-09-27 07:24:01 +04:00
|
|
|
.Op Fl 1Cv
|
2001-03-19 22:42:00 +03:00
|
|
|
.Op Fl b Ar batchfile
|
2001-09-27 07:24:01 +04:00
|
|
|
.Op Fl F Ar ssh_config
|
2001-02-07 19:46:40 +03:00
|
|
|
.Op Fl o Ar ssh_option
|
2001-09-27 07:24:01 +04:00
|
|
|
.Op Fl s Ar subsystem | sftp_server
|
|
|
|
.Op Fl S Ar program
|
|
|
|
.Ar host
|
2001-05-15 19:26:07 +04:00
|
|
|
.Nm sftp
|
|
|
|
.Op [\fIuser\fR@]\fIhost\fR[:\fIfile\fR [\fIfile\fR]]
|
|
|
|
.Nm sftp
|
2001-09-27 07:24:01 +04:00
|
|
|
.Op [\fIuser\fR@]\fIhost\fR[:\fIdir\fR[\fI/\fR]]
|
2001-02-07 19:46:40 +03:00
|
|
|
.Sh DESCRIPTION
|
|
|
|
.Nm
|
|
|
|
is an interactive file transfer program, similar to
|
|
|
|
.Xr ftp 1 ,
|
|
|
|
which performs all operations over an encrypted
|
|
|
|
.Xr ssh 1
|
|
|
|
transport.
|
|
|
|
It may also use many features of ssh, such as public key authentication and
|
|
|
|
compression.
|
|
|
|
.Nm
|
|
|
|
connects and logs into the specified
|
2001-05-15 19:26:07 +04:00
|
|
|
.Ar host ,
|
2001-02-07 19:46:40 +03:00
|
|
|
then enters an interactive command mode.
|
|
|
|
.Pp
|
2001-09-27 07:24:01 +04:00
|
|
|
The second usage format will retrieve files automatically if a non-interactive
|
2001-05-15 19:26:07 +04:00
|
|
|
authentication method is used; otherwise it will do so after
|
|
|
|
successful interactive authentication.
|
|
|
|
.Pp
|
|
|
|
The last usage format allows the sftp client to start in a remote directory.
|
|
|
|
.Pp
|
2001-02-07 19:46:40 +03:00
|
|
|
The options are as follows:
|
|
|
|
.Bl -tag -width Ds
|
2001-09-27 07:24:01 +04:00
|
|
|
.It Fl 1
|
|
|
|
Specify the use of protocol version 1.
|
2001-03-19 22:42:00 +03:00
|
|
|
.It Fl b Ar batchfile
|
|
|
|
Batch mode reads a series of commands from an input
|
|
|
|
.Ar batchfile
|
|
|
|
instead of
|
|
|
|
.Em stdin .
|
|
|
|
Since it lacks user interaction it should be used in conjunction with
|
|
|
|
non-interactive authentication.
|
|
|
|
.Nm
|
2001-09-27 07:24:01 +04:00
|
|
|
will abort if any of the following
|
|
|
|
commands fail:
|
2001-03-19 22:42:00 +03:00
|
|
|
.Ic get , put , rename , ln , rm , mkdir , chdir , lchdir
|
|
|
|
and
|
|
|
|
.Ic lmkdir .
|
2001-02-07 19:46:40 +03:00
|
|
|
.It Fl C
|
2001-09-27 07:24:01 +04:00
|
|
|
Enables compression (via ssh's
|
2001-02-07 19:46:40 +03:00
|
|
|
.Fl C
|
2001-09-27 07:24:01 +04:00
|
|
|
flag).
|
|
|
|
.It Fl F Ar ssh_config
|
|
|
|
Specifies an alternative
|
|
|
|
per-user configuration file for
|
|
|
|
.Nm ssh .
|
|
|
|
This option is directly passed to
|
2001-02-07 19:46:40 +03:00
|
|
|
.Xr ssh 1 .
|
2001-09-27 07:24:01 +04:00
|
|
|
.It Fl o Ar ssh_option
|
|
|
|
Can be used to pass options to
|
|
|
|
.Nm ssh
|
|
|
|
in the format used in the
|
|
|
|
.Xr ssh 1
|
|
|
|
configuration file. This is useful for specifying options
|
|
|
|
for which there is no separate
|
|
|
|
.Nm sftp
|
|
|
|
command-line flag. For example, to specify an alternate
|
|
|
|
port use:
|
|
|
|
.Ic sftp -oPort=24 .
|
|
|
|
.It Fl s Ar subsystem | sftp_server
|
|
|
|
Specifies the SSH2 subsystem or the path for an sftp server
|
|
|
|
on the remote host. A path is useful for using sftp over
|
|
|
|
protocol version 1, or when the remote
|
|
|
|
.Nm sshd
|
|
|
|
does not have an sftp subsystem configured.
|
|
|
|
.It Fl S Ar program
|
|
|
|
Name of the
|
|
|
|
.Ar program
|
|
|
|
to use for the encrypted connection.
|
|
|
|
The program must understand
|
|
|
|
.Xr ssh 1
|
|
|
|
options.
|
2001-03-19 22:42:00 +03:00
|
|
|
.It Fl v
|
|
|
|
Raise logging level. This option is also passed to ssh.
|
2001-02-07 19:46:40 +03:00
|
|
|
.El
|
|
|
|
.Sh INTERACTIVE COMMANDS
|
|
|
|
Once in interactive mode,
|
|
|
|
.Nm
|
2001-09-27 07:24:01 +04:00
|
|
|
understands a set of commands similar to those of
|
2001-02-07 19:46:40 +03:00
|
|
|
.Xr ftp 1 .
|
2001-03-19 23:03:24 +03:00
|
|
|
Commands are case insensitive.
|
2001-02-07 19:46:40 +03:00
|
|
|
.Bl -tag -width Ds
|
2001-09-27 07:24:01 +04:00
|
|
|
.It Ic bye
|
|
|
|
Quit sftp.
|
2001-02-07 19:46:40 +03:00
|
|
|
.It Ic cd Ar path
|
2001-09-27 07:24:01 +04:00
|
|
|
Change remote directory to
|
2001-02-07 19:46:40 +03:00
|
|
|
.Ar path .
|
|
|
|
.It Ic lcd Ar path
|
2001-09-27 07:24:01 +04:00
|
|
|
Change local directory to
|
2001-02-07 19:46:40 +03:00
|
|
|
.Ar path .
|
|
|
|
.It Ic chgrp Ar grp Ar path
|
2001-09-27 07:24:01 +04:00
|
|
|
Change group of file
|
2001-06-23 23:37:38 +04:00
|
|
|
.Ar path
|
|
|
|
to
|
2001-02-07 19:46:40 +03:00
|
|
|
.Ar grp .
|
|
|
|
.Ar grp
|
2001-06-23 23:37:38 +04:00
|
|
|
must be a numeric GID.
|
2001-02-07 19:46:40 +03:00
|
|
|
.It Ic chmod Ar mode Ar path
|
2001-09-27 07:24:01 +04:00
|
|
|
Change permissions of file
|
2001-06-23 23:37:38 +04:00
|
|
|
.Ar path
|
|
|
|
to
|
2001-02-07 19:46:40 +03:00
|
|
|
.Ar mode .
|
|
|
|
.It Ic chown Ar own Ar path
|
2001-09-27 07:24:01 +04:00
|
|
|
Change owner of file
|
2001-06-23 23:37:38 +04:00
|
|
|
.Ar path
|
|
|
|
to
|
2001-02-07 19:46:40 +03:00
|
|
|
.Ar own .
|
|
|
|
.Ar own
|
|
|
|
must be a numeric UID.
|
2001-03-19 22:42:00 +03:00
|
|
|
.It Ic exit
|
|
|
|
Quit sftp.
|
2001-02-16 18:41:22 +03:00
|
|
|
.It Xo Ic get
|
|
|
|
.Op Ar flags
|
|
|
|
.Ar remote-path
|
|
|
|
.Op Ar local-path
|
|
|
|
.Xc
|
2001-02-07 19:46:40 +03:00
|
|
|
Retrieve the
|
2001-03-19 23:03:24 +03:00
|
|
|
.Ar remote-file
|
2001-02-07 19:46:40 +03:00
|
|
|
and store it on the local machine.
|
|
|
|
If the local
|
2001-09-27 07:24:01 +04:00
|
|
|
path name is not specified, it is given the same name it has on the
|
|
|
|
remote machine. If the
|
2001-02-16 18:41:22 +03:00
|
|
|
.Fl P
|
|
|
|
flag is specified, then the file's full permission and access time are
|
|
|
|
copied too.
|
2001-03-19 22:42:00 +03:00
|
|
|
.It Ic help
|
|
|
|
Display help text.
|
2001-02-07 19:46:40 +03:00
|
|
|
.It Ic lls Op Ar ls-options Op Ar path
|
2001-09-27 07:24:01 +04:00
|
|
|
Display local directory listing of either
|
2001-02-07 19:46:40 +03:00
|
|
|
.Ar path
|
|
|
|
or current directory if
|
|
|
|
.Ar path
|
2001-06-23 23:37:38 +04:00
|
|
|
is not specified.
|
2001-02-07 19:46:40 +03:00
|
|
|
.It Ic lmkdir Ar path
|
|
|
|
Create local directory specified by
|
|
|
|
.Ar path .
|
2001-03-19 22:42:00 +03:00
|
|
|
.It Ic ln Ar oldpath Ar newpath
|
2001-09-27 07:24:01 +04:00
|
|
|
Create a symbolic link from
|
2001-03-19 22:42:00 +03:00
|
|
|
.Ar oldpath
|
|
|
|
to
|
|
|
|
.Ar newpath .
|
2001-02-07 19:46:40 +03:00
|
|
|
.It Ic lpwd
|
|
|
|
Print local working directory.
|
|
|
|
.It Ic ls Op Ar path
|
|
|
|
Display remote directory listing of either
|
|
|
|
.Ar path
|
2001-06-23 23:37:38 +04:00
|
|
|
or current directory if
|
|
|
|
.Ar path
|
|
|
|
is not specified.
|
2001-02-07 19:46:40 +03:00
|
|
|
.It Ic lumask Ar umask
|
2001-09-27 07:24:01 +04:00
|
|
|
Set local umask to
|
2001-02-07 19:46:40 +03:00
|
|
|
.Ar umask .
|
|
|
|
.It Ic mkdir Ar path
|
|
|
|
Create remote directory specified by
|
|
|
|
.Ar path .
|
2001-03-19 23:03:24 +03:00
|
|
|
.It Ic put Ar local-file Op Ar remote-file
|
2001-02-07 19:46:40 +03:00
|
|
|
Upload
|
2001-02-08 21:55:32 +03:00
|
|
|
.Ar local-path
|
2001-09-27 07:24:01 +04:00
|
|
|
and store it on the remote machine. If the remote path name is not
|
|
|
|
specified, it is given the same name it has on the local machine. If the
|
2001-02-16 18:41:22 +03:00
|
|
|
.Fl P
|
|
|
|
flag is specified, then the file's full permission and access time are
|
|
|
|
copied too.
|
2001-02-07 19:46:40 +03:00
|
|
|
.It Ic pwd
|
|
|
|
Display remote working directory.
|
|
|
|
.It Ic quit
|
|
|
|
Quit sftp.
|
|
|
|
.It Ic rename Ar oldpath Ar newpath
|
|
|
|
Rename remote file from
|
|
|
|
.Ar oldpath
|
|
|
|
to
|
|
|
|
.Ar newpath .
|
|
|
|
.It Ic rmdir Ar path
|
|
|
|
Remove remote directory specified by
|
|
|
|
.Ar path .
|
|
|
|
.It Ic rm Ar path
|
|
|
|
Delete remote file specified by
|
|
|
|
.Ar path .
|
2001-03-19 22:42:00 +03:00
|
|
|
.It Ic symlink Ar oldpath Ar newpath
|
2001-09-27 07:24:01 +04:00
|
|
|
Create a symbolic link from
|
2001-03-19 22:42:00 +03:00
|
|
|
.Ar oldpath
|
|
|
|
to
|
|
|
|
.Ar newpath .
|
2001-02-07 19:46:40 +03:00
|
|
|
.It Ic ! Ar command
|
2001-09-27 07:24:01 +04:00
|
|
|
Execute
|
2001-02-07 19:46:40 +03:00
|
|
|
.Ar command
|
|
|
|
in local shell.
|
|
|
|
.It Ic !
|
|
|
|
Escape to local shell.
|
|
|
|
.It Ic ?
|
2001-03-19 23:03:24 +03:00
|
|
|
A synonym for help.
|
2001-02-07 19:46:40 +03:00
|
|
|
.El
|
|
|
|
.Sh AUTHORS
|
|
|
|
Damien Miller <djm@mindrot.org>
|
|
|
|
.Sh SEE ALSO
|
2001-05-15 19:26:07 +04:00
|
|
|
.Xr scp 1 ,
|
2001-02-07 19:46:40 +03:00
|
|
|
.Xr ssh 1 ,
|
|
|
|
.Xr ssh-add 1 ,
|
|
|
|
.Xr ssh-keygen 1 ,
|
2001-05-15 19:26:07 +04:00
|
|
|
.Xr sftp-server 8 ,
|
|
|
|
.Xr sshd 8
|
|
|
|
.Rs
|
|
|
|
.%A T. Ylonen
|
|
|
|
.%A S. Lehtinen
|
|
|
|
.%T "SSH File Transfer Protocol"
|
|
|
|
.%N draft-ietf-secsh-filexfer-00.txt
|
|
|
|
.%D January 2001
|
|
|
|
.%O work in progress material
|
|
|
|
.Re
|