[BACK]Return to sftp.1 CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Annotation of src/usr.bin/ssh/sftp.1, Revision 1.53

1.53    ! jmc         1: .\" $OpenBSD: sftp.1,v 1.52 2004/03/05 10:53:58 markus Exp $
1.1       djm         2: .\"
1.9       deraadt     3: .\" Copyright (c) 2001 Damien Miller.  All rights reserved.
1.1       djm         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: .\"
1.14      stevesk    25: .Dd February 4, 2001
1.1       djm        26: .Dt SFTP 1
                     27: .Os
                     28: .Sh NAME
                     29: .Nm sftp
1.44      jmc        30: .Nd secure file transfer program
1.1       djm        31: .Sh SYNOPSIS
1.43      jmc        32: .Nm sftp
1.41      jmc        33: .Bk -words
1.46      jmc        34: .Op Fl 1Cv
                     35: .Op Fl B Ar buffer_size
1.29      markus     36: .Op Fl b Ar batchfile
1.46      jmc        37: .Op Fl F Ar ssh_config
1.29      markus     38: .Op Fl o Ar ssh_option
1.46      jmc        39: .Op Fl P Ar sftp_server_path
1.30      djm        40: .Op Fl R Ar num_requests
1.26      stevesk    41: .Op Fl S Ar program
1.46      jmc        42: .Op Fl s Ar subsystem | sftp_server
1.26      stevesk    43: .Ar host
1.41      jmc        44: .Ek
1.43      jmc        45: .Nm sftp
1.45      jmc        46: .Oo Oo Ar user Ns @ Oc Ns
1.41      jmc        47: .Ar host Ns Oo : Ns Ar file Oo
                     48: .Ar file Oc Oc Oc
1.43      jmc        49: .Nm sftp
1.45      jmc        50: .Oo Oo Ar user Ns @ Oc Ns
1.41      jmc        51: .Ar host Ns Oo : Ns Ar dir Ns
                     52: .Oo Ar / Oc Oc Oc
1.43      jmc        53: .Nm sftp
1.42      djm        54: .Fl b Ar batchfile
1.45      jmc        55: .Oo Ar user Ns @ Oc Ns Ar host
1.1       djm        56: .Sh DESCRIPTION
                     57: .Nm
                     58: is an interactive file transfer program, similar to
                     59: .Xr ftp 1 ,
                     60: which performs all operations over an encrypted
                     61: .Xr ssh 1
                     62: transport.
                     63: It may also use many features of ssh, such as public key authentication and
                     64: compression.
                     65: .Nm
                     66: connects and logs into the specified
1.18      stevesk    67: .Ar host ,
1.1       djm        68: then enters an interactive command mode.
1.15      mouring    69: .Pp
1.21      itojun     70: The second usage format will retrieve files automatically if a non-interactive
1.18      stevesk    71: authentication method is used; otherwise it will do so after
                     72: successful interactive authentication.
1.15      mouring    73: .Pp
1.42      djm        74: The third usage format allows the sftp client to start in a remote directory.
1.1       djm        75: .Pp
1.44      jmc        76: The final usage format allows for automated sessions using the
1.42      djm        77: .Fl b
1.44      jmc        78: option.
                     79: In such cases, it is usually necessary to configure public key authentication
                     80: to obviate the need to enter a password at connection time (see
1.42      djm        81: .Xr sshd 8
1.43      jmc        82: and
1.42      djm        83: .Xr ssh-keygen 1
1.44      jmc        84: for details).
1.1       djm        85: The options are as follows:
                     86: .Bl -tag -width Ds
1.46      jmc        87: .It Fl 1
                     88: Specify the use of protocol version 1.
                     89: .It Fl B Ar buffer_size
                     90: Specify the size of the buffer that
                     91: .Nm
                     92: uses when transferring files.
                     93: Larger buffers require fewer round trips at the cost of higher
                     94: memory consumption.
                     95: The default is 32768 bytes.
