78a5afb98b9fa4e2e2b94574ef9521cf954f7216
[u/mdw/putty] / doc / pscp.but
1 \define{versionidpscp} \versionid $Id$
2
3 \#FIXME: Need examples
4
5 \C{pscp} Using PSCP to transfer files securely
6
7 \i{PSCP}, the PuTTY Secure Copy client, is a tool for transferring files
8 securely between computers using an SSH connection.
9
10 If you have an SSH 2 server, you might prefer PSFTP (see \k{psftp})
11 for interactive use. PSFTP does not in general work with SSH 1
12 servers, however.
13
14 \H{pscp-starting} Starting PSCP
15
16 PSCP is a command line application. This means that you cannot just
17 double-click on its icon to run it and instead you have to bring up a
18 \i{console window}. With Windows 95, 98, and ME, this is called an
19 \q{MS-DOS Prompt} and with Windows NT and 2000 it is called a
20 \q{Command Prompt}. It should be available from the Programs section
21 of your Start Menu.
22
23 To start PSCP it will need either to be on your \i{\c{PATH}} or in your
24 current directory. To add the directory containing PSCP to your
25 \c{PATH} environment variable, type into the console window:
26
27 \c set PATH=C:\path\to\putty\directory;%PATH%
28
29 This will only work for the lifetime of that particular console
30 window. To set your \c{PATH} more permanently on Windows NT, use the
31 Environment tab of the System Control Panel. On Windows 95, 98, and
32 ME, you will need to edit your \c{AUTOEXEC.BAT} to include a \c{set}
33 command like the one above.
34
35 \H{pscp-usage} PSCP Usage
36
37 Once you've got a console window to type into, you can just type
38 \c{pscp} on its own to bring up a usage message. This tells you the
39 version of PSCP you're using, and gives you a brief summary of how to
40 use PSCP:
41
42 \c Z:\owendadmin>pscp
43 \c PuTTY Secure Copy client
44 \c Release 0.XX
45 \c Usage: pscp [options] [user@]host:source target
46 \c pscp [options] source [source...] [user@]host:target
47 \c pscp [options] -ls [user@]host:filespec
48 \c Options:
49 \c -p preserve file attributes
50 \c -q quiet, don't show statistics
51 \c -r copy directories recursively
52 \c -v show verbose messages
53 \c -load sessname Load settings from saved session
54 \c -P port connect to specified port
55 \c -l user connect with specified username
56 \c -pw passw login with specified password
57 \c -1 -2 force use of particular SSH protocol version
58 \c -C enable compression
59 \c -i key private key file for authentication
60 \c -batch disable all interactive prompts
61 \c -unsafe allow server-side wildcards (DANGEROUS)
62 \c -V print version information
63 \c -sftp force use of SFTP protocol
64 \c -scp force use of SCP protocol
65
66 (PSCP's interface is much like the Unix \c{scp} command, if you're
67 familiar with that.)
68
69 \S{pscp-usage-basics} The basics
70
71 To receive (a) file(s) from a remote server:
72
73 \c pscp [options] [user@]host:source target
74
75 So to copy the file \c{/etc/hosts} from the server \c{example.com} as
76 user \c{fred} to the file \c{c:\\temp\\example-hosts.txt}, you would type:
77
78 \c pscp fred@example.com:/etc/hosts c:\temp\example-hosts.txt
79
80 To send (a) file(s) to a remote server:
81
82 \c pscp [options] source [source...] [user@]host:target
83
84 So to copy the local file \c{c:\\documents\\foo.txt} to the server
85 \c{example.com} as user \c{fred} to the file \c{/tmp/foo} you would
86 type:
87
88 \c pscp c:\documents\foo.txt fred@example.com:/tmp/foo
89
90 You can use wildcards to transfer multiple files in either
91 direction, like this:
92
93 \c pscp c:\documents\*.doc fred@example.com:docfiles
94 \c pscp fred@example.com:source/*.c c:\source
95
96 However, in the second case (using a wildcard for multiple remote
97 files) you may see a warning saying something like \q{warning:
98 remote host tried to write to a file called 'terminal.c' when we
99 requested a file called '*.c'. If this is a wildcard, consider
100 upgrading to SSH 2 or using the '-unsafe' option. Renaming of this
101 file has been disallowed}.
102
103 This is due to a fundamental insecurity in the old-style SCP
104 protocol: the client sends the wildcard string (\c{*.c}) to the
105 server, and the server sends back a sequence of file names that
106 match the wildcard pattern. However, there is nothing to stop the
107 server sending back a \e{different} pattern and writing over one of
108 your other files: if you request \c{*.c}, the server might send back
109 the file name \c{AUTOEXEC.BAT} and install a virus for you. Since
110 the wildcard matching rules are decided by the server, the client
111 cannot reliably verify that the filenames sent back match the
112 pattern.
113
114 PSCP will attempt to use the newer SFTP protocol (part of SSH 2)
115 where possible, which does not suffer from this security flaw. If
116 you are talking to an SSH 2 server which supports SFTP, you will
117 never see this warning. (You can force use of the SFTP protocol,
118 if available, with \c{-sftp} - see \k{pscp-usage-options-backend}.)
119
120 If you really need to use a server-side wildcard with an SSH 1
121 server, you can use the \c{-unsafe} command line option with PSCP:
122
123 \c pscp -unsafe fred@example.com:source/*.c c:\source
124
125 This will suppress the warning message and the file transfer will
126 happen. However, you should be aware that by using this option you
127 are giving the server the ability to write to \e{any} file in the
128 target directory, so you should only use this option if you trust
129 the server administrator not to be malicious (and not to let the
130 server machine be cracked by malicious people).
131
132 \S2{pscp-usage-basics-user} \c{user}
133
134 The login name on the remote server. If this is omitted, and \c{host}
135 is a PuTTY saved session, PSCP will use any username specified by that
136 saved session. Otherwise, PSCP will attempt to use the local Windows
137 username.
138
139 \S2{pscp-usage-basics-host} \c{host}
140
141 The name of the remote server, or the name of an existing PuTTY saved
142 session. In the latter case, the session's settings for hostname, port
143 number, cipher type and username will be used.
144
145 \S2{pscp-usage-basics-source} \c{source}
146
147 One or more source files. \i{Wildcards} are allowed. The syntax of
148 wildcards depends on the system to which they apply, so if you are
149 copying \e{from} a Windows system \e{to} a UNIX system, you should use
150 Windows wildcard syntax (e.g. \c{*.*}), but if you are copying \e{from}
151 a UNIX system \e{to} a Windows system, you would use the wildcard
152 syntax allowed by your UNIX shell (e.g. \c{*}).
153
154 If the source is a remote server and you do not specify a full
155 pathname (in UNIX, a pathname beginning with a \c{/} (slash)
156 character), what you specify as a source will be interpreted relative
157 to your home directory on the remote server.
158
159 \S2{pscp-usage-basics-target} \c{target}
160
161 The filename or directory to put the file(s). When copying from a
162 remote server to a local host, you may wish simply to place the
163 file(s) in the current directory. To do this, you should specify a
164 target of \c{.}. For example:
165
166 \c pscp fred@example.com:/home/tom/.emacs .
167
168 ...would copy \c{/home/tom/.emacs} on the remote server to the current
169 directory.
170
171 As with the \c{source} parameter, if the target is on a remote server
172 and is not a full path name, it is interpreted relative to your home
173 directory on the remote server.
174
175 \S{pscp-usage-options} Options
176
177 PSCP accepts all the general command line options supported by the
178 PuTTY tools, except the ones which make no sense in a file transfer
179 utility. See \k{using-general-opts} for a description of these
180 options. (The ones not supported by PSCP are clearly marked.)
181
182 PSCP also supports some of its own options. The following sections
183 describe PSCP's specific command-line options.
184
185 These are the command line options that PSCP accepts.
186
187 \S2{pscp-usage-options-p}\c{-p} preserve file attributes
188
189 By default, files copied with PSCP are \i{timestamp}ed with the date and
190 time they were copied. The \c{-p} option preserves the original
191 timestamp on copied files.
192
193 \S2{pscp-usage-options-q}\c{-q} quiet, don't show \i{statistics}
194
195 By default, PSCP displays a meter displaying the progress of the
196 current transfer:
197
198 \c mibs.tar | 168 kB | 84.0 kB/s | ETA: 00:00:13 | 13%
199
200 The fields in this display are (from left to right), filename, size
201 (in kilobytes) of file transferred so far, estimate of how fast the
202 file is being transferred (in kilobytes per second), estimated time
203 that the transfer will be complete, and percentage of the file so far
204 transferred. The \c{-q} option to PSCP suppresses the printing of
205 these statistics.
206
207 \S2{pscp-usage-options-r}\c{-r} copies directories \i{recursive}ly
208
209 By default, PSCP will only copy files. Any directories you specify to
210 copy will be skipped, as will their contents. The \c{-r} option tells
211 PSCP to descend into any directories you specify, and to copy them and
212 their contents. This allows you to use PSCP to transfer whole
213 directory structures between machines.
214
215 \S2{pscp-usage-options-batch}\c{-batch} avoid interactive prompts
216
217 If you use the \c{-batch} option, PSCP will never give an
218 interactive prompt while establishing the connection. If the
219 server's host key is invalid, for example (see \k{gs-hostkey}), then
220 the connection will simply be abandoned instead of asking you what
221 to do next.
222
223 This may help PSCP's behaviour when it is used in automated
224 scripts: using \c{-batch}, if something goes wrong at connection
225 time, the batch job will fail rather than hang.
226
227 \S2{pscp-usage-options-backend}\c{-sftp}, \c{-scp} force use of
228 particular protocol
229
230 As mentioned in \k{pscp-usage-basics}, there are two different file
231 transfer protocols in use with SSH. Despite its name, PSCP (like many
232 other ostensible \cw{scp} clients) can use either of these protocols.
233
234 The older SCP protocol does not have a written specification and
235 leaves a lot of detail to the server platform. Wildcards are expanded
236 on the server. The simple design means that any wildcard specification
237 supported by the server platform (such as brace expansion) can be
238 used, but also leads to interoperability issues such as with filename
239 quoting (for instance, where filenames contain spaces), and also the
240 security issue described in \k{pscp-usage-basics}.
241
242 The newer SFTP protocol, which is usually associated with SSH 2
243 servers, is specified in a more platform independent way, and leaves
244 issues such as wildcard syntax up to the client. (PuTTY's SFTP
245 wildcard syntax is described in \k{psftp-wildcards}.) This makes it
246 more consistent across platforms, more suitable for scripting and
247 automation, and avoids security issues with wildcard matching.
248
249 Normally PSCP will attempt to use the SFTP protocol, and only fall
250 back to the SCP protocol if SFTP is not available on the server.
251
252 The \c{-scp} option forces PSCP to use the SCP protocol or quit.
253
254 The \c{-sftp} option forces PSCP to use the SFTP protocol or quit.
255 When this option is specified, PSCP looks harder for an SFTP server,
256 which may allow use of SFTP with SSH 1 depending on server setup.
257
258 \S{pscp-retval} Return value
259
260 PSCP returns an \cw{ERRORLEVEL} of zero (success) only if the files
261 were correctly transferred. You can test for this in a batch file,
262 using code such as this:
263
264 \c pscp file*.* user@hostname:
265 \c if errorlevel 1 echo There was an error
266
267 \S{pscp-pubkey} Using public key authentication with PSCP
268
269 Like PuTTY, PSCP can authenticate using a public key instead of a
270 password. There are three ways you can do this.
271
272 Firstly, PSCP can use PuTTY saved sessions in place of hostnames
273 (see \k{pscp-usage-basics-host}). So you would do this:
274
275 \b Run PuTTY, and create a PuTTY saved session (see
276 \k{config-saving}) which specifies your private key file (see
277 \k{config-ssh-privkey}). You will probably also want to specify a
278 username to log in as (see \k{config-username}).
279
280 \b In PSCP, you can now use the name of the session instead of a
281 hostname: type \c{pscp sessionname:file localfile}, where
282 \c{sessionname} is replaced by the name of your saved session.
283
284 Secondly, you can supply the name of a private key file on the command
285 line, with the \c{-i} option. See \k{using-cmdline-identity} for more
286 information.
287
288 Thirdly, PSCP will attempt to authenticate using Pageant if Pageant
289 is running (see \k{pageant}). So you would do this:
290
291 \b Ensure Pageant is running, and has your private key stored in it.
292
293 \b Specify a user and host name to PSCP as normal. PSCP will
294 automatically detect Pageant and try to use the keys within it.
295
296 For more general information on public-key authentication, see
297 \k{pubkey}.