Arrgh, we can't have -p for port number because we're already using
[sgt/putty] / doc / plink.but
CommitLineData
a88d77d6 1\versionid $Id: plink.but,v 1.15 2002/03/05 20:39:27 simon Exp $
bace5431 2
e5b0d077 3\C{plink} Using the command-line connection tool Plink
4
717c214c 5\i{Plink} (PuTTY Link) is a command-line connection tool similar to
2f8d6d43 6UNIX \c{ssh}. It is mostly used for automated operations, such as
7making CVS access a repository on a remote server.
8
9Plink is probably not what you want if you want to run an
10interactive session in a console window.
bace5431 11
12\H{plink-starting} Starting Plink
13
2f8d6d43 14Plink is a command line application. This means that you cannot just
15double-click on its icon to run it and instead you have to bring up
16a \i{console window}. In Windows 95, 98, and ME, this is called an
17\q{MS-DOS Prompt}, and in Windows NT and 2000 it is called a
18\q{Command Prompt}. It should be available from the Programs section
bace5431 19of your Start Menu.
20
2f8d6d43 21In order to use Plink, the file \c{plink.exe} will need either to be
22on your \i{\c{PATH}} or in your current directory. To add the
23directory containing Plink to your \c{PATH} environment variable,
24type into the console window:
bace5431 25
8452efbc 26\c set PATH=C:\path\to\putty\directory;%PATH%
bace5431 27
28This will only work for the lifetime of that particular console
2f8d6d43 29window. To set your \c{PATH} more permanently on Windows NT, use the
bace5431 30Environment tab of the System Control Panel. On Windows 95, 98, and
31ME, you will need to edit your \c{AUTOEXEC.BAT} to include a \c{set}
32command like the one above.
33
2f8d6d43 34\H{plink-usage} Using Plink
35
36This section describes the basics of how to use Plink for
37interactive logins and for automated processes.
bace5431 38
39Once you've got a console window to type into, you can just type
40\c{plink} on its own to bring up a usage message. This tells you the
41version of Plink you're using, and gives you a brief summary of how to
42use Plink:
43
44\c Z:\sysosd>plink
45\c PuTTY Link: command-line connection utility
46\c Release 0.50
47\c Usage: plink [options] [user@]host [command]
48\c Options:
49\c -v show verbose messages
50\c -ssh force use of ssh protocol
51\c -P port connect to specified port
52\c -pw passw login with specified password
53
2f8d6d43 54Once this works, you are ready to use Plink.
55
56\S{plink-usage-interactive} Using Plink for interactive logins
57
58To make a simple interactive connection to a remote server, just
59type \c{plink} and then the host name:
60
61\c Z:\sysosd>plink login.example.com
62\c
63\c Debian GNU/Linux 2.2 flunky.example.com
64\c flunky login:
65
66You should then be able to log in as normal and run a session. The
67output sent by the server will be written straight to your command
68prompt window, which will most likely not interpret terminal control
69codes in the way the server expects it to. So if you run any
70full-screen applications, for example, you can expect to see strange
71characters appearing in your window. Interactive connections like
72this are not the main point of Plink.
73
74In order to connect with a different protocol, you can give the
75command line options \c{-ssh}, \c{-telnet}, \c{-rlogin} or \c{-raw}.
76To make an SSH connection, for example:
77
78\c Z:\sysosd>plink -ssh login.example.com
79\c login as:
80
81If you have already set up a PuTTY saved session, then instead of
82supplying a host name, you can give the saved session name. This
83allows you to use public-key authentication, specify a user name,
84and use most of the other features of PuTTY:
85
86\c Z:\sysosd>plink my-ssh-session
87\c Sent username "fred"
88\c Authenticating with public key "fred@winbox"
89\c Last login: Thu Dec 6 19:25:33 2001 from :0.0
90\c fred@flunky:~$
91
92\S{plink-usage-batch} Using Plink for automated connections
93
94More typically Plink is used with the SSH protocol, to enable you to
95talk directly to a program running on the server. To do this you
96have to ensure Plink is \e{using} the SSH protocol. You can do this
97in several ways:
98
99\b Use the \c{-ssh} option as described in
100\k{plink-usage-interactive}.
101
102\b Set up a PuTTY saved session that describes the server you are
103connecting to, and that also specifies the protocol as SSH.
104
105\b Set the Windows environment variable \c{PLINK_PROTOCOL} to the
106word \c{ssh}.
107
108Usually Plink is not invoked directly by a user, but run
109automatically by another process. Therefore you typically do not
110want Plink to prompt you for a user name or a password.
111
112To avoid being prompted for a user name, you can:
113
114\b Use the \c{-l} option to specify a user name on the command line.
115For example, \c{plink login.example.com -l fred}.
116
117\b Set up a PuTTY saved session that describes the server you are
118connecting to, and that also specifies the username to log in as
119(see \k{config-username}).
120
121To avoid being prompted for a password, you should almost certainly
122set up public-key authentication. (See \k{pubkey} for a general
123introduction to public-key authentication.) Again, you can do this
124in two ways:
125
126\b Set up a PuTTY saved session that describes the server you are
127connecting to, and that also specifies a private key file (see
128\k{config-ssh-privkey}). For this to work without prompting, your
129private key will need to have no passphrase.
130
131\b Store the private key in Pageant. See \k{pageant} for further
132information.
133
134Once you have done all this, you should be able to run a remote
135command on the SSH server machine and have it execute automatically
136with no prompting:
137
138\c Z:\sysosd>plink login.example.com -l fred echo hello, world
139\c hello, world
140\c
141\c Z:\sysosd>
142
143Or, if you have set up a saved session with all the connection
144details:
145
146\c Z:\sysosd>plink mysession echo hello, world
147\c hello, world
148\c
149\c Z:\sysosd>
150
151Then you can set up other programs to run this Plink command and
152talk to it as if it were a process on the server machine.
bace5431 153
ff2ae367 154You may also find it useful to use the \c{-batch} command-line
155option; see \k{plink-usage-options-batch}.
156
bace5431 157\S{plink-usage-options} Options
158
2f8d6d43 159This section describes the command line options that Plink accepts.
bace5431 160
7638530e 161\S2{plink-usage-options-v}\c{-v} show verbose messages
162
163By default, Plink only displays any password prompts and the output of
164the remote command. The \c{-v} option makes it print extra
165information about the connection being made, for example:
166
167\c Server version: SSH-1.5-OpenSSH-1.2.3
168\c We claim version: SSH-1.5-PuTTY
169\c Using SSH protocol version 1
170\c Received public keys
171\c Host key fingerprint is:
172\c 1023 e3:65:44:44:bd:b1:04:59:bc:e2:3d:a1:4d:09:ce:99
173\c Encrypted session key
174\c Using 3DES encryption
175\c Trying to enable encryption...
176\c Successfully started encryption
177\c Sent username "fred".
178\c Sent username "fred"
179\c fred@example.com's password:
180
181This information can be useful for diagnosing problems.
182
2f8d6d43 183\S2{plink-usage-options-ssh} Protocol selection options
184
185Plink is most useful when using the SSH protocol. However, it allows
186you to interface to all the protocols supported by PuTTY. You can
187specify the option \c{-ssh} on the command line to select the SSH
188protocol; you can also specify \c{-telnet}, \c{-rlogin} or \c{-raw}
189to select other protocols.
7638530e 190
191\S2{plink-usage-options-P}\c{-P port} connect to specified port
192
2f8d6d43 193If your server machine is running its SSH service on a port other
194than the standard one, you can specify an alternative port number to
195connect to using the \c{-P} option, like this:
196
197\c plink -ssh login.example.com -P 5022
198
7638530e 199\S2{plink-usage-options-pw}\c{-pw passw} login with specified password
200
2f8d6d43 201A simple way to automate a remote login is to supply your password
202on the Plink command line. This is \e{not recommended} for reasons
203of security. If you possibly can, we recommend you set up public-key
204authentication instead. See \k{pubkey} for details.
205
4d6989e8 206Note that the \c{-pw} option only works when you are using the SSH
207protocol. Due to fundamental limitations of Telnet and Rlogin, these
208protocols do not support automated password authentication.
209
2f8d6d43 210\S2{plink-usage-options-user}\c{-l username} login with specified
211username
212
213As described in \k{plink-usage-batch}, you can specify the user name
214to log in as on the remote server using the \c{-l} option. For
215example, \c{plink login.example.com -l fred}.
216
ff2ae367 217\S2{plink-usage-options-batch}\c{-batch} avoid interactive prompts
218
219If you use the \c{-batch} option, Plink will never give an
220interactive prompt while establishing the connection. If the
221server's host key is invalid, for example (see \k{gs-hostkey}), then
222the connection will simply be abandoned instead of asking you what
223to do next.
224
225This may help Plink's behaviour when it is used in automated
226scripts: using \c{-batch}, if something goes wrong at connection
227time, the batch job will fail rather than hang.
228
2f8d6d43 229\S2{plink-usage-options-cmdfile} \c{-m filename} read command from a
230file
231
232If the command you want to run on the remote server is particularly
233large, you can read it from a file using the \c{-m} option, instead
234of putting it directly on Plink's command line. On most Unix
235systems, you can even put multiple lines in this file and execute
236more than one command in sequence, or a whole shell script.
237
238\S2{plink-usage-options-portfwd} \c{-L} and \c{-R} set up port
239forwarding
240
241Plink allows you to use port forwarding just as PuTTY does; if you
242have set up a PuTTY saved session that specifies port forwardings,
243and you connect to that session using Plink, then the same port
244forwardings will be set up.
245
246For convenience, Plink also offers the option to set up port
247forwarding on the command line. The command-line options work just
248like the ones in Unix \c{ssh} programs.
249
250To forward a local port (say 5110) to a remote destination (say
251\cw{popserver.example.com} port 110), you can write:
252
253\c plink mysession -L 5110:popserver.example.com:110
254
255And to forward a remote port to a local destination, just use the
256\c{-R} option instead of \c{-L}:
257
258\c plink mysession -R 5023:mytelnetserver.myhouse.org:23
259
260For general information on port forwarding, see
261\k{using-port-forwarding}.
bace5431 262
eaebbdf8 263\H{plink-batch} Using Plink in \i{batch files} and \i{scripts}
bace5431 264
2f8d6d43 265Once you have set up Plink to be able to log in to a remote server
266without any interactive prompting (see \k{plink-usage-batch}), you
267can use it for lots of scripting and batch purposes. For example, to
268start a backup on a remote machine, you might use a command like:
269
270\c plink root@myserver /etc/backups/do-backup.sh
271
272Or perhaps you want to fetch all system log lines relating to a
273particular web area:
274
275\c plink mysession grep /~fjbloggs/ /var/log/httpd/access.log > fredlogs
276
277Any non-interactive command you could usefully run on the server
278command line, you can run in a batch file using Plink in this way.
279
eaebbdf8 280\H{plink-cvs} Using Plink with \i{CVS}
281
7638530e 282To use Plink with CVS, you need to set the environment variable
283\c{CVS_RSH} to point to Plink:
eaebbdf8 284
285\c set CVS_RSH=\path\to\plink.exe
7638530e 286
287You also need to arrange to be able to connect to a remote host
2f8d6d43 288without any interactive prompts, as described in
289\k{plink-usage-batch}.
7638530e 290
2f8d6d43 291You should then be able to run CVS as follows:
7638530e 292
293\c cvs -d :ext:user@sessionname:/path/to/repository co module
294
2f8d6d43 295If you specified a username in your saved session, you don't even
296need to specify the \q{user} part of this, and you can just say:
7638530e 297
298\c cvs -d :ext:sessionname:/path/to/repository co module
299
7638530e 300\H{plink-wincvs} Using Plink with \i{WinCVS}
301
302Plink can also be used with WinCVS. Firstly, arrange for Plink to be
2f8d6d43 303able to connect to a remote host non-interactively, as described in
304\k{plink-usage-batch}.
eaebbdf8 305
2f8d6d43 306Then, in WinCVS, bring up the \q{Preferences} dialogue box from the
d60c975d 307\e{Admin} menu, and switch to the \q{Ports} tab. Tick the box there
2f8d6d43 308labelled \q{Check for an alternate \cw{rsh} name} and in the text
309entry field to the right enter the full path to \c{plink.exe}.
310Select \q{OK} on the \q{Preferences} dialogue box.
eaebbdf8 311
d60c975d 312Next, select \q{Command Line} from the WinCVS \q{Admin} menu, and type
7638530e 313a CVS command as in \k{plink-cvs}, for example:
314
315\c cvs -d :ext:user@hostname:/path/to/repository co module
eaebbdf8 316
a88d77d6 317or (if you're using a saved session):
318
319\c cvs -d :ext:user@sessionname:/path/to/repository co module
320
d60c975d 321Select the folder you want to check out to with the \q{Change Folder}
322button, and click \q{OK} to check out your module. Once you've got
7638530e 323modules checked out, WinCVS will happily invoke plink from the GUI for
324CVS operations.
bace5431 325
2f8d6d43 326\# \H{plink-whatelse} Using Plink with... ?