1.10      deraadt    96: .It Fl b Ar batchfile
                     97: Batch mode reads a series of commands from an input
1.13      stevesk    98: .Ar batchfile
1.10      deraadt    99: instead of
1.13      stevesk   100: .Em stdin .
                    101: Since it lacks user interaction it should be used in conjunction with
1.51      jmc       102: non-interactive authentication.
1.50      djm       103: A
1.51      jmc       104: .Ar batchfile
                    105: of
                    106: .Sq \-
1.50      djm       107: may be used to indicate standard input.
1.13      stevesk   108: .Nm
1.21      itojun    109: will abort if any of the following
                    110: commands fail:
1.33      deraadt   111: .Ic get , put , rename , ln ,
1.41      jmc       112: .Ic rm , mkdir , chdir , ls ,
1.39      djm       113: .Ic lchdir , chmod , chown , chgrp , lpwd
1.10      deraadt   114: and
1.13      stevesk   115: .Ic lmkdir .
1.41      jmc       116: Termination on error can be suppressed on a command by command basis by
                    117: prefixing the command with a
1.51      jmc       118: .Sq \-
1.44      jmc       119: character (for example,
                    120: .Ic -rm /tmp/blah* ) .
1.46      jmc       121: .It Fl C
                    122: Enables compression (via ssh's
                    123: .Fl C
                    124: flag).
                    125: .It Fl F Ar ssh_config
                    126: Specifies an alternative
                    127: per-user configuration file for
                    128: .Xr ssh 1 .
                    129: This option is directly passed to
                    130: .Xr ssh 1 .
1.1       djm       131: .It Fl o Ar ssh_option
1.23      stevesk   132: Can be used to pass options to
                    133: .Nm ssh
1.35      stevesk   134: in the format used in
                    135: .Xr ssh_config 5 .
                    136: This is useful for specifying options
1.23      stevesk   137: for which there is no separate
                    138: .Nm sftp
1.44      jmc       139: command-line flag.
                    140: For example, to specify an alternate port use:
1.26      stevesk   141: .Ic sftp -oPort=24 .
1.46      jmc       142: For full details of the options listed below, and their possible values, see
                    143: .Xr ssh_config 5 .
                    144: .Pp
                    145: .Bl -tag -width Ds -offset indent -compact
                    146: .It AddressFamily
                    147: .It BatchMode
                    148: .It BindAddress
                    149: .It ChallengeResponseAuthentication
                    150: .It CheckHostIP
                    151: .It Cipher
                    152: .It Ciphers
                    153: .It Compression
                    154: .It CompressionLevel
                    155: .It ConnectionAttempts
                    156: .It ConnectionTimeout
                    157: .It GlobalKnownHostsFile
                    158: .It GSSAPIAuthentication
                    159: .It GSSAPIDelegateCredentials
                    160: .It Host
                    161: .It HostbasedAuthentication
                    162: .It HostKeyAlgorithms
                    163: .It HostKeyAlias
                    164: .It HostName
                    165: .It IdentityFile
1.52      markus    166: .It IdentitiesOnly
1.46      jmc       167: .It LogLevel
                    168: .It MACs
                    169: .It NoHostAuthenticationForLocalhost
                    170: .It NumberOfPasswordPrompts
                    171: .It PasswordAuthentication
                    172: .It Port
                    173: .It PreferredAuthentications
                    174: .It Protocol
                    175: .It ProxyCommand
                    176: .It PubkeyAuthentication
                    177: .It RhostsRSAAuthentication
                    178: .It RSAAuthentication
1.53    ! jmc       179: .It SendEnv
1.49      markus    180: .It ServerAliveInterval
                    181: .It ServerAliveCountMax
1.46      jmc       182: .It SmartcardDevice
                    183: .It StrictHostKeyChecking
1.48      markus    184: .It TCPKeepAlive
1.46      jmc       185: .It UsePrivilegedPort
                    186: .It User
                    187: .It UserKnownHostsFile
                    188: .It VerifyHostKeyDNS
                    189: .El
                    190: .It Fl P Ar sftp_server_path
