2001-07-01 13:21:01 +04:00
|
|
|
\versionid $Id: pscp.but,v 1.12 2001/07/01 09:21:01 simon Exp $
|
2001-01-27 19:26:55 +03:00
|
|
|
|
2001-02-04 18:35:36 +03:00
|
|
|
\#FIXME: Need examples
|
2001-01-27 19:26:55 +03:00
|
|
|
|
2001-01-17 13:11:16 +03:00
|
|
|
\C{pscp} Using PSCP to transfer files securely
|
|
|
|
|
|
|
|
\# Explain PSCP: the command line, the modes of use (local->remote
|
|
|
|
\# and remote->local, recursive, wildcards).
|
|
|
|
|
2001-01-31 03:25:57 +03:00
|
|
|
\i{PSCP}, the PuTTY Secure Copy client, is a tool for transferring files
|
2001-01-27 19:26:55 +03:00
|
|
|
securely between computers using an SSH connection.
|
|
|
|
|
|
|
|
\H{pscp-starting} Starting PSCP
|
|
|
|
|
|
|
|
PSCP is a command line application. This means that you cannot just
|
|
|
|
double-click on its icon to run it and instead you have to bring up a
|
2001-01-31 03:25:57 +03:00
|
|
|
\i{console window}. With Windows 95, 98, and ME, this is called an
|
2001-01-27 19:26:55 +03:00
|
|
|
\q{MS-DOS Prompt} and with Windows NT and 2000 it is called a
|
|
|
|
\q{Command Prompt}. It should be available from the Programs section
|
|
|
|
of your Start Menu.
|
|
|
|
|
2001-01-31 03:25:57 +03:00
|
|
|
To start PSCP it will need either to be on your \i{\c{PATH}} or in your
|
2001-01-27 19:26:55 +03:00
|
|
|
current directory. To add the directory containing PSCP to your
|
|
|
|
\c{PATH} environment variable, type into the console window:
|
|
|
|
|
2001-06-28 17:36:14 +04:00
|
|
|
\c set PATH=C:\path\to\putty\directory;%PATH%
|
2001-01-27 19:26:55 +03:00
|
|
|
|
2001-01-28 17:38:23 +03:00
|
|
|
This will only work for the lifetime of that particular console
|
|
|
|
window. To set your \c{PATH} more permanently on Windows NT, use the
|
|
|
|
Environment tab of the System Control Panel. On Windows 95, 98, and
|
|
|
|
ME, you will need to edit your \c{AUTOEXEC.BAT} to include a \c{set}
|
|
|
|
command like the one above.
|
2001-01-27 19:26:55 +03:00
|
|
|
|
|
|
|
\H{pscp-usage} PSCP Usage
|
|
|
|
|
|
|
|
Once you've got a console window to type into, you can just type
|
|
|
|
\c{pscp} on its own to bring up a usage message. This tells you the
|
|
|
|
version of PSCP you're using, and gives you a brief summary of how to
|
|
|
|
use PSCP:
|
|
|
|
|
|
|
|
\c Z:\owendadmin>pscp
|
|
|
|
\c PuTTY Secure Copy client
|
|
|
|
\c Release 0.50
|
|
|
|
\c Usage: pscp [options] [user@]host:source target
|
|
|
|
\c pscp [options] source [source...] [user@]host:target
|
|
|
|
\c pscp [options] -ls user@host:filespec
|
|
|
|
\c Options:
|
|
|
|
\c -p preserve file attributes
|
|
|
|
\c -q quiet, don't show statistics
|
|
|
|
\c -r copy directories recursively
|
|
|
|
\c -v show verbose messages
|
|
|
|
\c -P port connect to specified port
|
|
|
|
\c -pw passw login with specified password
|
|
|
|
|
|
|
|
(PSCP's interface is much like the Unix \c{scp} command, if you're
|
|
|
|
familiar with that.)
|
|
|
|
|
|
|
|
\S{pscp-usage-basics} The basics
|
|
|
|
|
|
|
|
To receive (a) file(s) from a remote server:
|
|
|
|
|
2001-02-04 18:35:36 +03:00
|
|
|
\c pscp [options] [user@]host:source target
|
|
|
|
|
2001-02-04 18:49:49 +03:00
|
|
|
So to copy the file \c{/etc/hosts} from the server \c{example.com} as
|
|
|
|
user \c{fred} to the file \c{c:\\temp\\example-hosts.txt}, you would type:
|
2001-02-04 18:35:36 +03:00
|
|
|
|
|
|
|
\c pscp fred@example.com:/etc/hosts c:\temp\example-hosts.txt
|
2001-01-27 19:26:55 +03:00
|
|
|
|
|
|
|
To send (a) file(s) to a remote server:
|
|
|
|
|
2001-02-04 18:35:36 +03:00
|
|
|
\c pscp [options] source [source...] [user@]host:target
|
|
|
|
|
2001-02-04 18:49:49 +03:00
|
|
|
So to copy the local file \c{c:\\documents\\csh-whynot.txt} to the
|
|
|
|
server \c{example.com} as user \c{fred} to the file
|
2001-02-04 18:35:36 +03:00
|
|
|
\c{/tmp/csh-whynot} you would type:
|
|
|
|
|
|
|
|
\c pscp c:\documents\csh-whynot.txt fred@example.com:/tmp/csh-whynot
|
2001-01-27 19:26:55 +03:00
|
|
|
|
2001-01-31 03:25:57 +03:00
|
|
|
\S2{pscp-usage-basics-user} \c{user}
|
|
|
|
|
|
|
|
The login name on the remote server. If this is omitted, and \c{host}
|
|
|
|
is a PuTTY saved session, PSCP will use any username specified by that
|
|
|
|
saved session. Otherwise, PSCP will attempt to use the local Windows
|
|
|
|
username.
|
|
|
|
|
|
|
|
\S2{pscp-usage-basics-host} \c{host}
|
|
|
|
|
|
|
|
The name of the remote server, or the name of an existing PuTTY saved
|
|
|
|
session. In the latter case, the session's settings for hostname, port
|
|
|
|
number, cipher type and username will be used.
|
2001-01-27 19:26:55 +03:00
|
|
|
|
2001-01-31 03:25:57 +03:00
|
|
|
\S2{pscp-usage-basics-source} \c{source}
|
2001-01-27 19:26:55 +03:00
|
|
|
|
2001-01-31 03:25:57 +03:00
|
|
|
One or more source files. \i{Wildcards} are allowed. The syntax of
|
|
|
|
wildcards depends on the system to which they apply, so if you are
|
|
|
|
copying \e{from} a Windows system \e{to} a UNIX system, you should use
|
2001-01-31 03:28:11 +03:00
|
|
|
Windows wildcard syntax (e.g. \c{*.*}), but if you are copying \e{from}
|
2001-01-31 03:25:57 +03:00
|
|
|
a UNIX system \e{to} a Windows system, you would use the wildcard
|
|
|
|
syntax allowed by your UNIX shell (e.g. \c{*}).
|
2001-01-27 19:26:55 +03:00
|
|
|
|
2001-02-04 18:35:36 +03:00
|
|
|
If the source is a remote server and you do not specify a full
|
|
|
|
pathname (in UNIX, a pathname beginning with a \c{/} (slash)
|
|
|
|
character), what you specify as a source will be interpreted relative
|
|
|
|
to your home directory on the remote server.
|
|
|
|
|
2001-01-31 03:25:57 +03:00
|
|
|
\S2{pscp-usage-basics-target} \c{target}
|
2001-01-27 19:26:55 +03:00
|
|
|
|
2001-02-04 18:35:36 +03:00
|
|
|
The filename or directory to put the file(s). When copying from a
|
|
|
|
remote server to a local host, you may wish simply to place the
|
|
|
|
file(s) in the current directory. To do this, you should specify a
|
|
|
|
target of \c{.}. For example:
|
|
|
|
|
|
|
|
\c pscp fred@example.com:/home/tom/.emacs .
|
|
|
|
|
|
|
|
...would copy \c{/home/tom/.emacs} on the remote server to the current
|
|
|
|
directory.
|
|
|
|
|
|
|
|
As with the \c{source} parameter, if the target is on a remote server
|
|
|
|
and is not a full path name, it is interpreted relative to your home
|
|
|
|
directory on the remote server.
|
2001-01-27 19:26:55 +03:00
|
|
|
|
|
|
|
\S{pscp-usage-options} Options
|
|
|
|
|
2001-01-31 03:25:57 +03:00
|
|
|
These are the command line options that PSCP accepts.
|
2001-01-27 19:26:55 +03:00
|
|
|
|
|
|
|
\S2{pscp-usage-options-p}\c{-p} preserve file attributes
|
|
|
|
|
2001-01-31 03:25:57 +03:00
|
|
|
By default, files copied with PSCP are \i{timestamp}ed with the date and
|
2001-01-27 19:26:55 +03:00
|
|
|
time they were copied. The \c{-p} option preserves the original
|
|
|
|
timestamp on copied files.
|
|
|
|
|
2001-01-31 03:25:57 +03:00
|
|
|
\S2{pscp-usage-options-q}\c{-q} quiet, don't show \i{statistics}
|
2001-01-27 19:26:55 +03:00
|
|
|
|
|
|
|
By default, PSCP displays a meter displaying the progress of the
|
|
|
|
current transfer:
|
|
|
|
|
|
|
|
\c mibs.tar | 168 kB | 84.0 kB/s | ETA: 00:00:13 | 13%
|
|
|
|
|
|
|
|
The fields in this display are (from left to right), filename, size
|
|
|
|
(in kilobytes) of file transferred so far, estimate of how fast the
|
|
|
|
file is being transferred (in kilobytes per second), estimated time
|
|
|
|
that the transfer will be complete, and percentage of the file so far
|
|
|
|
transferred. The \c{-q} option to PSCP suppresses the printing of
|
|
|
|
these statistics.
|
|
|
|
|
2001-01-31 03:25:57 +03:00
|
|
|
\S2{pscp-usage-options-r}\c{-r} copies directories \i{recursive}ly
|
2001-01-27 19:26:55 +03:00
|
|
|
|
2001-01-28 17:27:08 +03:00
|
|
|
By default, PSCP will only copy files. Any directories you specify to
|
|
|
|
copy will be skipped, as will their contents. The \c{-r} option tells
|
|
|
|
PSCP to descend into any directories you specify, and to copy them and
|
|
|
|
their contents. This allows you to use PSCP to transfer whole
|
|
|
|
directory structures between machines.
|
|
|
|
|
2001-01-31 03:25:57 +03:00
|
|
|
\S2{pscp-usage-options-v}\c{-v} show \i{verbose} messages
|
2001-01-27 19:26:55 +03:00
|
|
|
|
|
|
|
The \c{-v} option to PSCP makes it print extra information about the
|
|
|
|
file transfer. For example:
|
|
|
|
|
|
|
|
\c Logging in as "fred".
|
|
|
|
\c fred@example.com's password:
|
|
|
|
\c Sending command: scp -v -f mibs.tar
|
|
|
|
\c Connected to example.com
|
|
|
|
\c Sending file modes: C0644 1320960 mibs.tar
|
|
|
|
\c mibs.tar | 1290 kB | 67.9 kB/s | ETA: 00:00:00 | 100%
|
|
|
|
\c Remote exit status 0
|
|
|
|
\c Closing connection
|
|
|
|
|
|
|
|
This information may be useful for debugging problems with PSCP.
|
|
|
|
|
2001-01-31 03:25:57 +03:00
|
|
|
\S2{pscp-usage-options-P}\c{-P port} connect to specified \i{port}
|
2001-01-27 19:26:55 +03:00
|
|
|
|
2001-01-27 20:49:18 +03:00
|
|
|
If the \c{host} you specify is a saved session, PSCP uses any port
|
2001-01-28 17:27:08 +03:00
|
|
|
number specified in that saved session. If not, PSCP uses the default
|
|
|
|
SSH port, 22. The \c{-P} option allows you specify the port number to
|
|
|
|
connect to for PSCP's SSH connection.
|
2001-01-27 19:26:55 +03:00
|
|
|
|
2001-01-31 03:25:57 +03:00
|
|
|
\S2{pscp-usage-options-pw}\c{-pw passw} login with specified \i{password}
|
2001-01-27 19:26:55 +03:00
|
|
|
|
2001-01-27 20:49:18 +03:00
|
|
|
If a password is required to connect to the \c{host}, PSCP will
|
|
|
|
interactively prompt you for it. However, this may not always be
|
|
|
|
appropriate. If you are running PSCP as part of some automated job,
|
2001-01-28 17:27:08 +03:00
|
|
|
it will not be possible to enter a password by hand. The \c{-pw}
|
2001-01-27 20:49:18 +03:00
|
|
|
option to PSCP lets you specify the password to use on the command
|
|
|
|
line.
|
|
|
|
|
|
|
|
Since specifying passwords in scripts is a bad idea for security
|
|
|
|
reasons, you might want instead to consider using public-key
|
2001-02-19 13:54:18 +03:00
|
|
|
authentication; see \k{pscp-pubkey}.
|
|
|
|
|
|
|
|
\S{pscp-pubkey} Using public key authentication with PSCP
|
|
|
|
|
|
|
|
Like PuTTY, PSCP can authenticate using a public key instead of a
|
|
|
|
password. There are two ways you can do this.
|
|
|
|
|
|
|
|
Firstly, PSCP can use PuTTY saved sessions in place of hostnames
|
|
|
|
(see \k{pscp-usage-basics-host}). So you would do this:
|
|
|
|
|
|
|
|
\b Run PuTTY, and create a PuTTY saved session (see
|
|
|
|
\k{config-saving}) which specifies your private key file (see
|
|
|
|
\k{config-auth}). You will probably also want to specify a username
|
|
|
|
to log in as (see \k{config-username}).
|
|
|
|
|
|
|
|
\b In PSCP, you can now use the name of the session instead of a
|
2001-07-01 13:21:01 +04:00
|
|
|
hostname: type \c{pscp sessionname:file localfile}, where
|
|
|
|
\c{sessionname} is replaced by the name of your saved session.
|
2001-02-19 13:54:18 +03:00
|
|
|
|
|
|
|
Secondly, PSCP will attempt to authenticate using Pageant if Pageant
|
|
|
|
is running (see \k{pageant}). So you would do this:
|
|
|
|
|
|
|
|
\b Ensure Pageant is running, and has your private key stored in it.
|
|
|
|
|
|
|
|
\b Specify a user and host name to PSCP as normal. PSCP will
|
|
|
|
automatically detect Pageant and try to use the keys within it.
|
|
|
|
|
|
|
|
For more general information on public-key authentication, see
|
|
|
|
\k{pubkey}.
|
2001-01-27 19:26:55 +03:00
|
|
|
|
2001-01-31 03:25:57 +03:00
|
|
|
\H{pscp-ixplorer} \i{Secure iXplorer}
|
2001-01-27 19:26:55 +03:00
|
|
|
|
|
|
|
Lars Gunnarson has written a graphical interface for PSCP. You can
|
|
|
|
get it from his web site, at
|
|
|
|
\W{http://www.i-tree.org/}{www.i-tree.org}.
|