OSDN Git Service

Change OpenSSL context mode flags.
[ffftp/ffftp.git] / putty / DOC / PSFTP.BUT
1 \define{versionidpsftp} \versionid $Id: psftp.but 8325 2008-11-24 18:19:55Z jacob $\r
2 \r
3 \C{psftp} Using \i{PSFTP} to transfer files securely\r
4 \r
5 \i{PSFTP}, the PuTTY SFTP client, is a tool for \i{transferring files}\r
6 securely between computers using an SSH connection.\r
7 \r
8 PSFTP differs from PSCP in the following ways:\r
9 \r
10 \b PSCP should work on virtually every SSH server. PSFTP uses the\r
11 new \i{SFTP} protocol, which is a feature of SSH-2 only. (PSCP will also\r
12 use this protocol if it can, but there is an SSH-1 equivalent it can\r
13 fall back to if it cannot.)\r
14 \r
15 \b PSFTP allows you to run an interactive file transfer session,\r
16 much like the Windows \i\c{ftp} program. You can list the contents of\r
17 directories, browse around the file system, issue multiple \c{get}\r
18 and \c{put} commands, and eventually log out. By contrast, PSCP is\r
19 designed to do a single file transfer operation and immediately\r
20 terminate.\r
21 \r
22 \H{psftp-starting} Starting PSFTP\r
23 \r
24 The usual way to start PSFTP is from a command prompt, much like\r
25 PSCP. To do this, it will need either to be on your \i{\c{PATH}} or\r
26 in your current directory.  To add the directory containing PSFTP to\r
27 your \c{PATH} environment variable, type into the console window:\r
28 \r
29 \c set PATH=C:\path\to\putty\directory;%PATH%\r
30 \r
31 Unlike PSCP, however, PSFTP has no complex command-line syntax; you\r
32 just specify a host name and perhaps a user name:\r
33 \r
34 \c psftp server.example.com\r
35 \r
36 or perhaps\r
37 \r
38 \c psftp fred@server.example.com\r
39 \r
40 Alternatively, if you just type \c{psftp} on its own (or\r
41 double-click the PSFTP icon in the Windows GUI), you will see the\r
42 PSFTP prompt, and a message telling you PSFTP has not connected to\r
43 any server:\r
44 \r
45 \c C:\>psftp\r
46 \c psftp: no hostname specified; use "open host.name" to connect\r
47 \c psftp>\r
48 \r
49 At this point you can type \c{open server.example.com} or \c{open\r
50 fred@server.example.com} to start a session.\r
51 \r
52 PSFTP accepts all the general command line options supported by the\r
53 PuTTY tools, except the ones which make no sense in a file transfer\r
54 utility. See \k{using-general-opts} for a description of these\r
55 options. (The ones not supported by PSFTP are clearly marked.)\r
56 \r
57 PSFTP also supports some of its own options. The following sections\r
58 describe PSFTP's specific command-line options.\r
59 \r
60 \S{psftp-option-b} \I{-b-PSFTP}\c{-b}: specify a file containing batch commands\r
61 \r
62 In normal operation, PSFTP is an interactive program which displays\r
63 a command line and accepts commands from the keyboard.\r
64 \r
65 If you need to do automated tasks with PSFTP, you would probably\r
66 prefer to \I{batch scripts in PSFTP}specify a set of commands in\r
67 advance and have them executed automatically. The \c{-b} option\r
68 allows you to do this. You use it with a file name containing batch\r
69 commands. For example, you might create a file called \c{myscript.scr}\r
70 containing lines like this:\r
71 \r
72 \c cd /home/ftp/users/jeff\r
73 \c del jam-old.tar.gz\r
74 \c ren jam.tar.gz jam-old.tar.gz\r
75 \c put jam.tar.gz\r
76 \c chmod a+r jam.tar.gz\r
77 \r
78 and then you could run the script by typing\r
79 \r
80 \c psftp user@hostname -b myscript.scr\r
81 \r
82 When you run a batch script in this way, PSFTP will abort the script\r
83 if any command fails to complete successfully. To change this\r
84 behaviour, you can add the \c{-be} option (\k{psftp-option-be}).\r
85 \r
86 PSFTP will terminate after it finishes executing the batch script.\r
87 \r
88 \S{psftp-option-bc} \I{-bc-PSFTP}\c{-bc}: display batch commands as they are run\r
89 \r
90 The \c{-bc} option alters what PSFTP displays while processing a\r
91 batch script specified with \c{-b}. With the \c{-bc} option, PSFTP\r
92 will display prompts and commands just as if the commands had been\r
93 typed at the keyboard. So instead of seeing this:\r
94 \r
95 \c C:\>psftp fred@hostname -b batchfile\r
96 \c Sent username "fred"\r
97 \c Remote working directory is /home/fred\r
98 \c Listing directory /home/fred/lib\r
99 \c drwxrwsr-x    4 fred     fred         1024 Sep  6 10:42 .\r
100 \c drwxr-sr-x   25 fred     fred         2048 Dec 14 09:36 ..\r
101 \c drwxrwsr-x    3 fred     fred         1024 Apr 17  2000 jed\r
102 \c lrwxrwxrwx    1 fred     fred           24 Apr 17  2000 timber\r
103 \c drwxrwsr-x    2 fred     fred         1024 Mar 13  2000 trn\r
104 \r
105 you might see this:\r
106 \r
107 \c C:\>psftp fred@hostname -bc -b batchfile\r
108 \c Sent username "fred"\r
109 \c Remote working directory is /home/fred\r
110 \c psftp> dir lib\r
111 \c Listing directory /home/fred/lib\r
112 \c drwxrwsr-x    4 fred     fred         1024 Sep  6 10:42 .\r
113 \c drwxr-sr-x   25 fred     fred         2048 Dec 14 09:36 ..\r
114 \c drwxrwsr-x    3 fred     fred         1024 Apr 17  2000 jed\r
115 \c lrwxrwxrwx    1 fred     fred           24 Apr 17  2000 timber\r
116 \c drwxrwsr-x    2 fred     fred         1024 Mar 13  2000 trn\r
117 \c psftp> quit\r
118 \r
119 \S{psftp-option-be} \I{-be-PSFTP}\c{-be}: continue batch processing on errors\r
120 \r
121 When running a batch file, this additional option causes PSFTP to\r
122 continue processing even if a command fails to complete successfully.\r
123 \r
124 You might want this to happen if you wanted to delete a file and\r
125 didn't care if it was already not present, for example.\r
126 \r
127 \S{psftp-usage-options-batch} \I{-batch-PSFTP}\c{-batch}: avoid\r
128 interactive prompts\r
129 \r
130 If you use the \c{-batch} option, PSFTP will never give an\r
131 interactive prompt while establishing the connection. If the\r
132 server's host key is invalid, for example (see \k{gs-hostkey}), then\r
133 the connection will simply be abandoned instead of asking you what\r
134 to do next.\r
135 \r
136 This may help PSFTP's behaviour when it is used in automated\r
137 scripts: using \c{-batch}, if something goes wrong at connection\r
138 time, the batch job will fail rather than hang.\r
139 \r
140 \H{psftp-commands} Running PSFTP\r
141 \r
142 Once you have started your PSFTP session, you will see a \c{psftp>}\r
143 prompt. You can now type commands to perform file-transfer\r
144 functions. This section lists all the available commands.\r
145 \r
146 Any line starting with a \cw{#} will be treated as a \i{comment}\r
147 and ignored.\r
148 \r
149 \S{psftp-quoting} \I{quoting, in PSFTP}General quoting rules for PSFTP commands\r
150 \r
151 Most PSFTP commands are considered by the PSFTP command interpreter\r
152 as a sequence of words, separated by spaces. For example, the\r
153 command \c{ren oldfilename newfilename} splits up into three words:\r
154 \c{ren} (the command name), \c{oldfilename} (the name of the file to\r
155 be renamed), and \c{newfilename} (the new name to give the file).\r
156 \r
157 Sometimes you will need to specify \I{spaces in filenames}file names\r
158 that \e{contain} spaces. In order to do this, you can surround\r
159 the file name with double quotes. This works equally well for\r
160 local file names and remote file names:\r
161 \r
162 \c psftp> get "spacey file name.txt" "save it under this name.txt"\r
163 \r
164 The double quotes themselves will not appear as part of the file\r
165 names; they are removed by PSFTP and their only effect is to stop\r
166 the spaces inside them from acting as word separators.\r
167 \r
168 If you need to \e{use} a double quote (on some types of remote\r
169 system, such as Unix, you are allowed to use double quotes in file\r
170 names), you can do this by doubling it. This works both inside and\r
171 outside double quotes. For example, this command\r
172 \r
173 \c psftp> ren ""this"" "a file with ""quotes"" in it"\r
174 \r
175 will take a file whose current name is \c{"this"} (with a double\r
176 quote character at the beginning and the end) and rename it to a\r
177 file whose name is \c{a file with "quotes" in it}.\r
178 \r
179 (The one exception to the PSFTP quoting rules is the \c{!} command,\r
180 which passes its command line straight to Windows without splitting\r
181 it up into words at all. See \k{psftp-cmd-pling}.)\r
182 \r
183 \S{psftp-wildcards} Wildcards in PSFTP\r
184 \r
185 Several commands in PSFTP support \q{\i{wildcards}} to select multiple\r
186 files.\r
187 \r
188 For \e{local} file specifications (such as the first argument to\r
189 \c{put}), wildcard rules for the local operating system are used. For\r
190 instance, PSFTP running on Windows might require the use of \c{*.*}\r
191 where PSFTP on Unix would need \c{*}.\r
192 \r
193 For \e{remote} file specifications (such as the first argument to\r
194 \c{get}), PSFTP uses a standard wildcard syntax (similar to \i{POSIX}\r
195 wildcards):\r
196 \r
197 \b \c{*} matches any sequence of characters (including a zero-length\r
198 sequence).\r
199 \r
200 \b \c{?} matches exactly one character.\r
201 \r
202 \b \c{[abc]} matches exactly one character which can be \cw{a},\r
203 \cw{b}, or \cw{c}.\r
204 \r
205 \lcont{\r
206 \r
207 \c{[a-z]} matches any character in the range \cw{a} to \cw{z}.\r
208 \r
209 \c{[^abc]} matches a single character that is \e{not} \cw{a}, \cw{b},\r
210 or \cw{c}.\r
211 \r
212 Special cases: \c{[-a]} matches a literal hyphen (\cw{-}) or \cw{a};\r
213 \c{[^-a]} matches all other characters. \c{[a^]} matches a literal\r
214 caret (\cw{^}) or \cw{a}.\r
215 \r
216 }\r
217 \r
218 \b \c{\\} (backslash) before any of the above characters (or itself)\r
219 removes that character's special meaning.\r
220 \r
221 A leading period (\cw{.}) on a filename is not treated specially,\r
222 unlike in some Unix contexts; \c{get *} will fetch all files, whether\r
223 or not they start with a leading period.\r
224 \r
225 \S{psftp-cmd-open} The \c{open} command: start a session\r
226 \r
227 If you started PSFTP by double-clicking in the GUI, or just by\r
228 typing \c{psftp} at the command line, you will need to open a\r
229 connection to an SFTP server before you can issue any other\r
230 commands (except \c{help} and \c{quit}).\r
231 \r
232 To create a connection, type \c{open host.name}, or if you need to\r
233 specify a user name as well you can type \c{open user@host.name}.\r
234 You can optionally specify a port as well:\r
235 \c{open user@host.name 22}.\r
236 \r
237 Once you have issued this command, you will not be able to issue it\r
238 again, \e{even} if the command fails (for example, if you mistype\r
239 the host name or the connection times out). So if the connection is\r
240 not opened successfully, PSFTP will terminate immediately.\r
241 \r
242 \S{psftp-cmd-quit} The \c{quit} command: end your session\r
243 \r
244 When you have finished your session, type the command \c{quit} to\r
245 close the connection, terminate PSFTP and return to the command line\r
246 (or just close the PSFTP console window if you started it from the\r
247 GUI).\r
248 \r
249 You can also use the \c{bye} and \c{exit} commands, which have\r
250 exactly the same effect.\r
251 \r
252 \S{psftp-cmd-close} The \c{close} command: close your connection\r
253 \r
254 If you just want to close the network connection but keep PSFTP\r
255 running, you can use the \c{close} command. You can then use the\r
256 \c{open} command to open a new connection.\r
257 \r
258 \S{psftp-cmd-help} The \c{help} command: get quick online help\r
259 \r
260 If you type \c{help}, PSFTP will give a short list of the available\r
261 commands.\r
262 \r
263 If you type \c{help} with a command name - for example, \c{help get}\r
264 - then PSFTP will give a short piece of help on that particular\r
265 command.\r
266 \r
267 \S{psftp-cmd-cd} The \c{cd} and \c{pwd} commands: changing the\r
268 remote \i{working directory}\r
269 \r
270 PSFTP maintains a notion of your \q{working directory} on the\r
271 server. This is the default directory that other commands will\r
272 operate on. For example, if you type \c{get filename.dat} then PSFTP\r
273 will look for \c{filename.dat} in your remote working directory on\r
274 the server.\r
275 \r
276 To change your remote working directory, use the \c{cd} command. If\r
277 you don't provide an argument, \c{cd} will return you to your home\r
278 directory on the server (more precisely, the remote directory you were\r
279 in at the start of the connection).\r
280 \r
281 To display your current remote working directory, type \c{pwd}.\r
282 \r
283 \S{psftp-cmd-lcd} The \c{lcd} and \c{lpwd} commands: changing the\r
284 local \i{working directory}\r
285 \r
286 As well as having a working directory on the remote server, PSFTP\r
287 also has a working directory on your local machine (just like any\r
288 other Windows process). This is the default local directory that\r
289 other commands will operate on. For example, if you type \c{get\r
290 filename.dat} then PSFTP will save the resulting file as\r
291 \c{filename.dat} in your local working directory.\r
292 \r
293 To change your local working directory, use the \c{lcd} command. To\r
294 display your current local working directory, type \c{lpwd}.\r
295 \r
296 \S{psftp-cmd-get} The \c{get} command: fetch a file from the server\r
297 \r
298 To \i{download a file} from the server and store it on your local PC,\r
299 you use the \c{get} command.\r
300 \r
301 In its simplest form, you just use this with a file name:\r
302 \r
303 \c get myfile.dat\r
304 \r
305 If you want to store the file locally under a different name,\r
306 specify the local file name after the remote one:\r
307 \r
308 \c get myfile.dat newname.dat\r
309 \r
310 This will fetch the file on the server called \c{myfile.dat}, but\r
311 will save it to your local machine under the name \c{newname.dat}.\r
312 \r
313 To fetch an entire directory \i{recursive}ly, you can use the \c{-r}\r
314 option:\r
315 \r
316 \c get -r mydir\r
317 \c get -r mydir newname\r
318 \r
319 (If you want to fetch a file whose name starts with a hyphen, you\r
320 may have to use the \c{--} special argument, which stops \c{get}\r
321 from interpreting anything as a switch after it. For example,\r
322 \cq{get -- -silly-name-}.)\r
323 \r
324 \S{psftp-cmd-put} The \c{put} command: send a file to the server\r
325 \r
326 To \i{upload a file} to the server from your local PC, you use the\r
327 \c{put} command.\r
328 \r
329 In its simplest form, you just use this with a file name:\r
330 \r
331 \c put myfile.dat\r
332 \r
333 If you want to store the file remotely under a different name,\r
334 specify the remote file name after the local one:\r
335 \r
336 \c put myfile.dat newname.dat\r
337 \r
338 This will send the local file called \c{myfile.dat}, but will store\r
339 it on the server under the name \c{newname.dat}.\r
340 \r
341 To send an entire directory \i{recursive}ly, you can use the \c{-r}\r
342 option:\r
343 \r
344 \c put -r mydir\r
345 \c put -r mydir newname\r
346 \r
347 (If you want to send a file whose name starts with a hyphen, you may\r
348 have to use the \c{--} special argument, which stops \c{put} from\r
349 interpreting anything as a switch after it. For example, \cq{put --\r
350 -silly-name-}.)\r
351 \r
352 \S{psftp-cmd-mgetput} The \c{mget} and \c{mput} commands: fetch or\r
353 send multiple files\r
354 \r
355 \c{mget} works almost exactly like \c{get}, except that it allows\r
356 you to specify more than one file to fetch at once. You can do this\r
357 in two ways:\r
358 \r
359 \b by giving two or more explicit file names (\cq{mget file1.txt\r
360 file2.txt})\r
361 \r
362 \b by using a wildcard (\cq{mget *.txt}).\r
363 \r
364 Every argument to \c{mget} is treated as the name of a file to fetch\r
365 (unlike \c{get}, which will interpret at most one argument like\r
366 that, and a second argument will be treated as an alternative name\r
367 under which to store the retrieved file), or a \i{wildcard} expression\r
368 matching more than one file.\r
369 \r
370 The \c{-r} and \c{--} options from \c{get} are also available with\r
371 \c{mget}.\r
372 \r
373 \c{mput} is similar to \c{put}, with the same differences.\r
374 \r
375 \S{psftp-cmd-regetput} The \c{reget} and \c{reput} commands:\r
376 \i{resuming file transfers}\r
377 \r
378 If a file transfer fails half way through, and you end up with half\r
379 the file stored on your disk, you can resume the file transfer using\r
380 the \c{reget} and \c{reput} commands. These work exactly like the\r
381 \c{get} and \c{put} commands, but they check for the presence of the\r
382 half-written destination file and start transferring from where the\r
383 last attempt left off.\r
384 \r
385 The syntax of \c{reget} and \c{reput} is exactly the same as the\r
386 syntax of \c{get} and \c{put}:\r
387 \r
388 \c reget myfile.dat\r
389 \c reget myfile.dat newname.dat\r
390 \c reget -r mydir\r
391 \r
392 These commands are intended mainly for resuming interrupted transfers.\r
393 They assume that the remote file or directory structure has not\r
394 changed in any way; if there have been changes, you may end up with\r
395 corrupted files. In particular, the \c{-r} option will not pick up\r
396 changes to files or directories already transferred in full.\r
397 \r
398 \S{psftp-cmd-dir} The \c{dir} command: \I{listing files}list remote files\r
399 \r
400 To list the files in your remote working directory, just type\r
401 \c{dir}.\r
402 \r
403 You can also list the contents of a different directory by typing\r
404 \c{dir} followed by the directory name:\r
405 \r
406 \c dir /home/fred\r
407 \c dir sources\r
408 \r
409 And you can list a subset of the contents of a directory by\r
410 providing a wildcard:\r
411 \r
412 \c dir /home/fred/*.txt\r
413 \c dir sources/*.c\r
414 \r
415 The \c{ls} command works exactly the same way as \c{dir}.\r
416 \r
417 \S{psftp-cmd-chmod} The \c{chmod} command: change permissions on\r
418 remote files\r
419 \r
420 \I{changing permissions on files}PSFTP\r
421 allows you to modify the file permissions on files and\r
422 directories on the server. You do this using the \c{chmod} command,\r
423 which works very much like the Unix \c{chmod} command.\r
424 \r
425 The basic syntax is \c{chmod modes file}, where \c{modes} represents\r
426 a modification to the file permissions, and \c{file} is the filename\r
427 to modify. You can specify multiple files or wildcards. For example:\r
428 \r
429 \c chmod go-rwx,u+w privatefile\r
430 \c chmod a+r public*\r
431 \c chmod 640 groupfile1 groupfile2\r
432 \r
433 The \c{modes} parameter can be a set of octal digits in the Unix\r
434 style. (If you don't know what this means, you probably don't want\r
435 to be using it!) Alternatively, it can be a list of permission\r
436 modifications, separated by commas. Each modification consists of:\r
437 \r
438 \b The people affected by the modification. This can be \c{u} (the\r
439 owning user), \c{g} (members of the owning group), or \c{o}\r
440 (everybody else - \q{others}), or some combination of those. It can\r
441 also be \c{a} (\q{all}) to affect everybody at once.\r
442 \r
443 \b A \c{+} or \c{-} sign, indicating whether permissions are to be\r
444 added or removed.\r
445 \r
446 \b The actual permissions being added or removed. These can be\r
447 \I{read permission}\c{r} (permission to read the file),\r
448 \I{write permission}\c{w} (permission to write to the file), and\r
449 \I{execute permission}\c{x} (permission to execute the file, or in\r
450 the case of a directory, permission to access files within the\r
451 directory).\r
452 \r
453 So the above examples would do:\r
454 \r
455 \b The first example: \c{go-rwx} removes read, write and execute\r
456 permissions for members of the owning group and everybody else (so\r
457 the only permissions left are the ones for the file owner). \c{u+w}\r
458 adds write permission for the file owner.\r
459 \r
460 \b The second example: \c{a+r} adds read permission for everybody to\r
461 all files and directories starting with \q{public}.\r
462 \r
463 In addition to all this, there are a few extra special cases for\r
464 \i{Unix} systems. On non-Unix systems these are unlikely to be useful:\r
465 \r
466 \b You can specify \c{u+s} and \c{u-s} to add or remove the Unix\r
467 \i{set-user-ID bit}. This is typically only useful for special purposes;\r
468 refer to your Unix documentation if you're not sure about it.\r
469 \r
470 \b You can specify \c{g+s} and \c{g-s} to add or remove the Unix\r
471 \i{set-group-ID bit}. On a file, this works similarly to the set-user-ID\r
472 bit (see your Unix documentation again); on a directory it ensures\r
473 that files created in the directory are accessible by members of the\r
474 group that owns the directory.\r
475 \r
476 \b You can specify \c{+t} and \c{-t} to add or remove the Unix\r
477 \q{\i{sticky bit}}. When applied to a directory, this means that the\r
478 owner of a file in that directory can delete the file (whereas\r
479 normally only the owner of the \e{directory} would be allowed to).\r
480 \r
481 \S{psftp-cmd-del} The \c{del} command: delete remote files\r
482 \r
483 To \I{deleting files}delete a file on the server, type \c{del} and\r
484 then the filename or filenames:\r
485 \r
486 \c del oldfile.dat\r
487 \c del file1.txt file2.txt\r
488 \c del *.o\r
489 \r
490 Files will be deleted without further prompting, even if multiple files\r
491 are specified.\r
492 \r
493 \c{del} will only delete files. You cannot use it to delete\r
494 directories; use \c{rmdir} for that.\r
495 \r
496 The \c{rm} command works exactly the same way as \c{del}.\r
497 \r
498 \S{psftp-cmd-mkdir} The \c{mkdir} command: create remote directories\r
499 \r
500 To \i{create a directory} on the server, type \c{mkdir} and then the\r
501 directory name:\r
502 \r
503 \c mkdir newstuff\r
504 \r
505 You can specify multiple directories to create at once:\r
506 \r
507 \c mkdir dir1 dir2 dir3\r
508 \r
509 \S{psftp-cmd-rmdir} The \c{rmdir} command: remove remote directories\r
510 \r
511 To \i{remove a directory} on the server, type \c{rmdir} and then the\r
512 directory name or names:\r
513 \r
514 \c rmdir oldstuff\r
515 \c rmdir *.old ancient\r
516 \r
517 Directories will be deleted without further prompting, even if\r
518 multiple directories are specified.\r
519 \r
520 Most SFTP servers will probably refuse to remove a directory if the\r
521 directory has anything in it, so you will need to delete the\r
522 contents first.\r
523 \r
524 \S{psftp-cmd-mv} The \c{mv} command: move and \i{rename remote files}\r
525 \r
526 To rename a single file on the server, type \c{mv}, then the current\r
527 file name, and then the new file name:\r
528 \r
529 \c mv oldfile newname\r
530 \r
531 You can also move the file into a different directory and change the\r
532 name:\r
533 \r
534 \c mv oldfile dir/newname\r
535 \r
536 To move one or more files into an existing subdirectory, specify the\r
537 files (using wildcards if desired), and then the destination\r
538 directory:\r
539 \r
540 \c mv file dir\r
541 \c mv file1 dir1/file2 dir2\r
542 \c mv *.c *.h ..\r
543 \r
544 The \c{rename} and \c{ren} commands work exactly the same way as\r
545 \c{mv}.\r
546 \r
547 \S{psftp-cmd-pling} The \c{!} command: run a \i{local Windows command}\r
548 \r
549 You can run local Windows commands using the \c{!} command. This is\r
550 the only PSFTP command that is not subject to the command quoting\r
551 rules given in \k{psftp-quoting}. If any command line begins with\r
552 the \c{!} character, then the rest of the line will be passed\r
553 straight to Windows without further translation.\r
554 \r
555 For example, if you want to move an existing copy of a file out of\r
556 the way before downloading an updated version, you might type:\r
557 \r
558 \c psftp> !ren myfile.dat myfile.bak\r
559 \c psftp> get myfile.dat\r
560 \r
561 using the Windows \c{ren} command to rename files on your local PC.\r
562 \r
563 \H{psftp-pubkey} Using \i{public key authentication} with PSFTP\r
564 \r
565 Like PuTTY, PSFTP can authenticate using a public key instead of a\r
566 password. There are three ways you can do this.\r
567 \r
568 Firstly, PSFTP can use PuTTY saved sessions in place of hostnames.\r
569 So you might do this:\r
570 \r
571 \b Run PuTTY, and create a PuTTY saved session (see\r
572 \k{config-saving}) which specifies your private key file (see\r
573 \k{config-ssh-privkey}). You will probably also want to specify a\r
574 username to log in as (see \k{config-username}).\r
575 \r
576 \b In PSFTP, you can now use the name of the session instead of a\r
577 hostname: type \c{psftp sessionname}, where \c{sessionname} is\r
578 replaced by the name of your saved session.\r
579 \r
580 Secondly, you can supply the name of a private key file on the command\r
581 line, with the \c{-i} option. See \k{using-cmdline-identity} for more\r
582 information.\r
583 \r
584 Thirdly, PSFTP will attempt to authenticate using Pageant if Pageant\r
585 is running (see \k{pageant}). So you would do this:\r
586 \r
587 \b Ensure Pageant is running, and has your private key stored in it.\r
588 \r
589 \b Specify a user and host name to PSFTP as normal. PSFTP will\r
590 automatically detect Pageant and try to use the keys within it.\r
591 \r
592 For more general information on public-key authentication, see\r
593 \k{pubkey}.\r