1.44      jmc       191: Connect directly to a local sftp server
1.29      markus    192: (rather than via
1.44      jmc       193: .Xr ssh 1 )
1.29      markus    194: This option may be useful in debugging the client and server.
1.30      djm       195: .It Fl R Ar num_requests
1.44      jmc       196: Specify how many requests may be outstanding at any one time.
                    197: Increasing this may slightly improve file transfer speed
                    198: but will increase memory usage.
                    199: The default is 16 outstanding requests.
1.26      stevesk   200: .It Fl S Ar program
                    201: Name of the
                    202: .Ar program
                    203: to use for the encrypted connection.
                    204: The program must understand
                    205: .Xr ssh 1
                    206: options.
1.46      jmc       207: .It Fl s Ar subsystem | sftp_server
                    208: Specifies the SSH2 subsystem or the path for an sftp server
                    209: on the remote host.
                    210: A path is useful for using
                    211: .Nm
                    212: over protocol version 1, or when the remote
                    213: .Xr sshd 8
                    214: does not have an sftp subsystem configured.
                    215: .It Fl v
                    216: Raise logging level.
                    217: This option is also passed to ssh.
1.1       djm       218: .El
                    219: .Sh INTERACTIVE COMMANDS
1.2       djm       220: Once in interactive mode,
                    221: .Nm
1.21      itojun    222: understands a set of commands similar to those of
1.1       djm       223: .Xr ftp 1 .
1.6       djm       224: Commands are case insensitive and pathnames may be enclosed in quotes if they
                    225: contain spaces.
1.46      jmc       226: .Bl -tag -width "lmdir path"
1.22      markus    227: .It Ic bye
1.44      jmc       228: Quit
                    229: .Nm sftp .
1.3       deraadt   230: .It Ic cd Ar path
1.21      itojun    231: Change remote directory to
1.3       deraadt   232: .Ar path .
                    233: .It Ic chgrp Ar grp Ar path
1.21      itojun    234: Change group of file
1.5       stevesk   235: .Ar path
                    236: to
1.1       djm       237: .Ar grp .
                    238: .Ar grp
1.5       stevesk   239: must be a numeric GID.
1.3       deraadt   240: .It Ic chmod Ar mode Ar path
1.21      itojun    241: Change permissions of file
1.5       stevesk   242: .Ar path
                    243: to
1.3       deraadt   244: .Ar mode .
                    245: .It Ic chown Ar own Ar path
1.21      itojun    246: Change owner of file
1.5       stevesk   247: .Ar path
                    248: to
1.1       djm       249: .Ar own .
                    250: .Ar own
                    251: must be a numeric UID.
1.11      deraadt   252: .It Ic exit
1.44      jmc       253: Quit
                    254: .Nm sftp .
1.7       djm       255: .It Xo Ic get
                    256: .Op Ar flags
                    257: .Ar remote-path
                    258: .Op Ar local-path
                    259: .Xc
1.1       djm       260: Retrieve the
1.5       stevesk   261: .Ar remote-path
1.1       djm       262: and store it on the local machine.
                    263: If the local
1.21      itojun    264: path name is not specified, it is given the same name it has on the
1.44      jmc       265: remote machine.
                    266: If the
1.7       djm       267: .Fl P
                    268: flag is specified, then the file's full permission and access time are
                    269: copied too.
1.11      deraadt   270: .It Ic help
                    271: Display help text.
1.46      jmc       272: .It Ic lcd Ar path
                    273: Change local directory to
                    274: .Ar path .
1.3       deraadt   275: .It Ic lls Op Ar ls-options Op Ar path
1.21      itojun    276: Display local directory listing of either
1.1       djm       277: .Ar path
                    278: or current directory if
                    279: .Ar path
