Damien Miller | 32aa144 | 1999-10-29 09:15:49 +1000 | [diff] [blame] | 1 | .\" |
| 2 | .\" scp.1 |
| 3 | .\" |
| 4 | .\" Author: Tatu Ylonen <ylo@cs.hut.fi> |
| 5 | .\" |
| 6 | .\" Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
| 7 | .\" All rights reserved |
| 8 | .\" |
| 9 | .\" Created: Sun May 7 00:14:37 1995 ylo |
| 10 | .\" |
jmc@openbsd.org | 483cc72 | 2019-11-30 07:07:59 +0000 | [diff] [blame] | 11 | .\" $OpenBSD: scp.1,v 1.87 2019/11/30 07:07:59 jmc Exp $ |
Damien Miller | 32aa144 | 1999-10-29 09:15:49 +1000 | [diff] [blame] | 12 | .\" |
jmc@openbsd.org | 483cc72 | 2019-11-30 07:07:59 +0000 | [diff] [blame] | 13 | .Dd $Mdocdate: November 30 2019 $ |
Damien Miller | 32aa144 | 1999-10-29 09:15:49 +1000 | [diff] [blame] | 14 | .Dt SCP 1 |
| 15 | .Os |
| 16 | .Sh NAME |
| 17 | .Nm scp |
jmc@openbsd.org | 483cc72 | 2019-11-30 07:07:59 +0000 | [diff] [blame] | 18 | .Nd OpenSSH secure file copy |
Damien Miller | 32aa144 | 1999-10-29 09:15:49 +1000 | [diff] [blame] | 19 | .Sh SYNOPSIS |
| 20 | .Nm scp |
djm@openbsd.org | 391ffc4 | 2019-01-26 22:41:28 +0000 | [diff] [blame] | 21 | .Op Fl 346BCpqrTv |
Damien Miller | 32aa144 | 1999-10-29 09:15:49 +1000 | [diff] [blame] | 22 | .Op Fl c Ar cipher |
Darren Tucker | 1f20394 | 2003-10-15 15:50:42 +1000 | [diff] [blame] | 23 | .Op Fl F Ar ssh_config |
Damien Miller | 32aa144 | 1999-10-29 09:15:49 +1000 | [diff] [blame] | 24 | .Op Fl i Ar identity_file |
jmc@openbsd.org | fd8eb13 | 2019-01-22 06:58:31 +0000 | [diff] [blame] | 25 | .Op Fl J Ar destination |
Damien Miller | 8ee66a2 | 2003-02-24 11:50:50 +1100 | [diff] [blame] | 26 | .Op Fl l Ar limit |
Ben Lindstrom | 14c62eb | 2001-08-15 23:25:46 +0000 | [diff] [blame] | 27 | .Op Fl o Ar ssh_option |
Darren Tucker | 1f20394 | 2003-10-15 15:50:42 +1000 | [diff] [blame] | 28 | .Op Fl P Ar port |
| 29 | .Op Fl S Ar program |
jmc@openbsd.org@openbsd.org | 0b2e289 | 2017-10-25 06:19:46 +0000 | [diff] [blame] | 30 | .Ar source ... target |
Damien Miller | 22c7726 | 2000-04-13 12:26:34 +1000 | [diff] [blame] | 31 | .Sh DESCRIPTION |
Damien Miller | 32aa144 | 1999-10-29 09:15:49 +1000 | [diff] [blame] | 32 | .Nm |
Damien Miller | 450a7a1 | 2000-03-26 13:04:51 +1000 | [diff] [blame] | 33 | copies files between hosts on a network. |
| 34 | It uses |
Damien Miller | 32aa144 | 1999-10-29 09:15:49 +1000 | [diff] [blame] | 35 | .Xr ssh 1 |
| 36 | for data transfer, and uses the same authentication and provides the |
| 37 | same security as |
| 38 | .Xr ssh 1 . |
Damien Miller | 32aa144 | 1999-10-29 09:15:49 +1000 | [diff] [blame] | 39 | .Nm |
| 40 | will ask for passwords or passphrases if they are needed for |
| 41 | authentication. |
| 42 | .Pp |
millert@openbsd.org | 887669e | 2017-10-21 23:06:24 +0000 | [diff] [blame] | 43 | The |
jmc@openbsd.org@openbsd.org | 0b2e289 | 2017-10-25 06:19:46 +0000 | [diff] [blame] | 44 | .Ar source |
millert@openbsd.org | 887669e | 2017-10-21 23:06:24 +0000 | [diff] [blame] | 45 | and |
jmc@openbsd.org@openbsd.org | 0b2e289 | 2017-10-25 06:19:46 +0000 | [diff] [blame] | 46 | .Ar target |
millert@openbsd.org | 887669e | 2017-10-21 23:06:24 +0000 | [diff] [blame] | 47 | may be specified as a local pathname, a remote host with optional path |
| 48 | in the form |
jmc@openbsd.org@openbsd.org | 0b2e289 | 2017-10-25 06:19:46 +0000 | [diff] [blame] | 49 | .Sm off |
| 50 | .Oo user @ Oc host : Op path , |
| 51 | .Sm on |
| 52 | or a URI in the form |
| 53 | .Sm off |
| 54 | .No scp:// Oo user @ Oc host Oo : port Oc Op / path . |
| 55 | .Sm on |
Damien Miller | b508faa | 2008-02-10 22:28:45 +1100 | [diff] [blame] | 56 | Local file names can be made explicit using absolute or relative pathnames |
| 57 | to avoid |
| 58 | .Nm |
| 59 | treating file names containing |
| 60 | .Sq :\& |
| 61 | as host specifiers. |
millert@openbsd.org | 887669e | 2017-10-21 23:06:24 +0000 | [diff] [blame] | 62 | .Pp |
| 63 | When copying between two remote hosts, if the URI format is used, a |
| 64 | .Ar port |
| 65 | may only be specified on the |
| 66 | .Ar target |
| 67 | if the |
| 68 | .Fl 3 |
| 69 | option is used. |
Damien Miller | 32aa144 | 1999-10-29 09:15:49 +1000 | [diff] [blame] | 70 | .Pp |
| 71 | The options are as follows: |
| 72 | .Bl -tag -width Ds |
Damien Miller | f121143 | 2011-01-06 22:40:30 +1100 | [diff] [blame] | 73 | .It Fl 3 |
| 74 | Copies between two remote hosts are transferred through the local host. |
| 75 | Without this option the data is copied directly between the two remote |
| 76 | hosts. |
Damien Miller | 907998d | 2011-01-06 22:41:21 +1100 | [diff] [blame] | 77 | Note that this option disables the progress meter. |
Damien Miller | 34132e5 | 2000-01-14 15:45:46 +1100 | [diff] [blame] | 78 | .It Fl 4 |
| 79 | Forces |
| 80 | .Nm |
| 81 | to use IPv4 addresses only. |
| 82 | .It Fl 6 |
| 83 | Forces |
| 84 | .Nm |
| 85 | to use IPv6 addresses only. |
Darren Tucker | 1f20394 | 2003-10-15 15:50:42 +1000 | [diff] [blame] | 86 | .It Fl B |
| 87 | Selects batch mode (prevents asking for passwords or passphrases). |
| 88 | .It Fl C |
| 89 | Compression enable. |
| 90 | Passes the |
| 91 | .Fl C |
| 92 | flag to |
| 93 | .Xr ssh 1 |
| 94 | to enable compression. |
| 95 | .It Fl c Ar cipher |
| 96 | Selects the cipher to use for encrypting the data transfer. |
| 97 | This option is directly passed to |
| 98 | .Xr ssh 1 . |
| 99 | .It Fl F Ar ssh_config |
| 100 | Specifies an alternative |
| 101 | per-user configuration file for |
| 102 | .Nm ssh . |
| 103 | This option is directly passed to |
| 104 | .Xr ssh 1 . |
| 105 | .It Fl i Ar identity_file |
Damien Miller | a034baf | 2008-07-12 17:12:49 +1000 | [diff] [blame] | 106 | Selects the file from which the identity (private key) for public key |
Darren Tucker | 1f20394 | 2003-10-15 15:50:42 +1000 | [diff] [blame] | 107 | authentication is read. |
| 108 | This option is directly passed to |
| 109 | .Xr ssh 1 . |
tb@openbsd.org | 622dedf | 2019-01-21 22:50:42 +0000 | [diff] [blame] | 110 | .It Fl J Ar destination |
jmc@openbsd.org | fd8eb13 | 2019-01-22 06:58:31 +0000 | [diff] [blame] | 111 | Connect to the target host by first making an |
tb@openbsd.org | 622dedf | 2019-01-21 22:50:42 +0000 | [diff] [blame] | 112 | .Nm |
| 113 | connection to the jump host described by |
| 114 | .Ar destination |
| 115 | and then establishing a TCP forwarding to the ultimate destination from |
| 116 | there. |
| 117 | Multiple jump hops may be specified separated by comma characters. |
| 118 | This is a shortcut to specify a |
| 119 | .Cm ProxyJump |
| 120 | configuration directive. |
| 121 | This option is directly passed to |
| 122 | .Xr ssh 1 . |
Darren Tucker | 1f20394 | 2003-10-15 15:50:42 +1000 | [diff] [blame] | 123 | .It Fl l Ar limit |
| 124 | Limits the used bandwidth, specified in Kbit/s. |
| 125 | .It Fl o Ar ssh_option |
| 126 | Can be used to pass options to |
| 127 | .Nm ssh |
| 128 | in the format used in |
| 129 | .Xr ssh_config 5 . |
| 130 | This is useful for specifying options |
| 131 | for which there is no separate |
| 132 | .Nm scp |
| 133 | command-line flag. |
| 134 | For full details of the options listed below, and their possible values, see |
| 135 | .Xr ssh_config 5 . |
| 136 | .Pp |
| 137 | .Bl -tag -width Ds -offset indent -compact |
| 138 | .It AddressFamily |
| 139 | .It BatchMode |
| 140 | .It BindAddress |
jmc@openbsd.org | 7d330a1 | 2018-02-23 07:38:09 +0000 | [diff] [blame] | 141 | .It BindInterface |
Damien Miller | c0049bd | 2013-10-23 16:29:59 +1100 | [diff] [blame] | 142 | .It CanonicalDomains |
| 143 | .It CanonicalizeFallbackLocal |
| 144 | .It CanonicalizeHostname |
| 145 | .It CanonicalizeMaxDots |
| 146 | .It CanonicalizePermittedCNAMEs |
jmc@openbsd.org | e6933a2 | 2018-09-20 06:58:48 +0000 | [diff] [blame] | 147 | .It CASignatureAlgorithms |
jmc@openbsd.org | c5f7c08 | 2015-09-25 18:19:54 +0000 | [diff] [blame] | 148 | .It CertificateFile |
Darren Tucker | 1f20394 | 2003-10-15 15:50:42 +1000 | [diff] [blame] | 149 | .It ChallengeResponseAuthentication |
| 150 | .It CheckHostIP |
Darren Tucker | 1f20394 | 2003-10-15 15:50:42 +1000 | [diff] [blame] | 151 | .It Ciphers |
Darren Tucker | 1f20394 | 2003-10-15 15:50:42 +1000 | [diff] [blame] | 152 | .It Compression |
naddy@openbsd.org | 9a82e24 | 2017-05-03 21:49:18 +0000 | [diff] [blame] | 153 | .It ConnectionAttempts |
Darren Tucker | c0796d7 | 2004-05-03 09:19:03 +1000 | [diff] [blame] | 154 | .It ConnectTimeout |
Damien Miller | 0e220db | 2004-06-15 10:34:08 +1000 | [diff] [blame] | 155 | .It ControlMaster |
| 156 | .It ControlPath |
Damien Miller | e577772 | 2011-09-22 21:34:15 +1000 | [diff] [blame] | 157 | .It ControlPersist |
Darren Tucker | 1f20394 | 2003-10-15 15:50:42 +1000 | [diff] [blame] | 158 | .It GlobalKnownHostsFile |
| 159 | .It GSSAPIAuthentication |
| 160 | .It GSSAPIDelegateCredentials |
Damien Miller | 27e9c51 | 2005-03-02 12:04:16 +1100 | [diff] [blame] | 161 | .It HashKnownHosts |
Darren Tucker | 1f20394 | 2003-10-15 15:50:42 +1000 | [diff] [blame] | 162 | .It Host |
| 163 | .It HostbasedAuthentication |
djm@openbsd.org | 46347ed | 2015-01-30 11:43:14 +0000 | [diff] [blame] | 164 | .It HostbasedKeyTypes |
Darren Tucker | 1f20394 | 2003-10-15 15:50:42 +1000 | [diff] [blame] | 165 | .It HostKeyAlgorithms |
| 166 | .It HostKeyAlias |
jmc@openbsd.org | 7349149 | 2019-06-12 11:31:50 +0000 | [diff] [blame] | 167 | .It Hostname |
jmc@openbsd.org | 772e6ce | 2016-06-29 17:14:28 +0000 | [diff] [blame] | 168 | .It IdentitiesOnly |
markus@openbsd.org | 75e2168 | 2016-05-04 14:32:26 +0000 | [diff] [blame] | 169 | .It IdentityAgent |
Darren Tucker | 1f20394 | 2003-10-15 15:50:42 +1000 | [diff] [blame] | 170 | .It IdentityFile |
Damien Miller | 0a18473 | 2010-11-20 15:21:03 +1100 | [diff] [blame] | 171 | .It IPQoS |
Damien Miller | e577772 | 2011-09-22 21:34:15 +1000 | [diff] [blame] | 172 | .It KbdInteractiveAuthentication |
Darren Tucker | 636ca90 | 2004-11-05 20:22:00 +1100 | [diff] [blame] | 173 | .It KbdInteractiveDevices |
Damien Miller | 2beb32f | 2010-09-24 22:16:03 +1000 | [diff] [blame] | 174 | .It KexAlgorithms |
Darren Tucker | 1f20394 | 2003-10-15 15:50:42 +1000 | [diff] [blame] | 175 | .It LogLevel |
| 176 | .It MACs |
| 177 | .It NoHostAuthenticationForLocalhost |
| 178 | .It NumberOfPasswordPrompts |
| 179 | .It PasswordAuthentication |
Damien Miller | 7ea845e | 2010-02-12 09:21:02 +1100 | [diff] [blame] | 180 | .It PKCS11Provider |
Darren Tucker | 1f20394 | 2003-10-15 15:50:42 +1000 | [diff] [blame] | 181 | .It Port |
| 182 | .It PreferredAuthentications |
Darren Tucker | 1f20394 | 2003-10-15 15:50:42 +1000 | [diff] [blame] | 183 | .It ProxyCommand |
jmc@openbsd.org | e4eb7d9 | 2016-07-16 06:57:55 +0000 | [diff] [blame] | 184 | .It ProxyJump |
markus@openbsd.org | 3a1638d | 2015-07-10 06:21:53 +0000 | [diff] [blame] | 185 | .It PubkeyAcceptedKeyTypes |
Darren Tucker | 1f20394 | 2003-10-15 15:50:42 +1000 | [diff] [blame] | 186 | .It PubkeyAuthentication |
Darren Tucker | 62388b2 | 2006-01-20 11:31:47 +1100 | [diff] [blame] | 187 | .It RekeyLimit |
Darren Tucker | 2e578f6 | 2004-05-13 13:03:04 +1000 | [diff] [blame] | 188 | .It SendEnv |
Damien Miller | 509b010 | 2003-12-17 16:33:10 +1100 | [diff] [blame] | 189 | .It ServerAliveInterval |
| 190 | .It ServerAliveCountMax |
jmc@openbsd.org | acf4260 | 2018-06-09 06:36:31 +0000 | [diff] [blame] | 191 | .It SetEnv |
Darren Tucker | 1f20394 | 2003-10-15 15:50:42 +1000 | [diff] [blame] | 192 | .It StrictHostKeyChecking |
Damien Miller | 12c150e | 2003-12-17 16:31:10 +1100 | [diff] [blame] | 193 | .It TCPKeepAlive |
djm@openbsd.org | 1d1092b | 2015-01-26 12:16:36 +0000 | [diff] [blame] | 194 | .It UpdateHostKeys |
Darren Tucker | 1f20394 | 2003-10-15 15:50:42 +1000 | [diff] [blame] | 195 | .It User |
| 196 | .It UserKnownHostsFile |
| 197 | .It VerifyHostKeyDNS |
Darren Tucker | 1f20394 | 2003-10-15 15:50:42 +1000 | [diff] [blame] | 198 | .El |
| 199 | .It Fl P Ar port |
| 200 | Specifies the port to connect to on the remote host. |
| 201 | Note that this option is written with a capital |
| 202 | .Sq P , |
| 203 | because |
| 204 | .Fl p |
Damien Miller | 6e1777f | 2014-04-20 13:02:58 +1000 | [diff] [blame] | 205 | is already reserved for preserving the times and modes of the file. |
Darren Tucker | 1f20394 | 2003-10-15 15:50:42 +1000 | [diff] [blame] | 206 | .It Fl p |
| 207 | Preserves modification times, access times, and modes from the |
| 208 | original file. |
| 209 | .It Fl q |
Damien Miller | 4cd24c7 | 2008-02-10 22:22:29 +1100 | [diff] [blame] | 210 | Quiet mode: disables the progress meter as well as warning and diagnostic |
| 211 | messages from |
| 212 | .Xr ssh 1 . |
Darren Tucker | 1f20394 | 2003-10-15 15:50:42 +1000 | [diff] [blame] | 213 | .It Fl r |
| 214 | Recursively copy entire directories. |
Damien Miller | c7ce0da | 2008-06-16 07:55:06 +1000 | [diff] [blame] | 215 | Note that |
| 216 | .Nm |
| 217 | follows symbolic links encountered in the tree traversal. |
Darren Tucker | 1f20394 | 2003-10-15 15:50:42 +1000 | [diff] [blame] | 218 | .It Fl S Ar program |
| 219 | Name of |
| 220 | .Ar program |
| 221 | to use for the encrypted connection. |
| 222 | The program must understand |
| 223 | .Xr ssh 1 |
| 224 | options. |
djm@openbsd.org | 391ffc4 | 2019-01-26 22:41:28 +0000 | [diff] [blame] | 225 | .It Fl T |
| 226 | Disable strict filename checking. |
| 227 | By default when copying files from a remote host to a local directory |
| 228 | .Nm |
| 229 | checks that the received filenames match those requested on the command-line |
| 230 | to prevent the remote end from sending unexpected or unwanted files. |
| 231 | Because of differences in how various operating systems and shells interpret |
| 232 | filename wildcards, these checks may cause wanted files to be rejected. |
| 233 | This option disables these checks at the expense of fully trusting that |
| 234 | the server will not send unexpected filenames. |
Darren Tucker | 1f20394 | 2003-10-15 15:50:42 +1000 | [diff] [blame] | 235 | .It Fl v |
| 236 | Verbose mode. |
| 237 | Causes |
| 238 | .Nm |
| 239 | and |
| 240 | .Xr ssh 1 |
| 241 | to print debugging messages about their progress. |
| 242 | This is helpful in |
| 243 | debugging connection, authentication, and configuration problems. |
Damien Miller | 3702396 | 2000-07-11 17:31:38 +1000 | [diff] [blame] | 244 | .El |
Damien Miller | 390f153 | 2010-09-10 11:17:54 +1000 | [diff] [blame] | 245 | .Sh EXIT STATUS |
Damien Miller | 22d47ab | 2006-07-24 14:04:36 +1000 | [diff] [blame] | 246 | .Ex -std scp |
Damien Miller | 32aa144 | 1999-10-29 09:15:49 +1000 | [diff] [blame] | 247 | .Sh SEE ALSO |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 248 | .Xr sftp 1 , |
Damien Miller | 32aa144 | 1999-10-29 09:15:49 +1000 | [diff] [blame] | 249 | .Xr ssh 1 , |
| 250 | .Xr ssh-add 1 , |
| 251 | .Xr ssh-agent 1 , |
| 252 | .Xr ssh-keygen 1 , |
Ben Lindstrom | c06bf70 | 2002-06-23 00:34:37 +0000 | [diff] [blame] | 253 | .Xr ssh_config 5 , |
Damien Miller | 32aa144 | 1999-10-29 09:15:49 +1000 | [diff] [blame] | 254 | .Xr sshd 8 |
Damien Miller | f1ce505 | 2003-06-11 22:04:39 +1000 | [diff] [blame] | 255 | .Sh HISTORY |
| 256 | .Nm |
Damien Miller | 6e1777f | 2014-04-20 13:02:58 +1000 | [diff] [blame] | 257 | is based on the rcp program in |
Damien Miller | b7727df | 2013-08-21 02:43:49 +1000 | [diff] [blame] | 258 | .Bx |
| 259 | source code from the Regents of the University of California. |
Damien Miller | f1ce505 | 2003-06-11 22:04:39 +1000 | [diff] [blame] | 260 | .Sh AUTHORS |
Damien Miller | bf836e5 | 2013-07-18 16:14:13 +1000 | [diff] [blame] | 261 | .An Timo Rinne Aq Mt tri@iki.fi |
| 262 | .An Tatu Ylonen Aq Mt ylo@cs.hut.fi |