Damien Miller | 32aa144 | 1999-10-29 09:15:49 +1000 | [diff] [blame] | 1 | .\" -*- nroff -*- |
| 2 | .\" |
| 3 | .\" scp.1 |
| 4 | .\" |
| 5 | .\" Author: Tatu Ylonen <ylo@cs.hut.fi> |
| 6 | .\" |
| 7 | .\" Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
| 8 | .\" All rights reserved |
| 9 | .\" |
| 10 | .\" Created: Sun May 7 00:14:37 1995 ylo |
| 11 | .\" |
Damien Miller | 22c7726 | 2000-04-13 12:26:34 +1000 | [diff] [blame] | 12 | .\" $Id: scp.1,v 1.7 2000/04/13 02:26:37 damien Exp $ |
Damien Miller | 32aa144 | 1999-10-29 09:15:49 +1000 | [diff] [blame] | 13 | .\" |
| 14 | .Dd September 25, 1999 |
| 15 | .Dt SCP 1 |
| 16 | .Os |
| 17 | .Sh NAME |
| 18 | .Nm scp |
| 19 | .Nd secure copy (remote file copy program) |
| 20 | .Sh SYNOPSIS |
| 21 | .Nm scp |
Damien Miller | 34132e5 | 2000-01-14 15:45:46 +1100 | [diff] [blame] | 22 | .Op Fl pqrvC46 |
Damien Miller | 32aa144 | 1999-10-29 09:15:49 +1000 | [diff] [blame] | 23 | .Op Fl P Ar port |
| 24 | .Op Fl c Ar cipher |
| 25 | .Op Fl i Ar identity_file |
| 26 | .Sm off |
| 27 | .Oo |
| 28 | .Op Ar user@ |
| 29 | .Ar host1 No : |
| 30 | .Oc Ns Ar file1 |
| 31 | .Sm on |
| 32 | .Op Ar ... |
| 33 | .Sm off |
| 34 | .Oo |
| 35 | .Op Ar user@ |
| 36 | .Ar host2 No : |
| 37 | .Oc Ar file2 |
| 38 | .Sm on |
Damien Miller | 22c7726 | 2000-04-13 12:26:34 +1000 | [diff] [blame] | 39 | .Sh DESCRIPTION |
Damien Miller | 32aa144 | 1999-10-29 09:15:49 +1000 | [diff] [blame] | 40 | .Nm |
Damien Miller | 450a7a1 | 2000-03-26 13:04:51 +1000 | [diff] [blame] | 41 | copies files between hosts on a network. |
| 42 | It uses |
Damien Miller | 32aa144 | 1999-10-29 09:15:49 +1000 | [diff] [blame] | 43 | .Xr ssh 1 |
| 44 | for data transfer, and uses the same authentication and provides the |
| 45 | same security as |
| 46 | .Xr ssh 1 . |
| 47 | Unlike |
| 48 | .Xr rcp 1 , |
| 49 | .Nm |
| 50 | will ask for passwords or passphrases if they are needed for |
| 51 | authentication. |
| 52 | .Pp |
| 53 | Any file name may contain a host and user specification to indicate |
Damien Miller | 450a7a1 | 2000-03-26 13:04:51 +1000 | [diff] [blame] | 54 | that the file is to be copied to/from that host. |
| 55 | Copies between two remote hosts are permitted. |
Damien Miller | 32aa144 | 1999-10-29 09:15:49 +1000 | [diff] [blame] | 56 | .Pp |
| 57 | The options are as follows: |
| 58 | .Bl -tag -width Ds |
| 59 | .It Fl c Ar cipher |
Damien Miller | 450a7a1 | 2000-03-26 13:04:51 +1000 | [diff] [blame] | 60 | Selects the cipher to use for encrypting the data transfer. |
| 61 | This option is directly passed to |
Damien Miller | 32aa144 | 1999-10-29 09:15:49 +1000 | [diff] [blame] | 62 | .Xr ssh 1 . |
| 63 | .It Fl i Ar identity_file |
| 64 | Selects the file from which the identity (private key) for RSA |
Damien Miller | 450a7a1 | 2000-03-26 13:04:51 +1000 | [diff] [blame] | 65 | authentication is read. |
| 66 | This option is directly passed to |
Damien Miller | 32aa144 | 1999-10-29 09:15:49 +1000 | [diff] [blame] | 67 | .Xr ssh 1 . |
| 68 | .It Fl p |
| 69 | Preserves modification times, access times, and modes from the |
| 70 | original file. |
| 71 | .It Fl r |
| 72 | Recursively copy entire directories. |
| 73 | .It Fl v |
Damien Miller | 450a7a1 | 2000-03-26 13:04:51 +1000 | [diff] [blame] | 74 | Verbose mode. |
| 75 | Causes |
Damien Miller | 32aa144 | 1999-10-29 09:15:49 +1000 | [diff] [blame] | 76 | .Nm |
Damien Miller | 22c7726 | 2000-04-13 12:26:34 +1000 | [diff] [blame] | 77 | and |
Damien Miller | 32aa144 | 1999-10-29 09:15:49 +1000 | [diff] [blame] | 78 | .Xr ssh 1 |
Damien Miller | 450a7a1 | 2000-03-26 13:04:51 +1000 | [diff] [blame] | 79 | to print debugging messages about their progress. |
| 80 | This is helpful in |
Damien Miller | 32aa144 | 1999-10-29 09:15:49 +1000 | [diff] [blame] | 81 | debugging connection, authentication, and configuration problems. |
| 82 | .It Fl B |
| 83 | Selects batch mode (prevents asking for passwords or passphrases). |
| 84 | .It Fl q |
| 85 | Disables the progress meter. |
| 86 | .It Fl C |
Damien Miller | 450a7a1 | 2000-03-26 13:04:51 +1000 | [diff] [blame] | 87 | Compression enable. |
| 88 | Passes the |
Damien Miller | 32aa144 | 1999-10-29 09:15:49 +1000 | [diff] [blame] | 89 | .Fl C |
| 90 | flag to |
| 91 | .Xr ssh 1 |
| 92 | to enable compression. |
| 93 | .It Fl P Ar port |
Damien Miller | 450a7a1 | 2000-03-26 13:04:51 +1000 | [diff] [blame] | 94 | Specifies the port to connect to on the remote host. |
| 95 | Note that this option is written with a capital |
Damien Miller | 32aa144 | 1999-10-29 09:15:49 +1000 | [diff] [blame] | 96 | .Sq P , |
| 97 | because |
| 98 | .Fl p |
| 99 | is already reserved for preserving the times and modes of the file in |
| 100 | .Xr rcp 1 . |
Damien Miller | 34132e5 | 2000-01-14 15:45:46 +1100 | [diff] [blame] | 101 | .It Fl 4 |
| 102 | Forces |
| 103 | .Nm |
| 104 | to use IPv4 addresses only. |
| 105 | .It Fl 6 |
| 106 | Forces |
| 107 | .Nm |
| 108 | to use IPv6 addresses only. |
Damien Miller | 32aa144 | 1999-10-29 09:15:49 +1000 | [diff] [blame] | 109 | .Sh AUTHORS |
| 110 | Timo Rinne <tri@iki.fi> and Tatu Ylonen <ylo@cs.hut.fi> |
| 111 | .Sh HISTORY |
| 112 | .Nm |
| 113 | is based on the |
| 114 | .Xr rcp 1 |
| 115 | program in BSD source code from the Regents of the University of |
| 116 | California. |
| 117 | .Sh SEE ALSO |
| 118 | .Xr rcp 1 , |
| 119 | .Xr ssh 1 , |
| 120 | .Xr ssh-add 1 , |
| 121 | .Xr ssh-agent 1 , |
| 122 | .Xr ssh-keygen 1 , |
| 123 | .Xr sshd 8 |