1.5       stevesk   280: is not specified.
1.3       deraadt   281: .It Ic lmkdir Ar path
1.1       djm       282: Create local directory specified by
1.3       deraadt   283: .Ar path .
1.12      djm       284: .It Ic ln Ar oldpath Ar newpath
1.21      itojun    285: Create a symbolic link from
1.12      djm       286: .Ar oldpath
                    287: to
                    288: .Ar newpath .
1.3       deraadt   289: .It Ic lpwd
                    290: Print local working directory.
1.36      djm       291: .It Xo Ic ls
                    292: .Op Ar flags
                    293: .Op Ar path
                    294: .Xc
1.1       djm       295: Display remote directory listing of either
                    296: .Ar path
1.5       stevesk   297: or current directory if
                    298: .Ar path
1.44      jmc       299: is not specified.
                    300: If the
1.36      djm       301: .Fl l
                    302: flag is specified, then display additional details including permissions
                    303: and ownership information.
1.3       deraadt   304: .It Ic lumask Ar umask
1.21      itojun    305: Set local umask to
1.3       deraadt   306: .Ar umask .
                    307: .It Ic mkdir Ar path
1.1       djm       308: Create remote directory specified by
1.3       deraadt   309: .Ar path .
1.40      fgsch     310: .It Ic progress
                    311: Toggle display of progress meter.
1.7       djm       312: .It Xo Ic put
                    313: .Op Ar flags
                    314: .Ar local-path
1.37      djm       315: .Op Ar remote-path
1.7       djm       316: .Xc
1.1       djm       317: Upload
1.5       stevesk   318: .Ar local-path
1.44      jmc       319: and store it on the remote machine.
                    320: If the remote path name is not specified, it is given the same name it has
                    321: on the local machine.
                    322: If the
1.7       djm       323: .Fl P
                    324: flag is specified, then the file's full permission and access time are
                    325: copied too.
1.3       deraadt   326: .It Ic pwd
                    327: Display remote working directory.
                    328: .It Ic quit
1.44      jmc       329: Quit
                    330: .Nm sftp .
1.3       deraadt   331: .It Ic rename Ar oldpath Ar newpath
1.1       djm       332: Rename remote file from
                    333: .Ar oldpath
                    334: to
1.3       deraadt   335: .Ar newpath .
1.46      jmc       336: .It Ic rm Ar path
                    337: Delete remote file specified by
                    338: .Ar path .
1.3       deraadt   339: .It Ic rmdir Ar path
1.1       djm       340: Remove remote directory specified by
1.3       deraadt   341: .Ar path .
1.12      djm       342: .It Ic symlink Ar oldpath Ar newpath
1.21      itojun    343: Create a symbolic link from
1.12      djm       344: .Ar oldpath
                    345: to
                    346: .Ar newpath .
1.38      fgsch     347: .It Ic version
                    348: Display the
                    349: .Nm
                    350: protocol version.
1.45      jmc       351: .It Ic \&! Ar command
1.21      itojun    352: Execute
1.1       djm       353: .Ar command
1.3       deraadt   354: in local shell.
1.45      jmc       355: .It Ic \&!
1.3       deraadt   356: Escape to local shell.
1.45      jmc       357: .It Ic \&?
1.5       stevesk   358: Synonym for help.
1.4       itojun    359: .El
1.1       djm       360: .Sh SEE ALSO
1.46      jmc       361: .Xr ftp 1 ,
1.17      markus    362: .Xr scp 1 ,
1.1       djm       363: .Xr ssh 1 ,
                    364: .Xr ssh-add 1 ,
                    365: .Xr ssh-keygen 1 ,
1.35      stevesk   366: .Xr ssh_config 5 ,
1.17      markus    367: .Xr sftp-server 8 ,
                    368: .Xr sshd 8
                    369: .Rs
1.20      deraadt   370: .%A T. Ylonen
                    371: .%A S. Lehtinen
1.17      markus    372: .%T "SSH File Transfer Protocol"
                    373: .%N draft-ietf-secsh-filexfer-00.txt
                    374: .%D January 2001
                    375: .%O work in progress material
                    376: .Re