Add background-colour erase and `set this at the start of the
[sgt/putty] / doc / config.but
CommitLineData
e5b0d077 1\C{config} Configuring PuTTY
2
55ba634a 3This chapter describes all the configuration options in PuTTY.
4
5PuTTY is configured using the control panel that comes up before you
6start a session. Some options can also be changed in the middle of a
7session, by selecting \e{Change Settings} from the window menu.
8
9\H{config-session} The Session panel
10
11The Session configuration panel contains the basic options you need
12to specify in order to open a session at all, and also allows you to
13save your settings to be reloaded later.
14
15\S{config-hostname} The host name section
16
17The top box on the Session panel, labelled \q{Specify your
18connection by host name}, contains the details that need to be
19filled in before PuTTY can open a session at all.
20
21\b The \e{Host Name} box is where you type the name, or the IP
22address, of the server you want to connect to.
23
24\b The \e{Protocol} radio buttons let you choose what type of
350ee898 25connection you want to make: a raw connection, a Telnet connection, an
add788fc 26rlogin connection or an SSH connection. (See \k{which-one} for a
27summary of the differences between SSH, Telnet and rlogin.)
55ba634a 28
29\b The \e{Port} box lets you specify which port number on the server
350ee898 30to connect to. If you select Telnet, Rlogin, or SSH, this box will be
31filled in automatically to the usual value, and you will only need to
55ba634a 32change it if you have an unusual server. If you select Raw mode, you
33will almost certainly need to fill in the \e{Port} box.
34
35\S{config-saving} Loading and storing saved sessions
36
37The next part of the Session configuration panel allows you to save
38your preferred PuTTY options so they will appear automatically the
39next time you start PuTTY. It also allows you to create \e{saved
40sessions}, which contain a full set of configuration options plus a
41host name and protocol. A saved session contains all the information
42PuTTY needs to start exactly the session you want.
43
44\b To save your default settings: first set up the settings the way
45you want them saved. Then come back to the Session panel. Select the
46\q{Default Settings} entry in the saved sessions list, with a single
47click. Then press the \e{Save} button.
48
49\b To save a session: first go through the rest of the configuration
50box setting up all the options you want. Then come back to the
51Session panel. Enter a name for the saved session in the \e{Saved
52Sessions} input box. (The server name is often a good choice for a
53saved session name.) Then press the \e{Save} button. Your saved
54session name should now appear in the list box.
55
56\b To reload a saved session: single-click to select the session
57name in the list box, and then press the \e{Load} button. Your saved
58settings should all appear in the configuration panel.
59
60\b To modify a saved session: first load it as described above. Then
61make the changes you want. Come back to the Session panel,
62single-click to select the session name in the list box, and press
63the \e{Save} button. The new settings will be saved over the top of
64the old ones.
65
66\b To start a saved session immediately: double-click on the session
67name in the list box.
68
69\b To delete a saved session: single-click to select the session
70name in the list box, and then press the \e{Delete} button.
71
72Each saved session is independent of the Default Settings
73configuration. If you change your preferences and update Default
74Settings, you must also update every saved session separately.
75
76\S{config-closeonexit} \q{Close Window on Exit}
77
add788fc 78Finally in the Session panel, there is an option labelled \q{Close
79Window on Exit}. This controls whether the PuTTY session window
80disappears as soon as the session inside it terminates. If you are
81likely to want to copy and paste text out of the session after it
82has terminated, you should arrange this option to be off.
83
84\q{Close Window On Exit} has three settings. \q{Always} means always
85close the window on exit; \q{Never} means never close on exit
86(always leave the window open). The third setting, and the default
87one, is \q{Only on clean exit}. In this mode, a session which
88terminates normally will cause its window to close, but one which is
89aborted unexpectedly by network trouble or a confusing message from
90the server will leave the window up.
91
92\H{config-logging} The Logging panel
93
94The Logging configuration panel allows you to save log files of your
95PuTTY sessions, for debugging, analysis or future reference.
96
97The main option is a radio-button set that specifies whether PuTTY
98will log anything at all. The options are
99
100\b \q{Logging turned off completely}. This is the default option; in
101this mode PuTTY will not create a log file at all.
102
103\b \q{Log printable output only}. In this mode, a log file will be
104created and written to, but only printable text will be saved into
105it. The various terminal control codes that are typically sent down
106an interactive session alongside the printable text will be omitted.
107This might be a useful mode if you want to read a log file in a text
108editor and hope to be able to make sense of it.
109
110\b \q{Log all session output}. In this mode, \e{everything} sent by
111the server into your terminal session is logged. If you view the log
112file in a text editor, therefore, you may well find it full of
113strange control characters. This is a particularly useful mode if
114you are experiencing problems with PuTTY's terminal handling: you
115can record everything that went to the terminal, so that someone
116else can replay the session later in slow motion and watch to see
117what went wrong.
118
119\S{config-logfilename} \q{Log file name}
120
121In this edit box you enter the name of the file you want to log the
122session to. The \q{Browse} button will let you look around your file
123system to find the right place to put the file; or if you already
124know exactly where you want it to go, you can just type a pathname
125into the edit box.
126
127There are a few special features in this box. If you use the \c{&}
128character in the file name box, PuTTY will insert details of the
129current session in the name of the file it actually opens. The
130precise replacements it will do are:
131
132\b \c{&Y} will be replaced by the current year, as four digits.
133
134\b \c{&M} will be replaced by the current month, as two digits.
135
136\b \c{&D} will be replaced by the current day of the month, as two
137digits.
138
139\b \c{&T} will be replaced by the current time, as six digits
140(HHMMSS) with no punctuation.
141
142\b \c{&H} will be replaced by the host name you are connecting to.
143
144For example, if you enter the host name
145\c{c:\\puttylogs\\log-&h-&y&m&d-&t.dat}, you will end up with files looking
146like
147
148\c log-server1.example.com-20010528-110859.dat
149\c log-unixbox.somewhere.org-20010611-221001.dat
150
151\S{config-logfileexists} \q{What to do if the log file already exists}
152
153This control allows you to specify what PuTTY should do if it tries
154to start writing to a log file and it finds the file already exists.
155You might want to automatically destroy the existing log file and
156start a new one with the same name. Alternatively, you might want to
157open the existing log file and add data to the \e{end} of it.
158Finally (the default option), you might not want to have any
159automatic behaviour, but to ask the user every time the problem
160comes up.
55ba634a 161
162\H{config-terminal} The Terminal panel
163
164The Terminal configuration panel allows you to control the behaviour
165of PuTTY's terminal emulation.
166
167\S{config-autowrap} \q{Auto wrap mode initially on}
168
169Auto wrap mode controls what happens when text printed in a PuTTY
170window reaches the right-hand edge of the window.
171
172With auto wrap mode on, if a long line of text reaches the
173right-hand edge, it will wrap over on to the next line so you can
174still see all the text. With auto wrap mode off, the cursor will
175stay at the right-hand edge of the screen, and all the characters in
176the line will be printed on top of each other.
177
178If you are running a full-screen application and you occasionally
179find the screen scrolling up when it looks as if it shouldn't, you
180could try turning this option off.
181
182Auto wrap mode can be turned on and off by control sequences sent by
183the server. This configuration option only controls the \e{default}
184state. If you modify this option in mid-session using \e{Change
185Settings}, you will need to reset the terminal \#{ FIXME } before
186the change takes effect.
187
188\S{config-decom} \q{DEC Origin Mode initially on}
189
190DEC Origin Mode is a minor option which controls how PuTTY
191interprets cursor-position control sequences sent by the server.
192
193The server can send a control sequence that restricts the scrolling
194region of the display. For example, in an editor, the server might
195reserve a line at the top of the screen and a line at the bottom,
196and might send a control sequence that causes scrolling operations
197to affect only the remaining lines.
198
199With DEC Origin Mode on, cursor coordinates are counted from the top
200of the scrolling region. With it turned off, cursor coordinates are
201counted from the top of the whole screen regardless of the scrolling
202region.
203
204It is unlikely you would need to change this option, but if you find
205a full-screen application is displaying pieces of text in what looks
206like the wrong part of the screen, you could try turning DEC Origin
207Mode on to see whether that helps.
208
209DEC Origin Mode can be turned on and off by control sequences sent by
210the server. This configuration option only controls the \e{default}
211state. If you modify this option in mid-session using \e{Change
212Settings}, you will need to reset the terminal \#{ FIXME } before
213the change takes effect.
214
215\S{config-crlf} \q{Implicit CR in every LF}
216
217Most servers send two control characters, CR and LF, to start a new
218line of the screen. The CR character makes the cursor return to the
219left-hand side of the screen. The LF character makes the cursor move
220one line down (and might make the screen scroll).
221
222Some servers only send LF, and expect the terminal to move the
223cursor over to the left automatically. If you come across a server
224that does this, you will see a stepped effect on the screen, like
225this:
226
227\c First line of text
228\c Second line
229\c Third line
230
231If this happens to you, try enabling the \q{Implicit CR in every LF}
232option, and things might go back to normal:
233
234\c First line of text
235\c Second line
236\c Third line
237
55ba634a 238\S{config-erase} \q{Use background colour to erase screen}
239
240Not all terminals agree on what colour to turn the screen when the
241server sends a \q{clear screen} sequence. Some terminals believe the
242screen should always be cleared to the \e{default} background
243colour. Others believe the screen should be cleared to whatever the
244server has selected as a background colour.
245
246There exist applications that expect both kinds of behaviour.
247Therefore, PuTTY can be configured to do either.
248
249With this option disabled, screen clearing is always done in the
250default background colour. With this option enabled, it is done in
251the \e{current} background colour.
252
253\S{config-blink} \q{Enable blinking text}
254
255The server can ask PuTTY to display text that blinks on and off.
256This is very distracting, so PuTTY allows you to turn blinking text
257off completely.
258
add788fc 259\S{config-localecho} \q{Local echo}
55ba634a 260
add788fc 261With local echo disabled, characters you type into the PuTTY window
262are not echoed in the window \e{by PuTTY}. They are simply sent to
263the server. (The \e{server} might choose to echo them back to you;
264this can't be controlled from the PuTTY control panel.)
55ba634a 265
add788fc 266Some types of session need local echo, and many do not. In its
267default mode, PuTTY will automatically attempt to deduce whether or
268not local echo is appropriate for the session you are working in. If
269you find it has made the wrong decision, you can use this
270configuration option to override its choice: you can force local
271echo to be turned on, or force it to be turned off, instead of
272relying on the automatic detection.
55ba634a 273
add788fc 274\S{config-localedit} \q{Local line editing}
55ba634a 275
add788fc 276Normally, every character you type into the PuTTY window is sent
277immediately to the server the moment you type it.
278
279If you enable local line editing, this changes. PuTTY will let you
280edit a whole line at a time locally, and the line will only be sent
281to the server when you press Return. If you make a mistake, you can
282use the Backspace key to correct it before you press Return, and the
283server will never see the mistake.
284
285Since it is hard to edit a line locally without being able to see
286it, local line editing is mostly used in conjunction with local echo
287(\k{config-localecho}). This makes it ideal for use in raw mode
288\#{FIXME} or when connecting to MUDs or talkers. (Although some more
289advanced MUDs do occasionally turn local line editing on and turn
290local echo off, in order to accept a password from the user.)
291
292Some types of session need local line editing, and many do not. In
293its default mode, PuTTY will automatically attempt to deduce whether
294or not local line editing is appropriate for the session you are
295working in. If you find it has made the wrong decision, you can use
296this configuration option to override its choice: you can force
297local line editing to be turned on, or force it to be turned off,
298instead of relying on the automatic detection.
55ba634a 299
add788fc 300\H{config-bell} The Bell panel
55ba634a 301
add788fc 302The Bell panel controls the terminal bell feature: the server's
303ability to cause PuTTY to beep at you.
304
305In the default configuration, when the server sends the character
306with ASCII code 7 (Control-G), PuTTY will play the Windows Default
307Beep sound. This is not always what you want the terminal bell
308feature to do; the Bell panel allows you to configure alternative
309actions.
310
311\S{config-bellstyle} \q{Set the style of bell}
312
313This control allows you to select various different actions to occur
314on a terminal bell:
315
316\b Selecting \q{None} disables the bell completely. In this mode,
317the server can send as many Control-G characters as it likes and
318nothing at all will happen.
319
320\b \q{Play Windows Default Sound} is the default setting. It causes
321the Windows \q{Default Beep} sound to be played. To change what this
322sound is, or to test it if nothing seems to be happening, use the
323Sound configurer in the Windows Control Panel.
324
325\b \q{Play a custom sound file} allows you to specify a particular
326sound file to be used by PuTTY alone, or even by a particular
327individual PuTTY session. This allows you to distinguish your PuTTY
328beeps from any other beeps on the system. If you select this option,
329you will also need to enter the name of your sound file in the edit
330control \q{Custom sound file to play as a bell}.
331
332\b \q{Visual bell} is a silent alternative to a beeping computer. In
333this mode, when the server sends a Control-G, the whole PuTTY window
334will flash white for a fraction of a second.
335
336\S{config-belltaskbar} \q{Taskbar/caption indication on bell}
337
338This feature controls what happens to the PuTTY window's entry in
339the Windows Taskbar if a bell occurs while the window does not have
340the input focus.
341
342In the default state (\q{Disabled}) nothing unusual happens.
343
344If you select \q{Steady}, then when a bell occurs and the window is
345not in focus, the window's Taskbar entry and its title bar will
346change colour to let you know that PuTTY session is asking for your
347attention. The change of colour will persist until you select the
348window, so you can leave several PuTTY windows minimised in your
349terminal, go away from your keyboard, and be sure not to have missed
350any important beeps when you get back.
351
352\q{Flashing} is even more eye-catching: the Taskbar entry will
353continuously flash on and off until you select the window.
354
355\S{config-bellovl} \q{Control the bell overload behaviour}
356
357A common user error in a terminal session is to accidentally run the
358Unix command \c{cat} (or equivalent) on an inappropriate file type,
359such as an executable, image file, or ZIP file. This produces a huge
360stream of non-text characters sent to the terminal, which typically
361includes a lot of bell characters. As a result of this the terminal
362often doesn't stop beeping for ten minutes, and everybody else in
363the office gets annoyed.
364
365To try to avoid this behaviour, or any other cause of excessive
366beeping, PuTTY includes a bell overload management feature. In the
367default configuration, receiving more than five bell characters in a
368two-second period will cause the overload feature to activate. Once
369the overload feature is active, further bells will have no effect at
370all, so the rest of your binary file will be sent to the screen in
371silence. After a period of five seconds during which no further
372bells are received, the overload feature will turn itself off again
373and bells will be re-enabled.
374
375If you want this feature completely disabled, you can turn it off
376using the checkbox \q{Bell is temporarily disabled when over-used}.
377
378Alternatively, if you like the bell overload feature but don't agree
379with the settings, you can configure the details: how many bells
380constitute an overload, how short a time period they have to arrive
381in to do so, and how much silent time is required before the
382overload feature will deactivate itself.
55ba634a 383
384\H{config-keyboard} The Keyboard panel
385
1630bb61 386The Keyboard configuration panel allows you to control the behaviour
387of the keyboard in PuTTY.
388
55ba634a 389\S{config-backspace} Changing the action of the Backspace key
390
1630bb61 391Some terminals believe that the Backspace key should send the same
392thing to the server as Control-H (ASCII code 8). Other terminals
393believe that the Backspace key should send ASCII code 127 (usually
394known as Control-?) so that it can be distinguished from Control-H.
395This option allows you to choose which code PuTTY generates when you
396press Backspace.
397
398If you are connecting to a Unix system, you will probably find that
399the Unix \c{stty} command lets you configure which the server
400expects to see, so you might not need to change which one PuTTY
401generates. On other systems, the server's expectation might be fixed
402and you might have no choice but to configure PuTTY.
403
404If you do have the choice, we recommend configuring PuTTY to
405generate Control-? and configuring the server to expect it, because
406that allows applications such as \c{emacs} to use Control-H for
407help.
408
55ba634a 409\S{config-homeend} Changing the action of the Home and End keys
410
1630bb61 411The Unix terminal emulator \c{rxvt} disagrees with the rest of the
412world about what character sequences should be sent to the server by
413the Home and End keys.
414
415\c{xterm}, and other terminals, send \c{ESC [1~} for the Home key,
416and \c{ESC [4~} for the End key. \c{rxvt} sends \c{ESC [H} for the
417Home key and \c{ESC [Ow} for the End key.
418
419If you find an application on which the Home and End keys aren't
420working, you could try switching this option to see if it helps.
421
55ba634a 422\S{config-funkeys} Changing the action of the function keys and keypad
423
1630bb61 424This option affects the function keys (F1 to F12) and the top row of
425the numeric keypad.
426
427\b In the default mode, labelled \c{ESC [n~}, the function keys
428generate sequences like \c{ESC [11~}, \c{ESC [12~} and so on. This
429matches the general behaviour of Digital's terminals.
430
431\b In Linux mode, F6 to F12 behave just like the default mode, but
432F1 to F5 generate \c{ESC [[A} through to \c{ESC [[E}. This mimics the
433Linux virtual console.
434
435\b In Xterm R6 mode, F5 to F12 behave like the default mode, but F1
436to F4 generate \c{ESC OP} through to \c{ESC OS}, which are the
437sequences produced by the top row of the \e{keypad} on Digital's
438terminals.
439
440\b In VT400 mode, all the function keys behave like the default
441mode, but the actual top row of the numeric keypad generates \c{ESC
442OP} through to \c{ESC OS}.
443
350ee898 444\b In VT100+ mode, the function keys generate \c{ESC OP} through to
445\c{ESC O[}
446
447\b In SCO mode, the function keys F1 to F12 generate \c{ESC [M}
448through to \c{ESC [X}. Together with shift, they generate \c{ESC [Y}
449through to \c{ESC [j}. With control they generate \c{ESC [k} through
450to \c{ESC [v}, and with shift and control together they generate
451\c{ESC [w} through to \c{ESC [\{}.
452
1630bb61 453If you don't know what any of this means, you probably don't need to
454fiddle with it.
455
55ba634a 456\S{config-appcursor} Controlling Application Cursor Keys mode
457
1630bb61 458Application Cursor Keys mode is a way for the server to change the
459control sequences sent by the arrow keys. In normal mode, the arrow
460keys send \c{ESC [A} through to \c{ESC [D}. In application mode,
461they send \c{ESC OA} through to \c{ESC OD}.
462
463Application Cursor Keys mode can be turned on and off by the server,
464depending on the application. PuTTY allows you to configure the
465initial state, and also allows you to disable application mode
466completely.
467
55ba634a 468\S{config-appkeypad} Controlling Application Keypad mode
469
1630bb61 470Application Keypad mode is a way for the server to change the
471behaviour of the numeric keypad.
472
473In normal mode, the keypad behaves like a normal Windows keypad:
474with NumLock on, the number keys generate numbers, and with NumLock
475off they act like the arrow keys and Home, End etc.
476
477In application mode, all the keypad keys send special control
478sequences, \e{including} Num Lock. Num Lock stops behaving like Num
479Lock and becomes another function key.
480
481Depending on which version of Windows you run, you may find the Num
482Lock light still flashes on and off every time you press Num Lock,
483even when application mode is active and Num Lock is acting like a
484function key. This is unavoidable.
485
486Application keypad mode can be turned on and off by the server,
487depending on the application. PuTTY allows you to configure the
488initial state, and also allows you to disable application mode
489completely.
490
55ba634a 491\S{config-nethack} Using NetHack keypad mode
492
1630bb61 493PuTTY has a special mode for playing NetHack. You can enable it by
494selecting \q{NetHack} in the \q{Initial state of numeric keypad}
495control.
496
497In this mode, the numeric keypad keys 1-9 generate the NetHack
498movement commands (\cw{hjklyubn}). The 5 key generates the \c{.}
499command (do nothing).
500
501Better still, pressing Shift with the keypad keys generates the
502capital forms of the commands (\cw{HJKLYUBN}), which tells NetHack
503to keep moving you in the same direction until you encounter
504something interesting.
505
506For some reason, this feature only works properly when Num Lock is
507on. We don't know why.
508
55ba634a 509\S{config-compose} Enabling a DEC-like Compose key
510
1630bb61 511DEC terminals have a Compose key, which provides an easy-to-remember
512way of typing accented characters. You press Compose and then type
513two more characters. The two characters are \q{combined} to produce
514an accented character. The choices of character are designed to be
515easy to remember; for example, composing \q{e} and \q{`} produces
516the \q{\u00e8{e-grave}} character.
517
518If you enable the \q{Application and AltGr act as Compose key}
519option, the Windows Application key and the AltGr key will both have
520this behaviour.
521
add788fc 522\S{config-ctrlalt} \q{Control-Alt is different from AltGr}
b5752f1b 523
add788fc 524Some old keyboards do not have an AltGr key, which can make it
525difficult to type some characters. PuTTY can be configured to treat
526the key combination Ctrl + Left Alt the same way as the AltGr key.
b5752f1b 527
add788fc 528By default, this checkbox is checked, and the key combination Ctrl +
529Left Alt does something completely different. PuTTY's usual handling
530of the left Alt key is to prefix the Escape (Control-\cw{[})
531character to whatever character sequence the rest of the keypress
532would generate. For example, Alt-A generates Escape followed by
533\c{a}. So Alt-Ctrl-A would generate Escape, followed by Control-A.
b5752f1b 534
add788fc 535If you uncheck this box, Ctrl-Alt will become a synonym for AltGr,
536so you can use it to type extra graphic characters if your keyboard
537has any.
b5752f1b 538
55ba634a 539\H{config-window} The Window panel
540
1630bb61 541The Window configuration panel allows you to control aspects of the
542PuTTY window and its behaviour.
543
55ba634a 544\S{config-winsize} Setting the size of the PuTTY window
545
1630bb61 546The \e{Rows} and \e{Columns} boxes let you set the PuTTY window to a
547precise size. Of course you can also drag the window to a new size
548while a session is running.
549
add788fc 550\S{config-winsizelock} Locking the size of the PuTTY window
551
552These options allow you to control what happens when the user tries
553to resize the PuTTY window.
554
555When you resize the PuTTY window, one of three things can happen:
556
557\b Nothing (if you have completely disabled resizes).
558
559\b The font size can stay the same and the number of rows and
560columns in the terminal can change.
561
562\b The number of rows and columns in the terminal can stay the same,
563and the font size can change.
564
565You can control which of these happens using the \q{Lock terminal
566size against resizing} and \q{Lock font size against resizing}
567options. If you lock both, the window will refuse to be resized at
568all. If you lock just the terminal size, the font size will change
569when you resize the window. If you lock just the font size, the
570terminal size will change when you resize the window.
1630bb61 571
55ba634a 572\S{config-scrollback} Controlling scrollback
573
1630bb61 574Text that scrolls off the top of the PuTTY terminal window is kept
575for reference. The scrollbar on the right of the window lets you
576view the scrolled-off text. You can also page through the scrollback
577using the keyboard, by pressing Shift-PgUp and Shift-PgDn.
578
579The \q{Lines of scrollback} box lets you configure how many lines of
580text PuTTY keeps. The \q{Display scrollbar} option allows you to
581hide the scrollbar (although you can still view the scrollback using
582Shift-PgUp and Shift-PgDn).
583
584If you are viewing part of the scrollback when the server sends more
585text to PuTTY, the screen will revert to showing the current
586terminal contents. You can disable this behaviour by turning off
587\q{Reset scrollback on display activity}. You can also make the
588screen revert when you press a key, by turning on \q{Reset
589scrollback on keypress}.
590
55ba634a 591\S{config-warnonclose} \q{Warn before closing window}
592
1630bb61 593If you press the Close button in a PuTTY window that contains a
594running session, PuTTY will put up a warning window asking if you
595really meant to close the window. A window whose session has already
596terminated can always be closed without a warning.
597
598If you want to be able to close a window quickly, you can disable
599the \q{Warn before closing window} option.
600
55ba634a 601\S{config-altf4} \q{Window closes on ALT-F4}
602
1630bb61 603By default, pressing ALT-F4 causes the window to close (or a warning
604box to appear; see \k{config-warnonclose}). If you disable the
605\q{Window closes on ALT-F4} option, then pressing ALT-F4 will simply
606send a key sequence to the server.
607
55ba634a 608\S{config-altspace} \q{System menu appears on ALT-Space}
609
1630bb61 610If this option is enabled, then pressing ALT-Space will bring up the
611PuTTY window's menu, like clicking on the top left corner. If it is
612disabled, then pressing ALT-Space will just send \c{ESC SPACE} to
613the server.
614
2470d64e 615Some accessibility programs for Windows may need this option
616enabling to be able to control PuTTY's window successfully. For
617instance, Dragon NaturallySpeaking requires it both to open the
618system menu via voice, and to close, minimise, maximise and restore
619the window.
620
55ba634a 621\S{config-altonly} \q{System menu appears on Alt alone}
622
1630bb61 623If this option is enabled, then pressing and releasing ALT will
624bring up the PuTTY window's menu, like clicking on the top left
625corner. If it is disabled, then pressing and releasing ALT will have
626no effect.
627
55ba634a 628\S{config-alwaysontop} \q{Ensure window is always on top}
629
1630bb61 630If this option is enabled, the PuTTY window will stay on top of all
631other windows.
632
add788fc 633\S{config-fullscreen} \q{Full screen on Alt-Enter}
634
635If this option is enabled, then pressing Alt-Enter will cause the
636PuTTY window to become full-screen - that is, it will not only
637maximise itself, it will expand so that the title bar goes off the
638top of the screen, and place itself on top of the Windows taskbar,
639so that \e{nothing} is visible on the screen except PuTTY. Pressing
640Alt-Enter again will restore the previous window size.
641
55ba634a 642\H{config-appearance} The Appearance panel
643
1630bb61 644The Appearance configuration panel allows you to control aspects of
645PuTTY's appearance.
646
55ba634a 647\S{config-cursor} Controlling the appearance of the cursor
648
26c8f51a 649The \q{Cursor appearance} option lets you configure the cursor to be
650a block, an underline, or a vertical line. A block cursor becomes an
651empty box when the window loses focus; an underline or a vertical
652line becomes dotted.
653
654The \q{Cursor blinks} option makes the cursor blink on and off. This
655works in any of the cursor modes.
55ba634a 656
657\S{config-font} Controlling the font used in the terminal window
658
add788fc 659This option allows you to choose what font, in what size, the PuTTY
660terminal window uses to display the text in the session. You will be
661offered a choice from all the fixed-width fonts installed on the
662system. (VT100-style terminal handling can only deal with fixed-
663width fonts.)
26c8f51a 664
55ba634a 665\S{config-title} Controlling the window title
666
add788fc 667The \q{Window title} edit box allows you to set the title of the
668PuTTY window. By default the window title will contain the host name
669followed by \q{PuTTY}, for example \c{server1.example.com - PuTTY}.
670If you want a different window title, this is where to set it.
671
672PuTTY allows the server to send \c{xterm} control sequences which
673modify the title of the window in mid-session. There is also an
674\c{xterm} sequence to modify the title of the window's \e{icon}.
675This makes sense in a windowing system where the window becomes an
676icon when minimised, such as Windows 3.1 or most X Window System
677setups; but in the Windows 95-like user interface it isn't as
678applicable. By default PuTTY's window title and Taskbar caption will
679change into the server-supplied icon title if you minimise the PuTTY
680window, and change back to the server-supplied window title if you
681restore it. (If the server has not bothered to supply a window or
682icon title, none of this will happen.) By checking the box marked
683\q{Avoid ever using icon title}, you can arrange that PuTTY will
684always display the window title, and completely ignore any icon
685titles the server sends it.
686
687\S{config-mouseptr} \q{Hide mouse pointer when typing in window}
688
689If you enable this option, the mouse pointer will disappear if the
690PuTTY window is selected and you press a key. This way, it will not
691obscure any of the text in the window while you work in your
692session. As soon as you move the mouse, the pointer will reappear.
693
694This option is disabled by default, so the mouse pointer remains
695visible at all times.
696
697\S{config-winborder} Controlling the window border
698
699PuTTY allows you to configure the appearance of the window border to
700some extent.
701
702The checkbox marked \q{Sunken-edge border} changes the appearance of
703the window border to something more like a DOS box: the inside edge
704of the border is highlighted as if it sank down to meet the surface
705inside the window. This makes the border a little bit thicker as
706well. It's hard to describe well. Try it and see if you like it.
707
708You can also configure a completely blank gap between the text in
709the window and the border, using the \q{Gap between text and window
710edge} control. By default this is set at one pixel. You can reduce
711it to zero, or increase it further.
712
55ba634a 713\H{config-translation} The Translation panel
714
1630bb61 715The Translation configuration panel allows you to control the
716translation between the character set understood by the server and
717the character set understood by PuTTY.
718
add788fc 719\S{config-charset} Controlling character set translation
720
721During an interactive session, PuTTY receives a stream of 8-bit
722bytes from the server, and in order to display them on the screen it
723needs to know what character set to interpret them in.
724
725There are a lot of character sets to choose from. The \q{Received
726data assumed to be in which character set} option lets you select
727one. By default PuTTY will attempt to choose a character set that is
728right for your locale as reported by Windows; if it gets it wrong,
729you can select a different one using this control.
730
731A few notable character sets are:
732
733\b The ISO-8859 series are all standard character sets that include
734various accented characters appropriate for different sets of
735languages.
55ba634a 736
add788fc 737\b The Win125x series are defined by Microsoft, for similar
738purposes. In particular Win1252 is almost equivalent to ISO-8859-1,
739but contains a few extra characters such as matched quotes and the
740Euro symbol.
55ba634a 741
add788fc 742\b If you want the old IBM PC character set with block graphics and
743line-drawing characters, you can select \q{CP437}.
744
745\b PuTTY also supports Unicode mode, in which the data coming from
746the server is interpreted as being in the UTF-8 encoding of Unicode.
747If you select \q{UTF-8} as a character set you can use this mode.
748Not all server-side applications will support it.
749
750\S{config-cyr} \q{Caps Lock acts as Cyrillic switch}
751
752This feature allows you to switch between a US/UK keyboard layout
753and a Cyrillic keyboard layout by using the Caps Lock key, if you
754need to type (for example) Russian and English side by side in the
755same document.
756
757Currently this feature is not expected to work properly if your
758native keyboard layout is not US or UK.
759
760\S{config-linedraw} Controlling display of line drawing characters
761
762VT100-series terminals allow the server to send control sequences
763that shift temporarily into a separate character set for drawing
764lines and boxes. PuTTY has a variety of ways to support this
765capability. In general you should probably try lots of options until
766you find one that your particular font supports.
767
768\b \q{Font has XWindows encoding} is for use with fonts that have a
769special encoding, where the lowest 32 character positions (below the
770ASCII printable range) contain the line-drawing characters. This is
771unlikely to be the case with any standard Windows font; it will
772probably only apply to custom-built fonts or fonts that have been
773automatically converted from the X Window System.
774
775\b \q{Use font in both ANSI and OEM modes} tries to use the same
776font in two different character sets, to obtain a wider range of
777characters. This doesn't always work; some fonts claim to be a
778different size depending on which character set you try to use.
779
780\b \q{Use font in OEM mode only} is more reliable than that, but can
781miss out other characters from the main character set.
782
783\b \q{Poor man's line drawing} assumes that the font \e{cannot}
784generate the line and box characters at all, so it will use the
785\c{+}, \c{-} and \c{|} characters to draw approximations to boxes.
786You should use this option if none of the other options works.
787
788\b \q{Unicode mode} tries to use the box characters that are present
789in Unicode. For good Unicode-supporting fonts this is probably the
790most reliable and functional option.
55ba634a 791
792\H{config-selection} The Selection panel
793
1630bb61 794The Selection panel allows you to control the way copy and paste
795work in the PuTTY window.
796
add788fc 797\S{config-linedrawpaste} Controlling the pasting of line drawing
798characters
799
800By default, when you copy and paste a piece of the PuTTY screen that
801contains VT100 line and box drawing characters, PuTTY will translate
802them into the \q{poor man's} line-drawing characters \c{+}, \c{-}
803and \c{|}. The checkbox \q{Don't translate line drawing chars}
804disables this feature, so line-drawing characters will be pasted as
805if they were in the normal character set. This will typically mean
806they come out mostly as \c{q} and \c{x}, with a scattering of
807\c{jklmntuvw} at the corners. This might be useful if you were
808trying to recreate the same box layout in another program, for
809example.
810
55ba634a 811\S{config-mouse} Changing the actions of the mouse buttons
812
add788fc 813PuTTY's copy and paste mechanism is modelled on the Unix \c{xterm}
814application. The X Window System uses a three-button mouse, and the
815convention is that the left button selects, the right button extends
816an existing selection, and the middle button pastes.
817
818Windows typically only has two mouse buttons, so in PuTTY's default
819configuration, the \e{right} button pastes, and the \e{middle}
820button (if you have one) extends a selection.
821
822If you have a three-button mouse and you are already used to the
823\c{xterm} arrangement, you can select it using the \q{Action of
824mouse buttons} control.
825
826\S{config-mouseshift} \q{Shift overrides application's use of mouse}
827
828PuTTY allows the server to send control codes that let it take over
829the mouse and use it for purposes other than copy and paste.
830Applications which use this feature include the text-mode web
831browser \c{links}, the Usenet newsreader \c{trn} version 4, and the
832file manager \c{mc} (Midnight Commander).
833
834When running one of these applications, pressing the mouse buttons
835no longer performs copy and paste. If you do need to copy and paste,
836you can still do so if you hold down Shift while you do your mouse
837clicks.
838
839However, it is possible in theory for applications to even detect
840and make use of Shift + mouse clicks. We don't know of any
841applications that do this, but in case someone ever writes one,
842unchecking the \q{Shift overrides application's use of mouse}
843checkbox will cause Shift + mouse clicks to go to the server as well
844(so that mouse-driven copy and paste will be completely disabled).
845
55ba634a 846\S{config-charclasses} Configuring word-by-word selection
847
add788fc 848PuTTY will select a word at a time in the terminal window if you
849double-click to begin the drag. This panel allows you to control
850precisely what is considered to be a word.
851
852Each character is given a \e{class}, which is a small number
853(typically 0, 1 or 2). PuTTY considers a single word to be any
854number of adjacent characters in the same class. So by modifying the
855assignment of characters to classes, you can modify the word-by-word
856selection behaviour.
857
858In the default configuration, the character classes are:
859
860\b Class 0 contains white space and control characters.
861
862\b Class 1 contains most punctuation.
863
864\b Class 2 contains letters, numbers and a few pieces of punctuation
865(the double quote, minus sign, period, forward slash and
866underscore).
867
868So, for example, if you assign the \c{@} symbol into character class
8692, you will be able to select an e-mail address with just a double
870click.
871
872In order to adjust these assignments, you start by selecting a group
873of characters in the list box. Then enter a class number in the edit
874box below, and press the \q{Set} button.
875
876This mechanism currently only covers ASCII characters, because it
877isn't feasible to expand the list to cover the whole of Unicode.
878
55ba634a 879\H{config-colours} The Colours panel
880
1630bb61 881The Colours panel allows you to control PuTTY's use of colour.
882
55ba634a 883\S{config-boldcolour} \q{Bolded text is a different colour}
884
add788fc 885When the server sends a control sequence indicating that some text
886should be displayed in bold, PuTTY can handle this two ways. It can
887either change the font for a bold version, or use the same font in a
888brighter colour. This control lets you choose which.
889
890By default the box is checked, so non-bold text is displayed in
891light grey and bold text is displayed in bright white (and similarly
892in other colours). If you uncheck the box, bold and non-bold text
893will be displayed in the same colour, and instead the font will
894change to indicate the difference.
895
55ba634a 896\S{config-logpalette} \q{Attempt to use logical palettes}
897
add788fc 898Logical palettes are a mechanism by which a Windows application
899running on an 8-bit colour display can select precisely the colours
900it wants instead of going with the Windows standard defaults.
901
902If you are not getting the colours you ask for on an 8-bit display,
903you can try enabling this option. However, be warned that it's never
904worked very well.
905
55ba634a 906\S{config-colourcfg} Adjusting the colours in the terminal window
907
add788fc 908The main colour control allows you to specify exactly what colours
909things should be displayed in. To modify one of the PuTTY colours,
910use the list box to select which colour you want to modify. The RGB
911values for that colour will appear on the right-hand side of the
912list box. Now, if you press the \q{Modify} button, you will be
913presented with a colour selector, in which you can choose a new
914colour to go in place of the old one.
915
916PuTTY allows you to set the cursor colour, the default foreground
917and background, and the precise shades of all the ANSI configurable
918colours (black, red, green, yellow, blue, magenta, cyan, and white).
919In addition, if you have selected \q{Bolded text is a different
920colour}, you can also modify the precise shades used for the bold
921versions of these colours.
922
55ba634a 923\H{config-connection} The Connection panel
924
1630bb61 925The Connection panel allows you to configure options that apply to
926more than one type of connection.
927
55ba634a 928\S{config-termtype} \q{Terminal-type string}
929
add788fc 930Most servers you might connect to with PuTTY are designed to be
931connected to from lots of different types of terminal. In order to
932send the right control sequences to each one, the server will need
933to know what type of terminal it is dealing with. Therefore, each of
934the SSH, Telnet and Rlogin protocols allow a text string to be sent
935down the connection describing the terminal.
936
937PuTTY attempts to emulate the Unix \c{xterm} program, and by default
938it reflects this by sending \c{xterm} as a terminal-type string. If
939you find this is not doing what you want - perhaps the remote
940terminal reports \q{Unknown terminal type} - you could try setting
941this to something different, such as \c{vt220}.
942
943If you're not sure whether a problem is due to the terminal type
944setting or not, you probably need to consult the manual for your
945application or your server.
946
55ba634a 947\S{config-username} \q{Auto-login username}
948
add788fc 949All three of the SSH, Telnet and Rlogin protocols allow you to
950specify what user name you want to log in as, without having to type
951it explicitly every time. (Some Telnet servers don't support this.)
952
953In this box you can type that user name.
954
55ba634a 955\S{config-keepalive} Using keepalives to prevent disconnection
956
c33f3243 957If you find your sessions are closing unexpectedly (\q{Connection
958reset by peer}) after they have been idle for a while, you might
959want to try using this option.
960
add788fc 961Some network routers and firewalls need to keep track of all
c33f3243 962connections through them. Usually, these firewalls will assume a
963connection is dead if no data is transferred in either direction
964after a certain time interval. This can cause PuTTY sessions to be
965unexpectedly closed by the firewall if no traffic is seen in the
966session for some time.
967
968The keepalive option (\q{Seconds between keepalives}) allows you to
969configure PuTTY to send data through the session at regular
970intervals, in a way that does not disrupt the actual terminal
971session. If you find your firewall is cutting idle connections off,
972you can try entering a non-zero value in this field. The value is
973measured in seconds; so, for example, if your firewall cuts
974connections off after ten minutes then you might want to enter 300
975seconds (5 minutes) in the box.
976
977Note that keepalives are not always helpful. They help if you have a
978firewall which drops your connection after an idle period; but if
979the network between you and the server suffers from breaks in
980connectivity then keepalives can actually make things worse. If a
981session is idle, and connectivity is temporarily lost between the
982endpoints, but the connectivity is restored before either side tries
983to send anything, then there will be no problem - neither endpoint
984will notice that anything was wrong. However, if one side does send
985something during the break, it will repeatedly try to re-send, and
986eventually give up and abandon the connection. Then when
987connectivity is restored, the other side will find that the first
988side doesn't believe there is an open connection any more.
989Keepalives can make this sort of problem worse, because they
990increase the probability that PuTTY will attempt to send data during
991a break in connectivity. Therefore, you might find they help
992connection loss, or you might find they make it worse, depending on
993what \e{kind} of network problems you have between you and the
994server.
995
996Keepalives are only supported in Telnet and SSH; the Rlogin and Raw
997protocols offer no way of implementing them.
998
55ba634a 999\H{config-telnet} The Telnet panel
1000
1630bb61 1001The Telnet panel allows you to configure options that only apply to
1002Telnet sessions.
1003
55ba634a 1004\S{config-termspeed} \q{Terminal-speed string}
1005
add788fc 1006Telnet allows the client to send a text string that describes the
1007terminal speed. PuTTY lets you configure this, in case you find the
1008server is reacting badly to the default value. (I'm not aware of any
1009servers that do have a problem with it.)
1010
55ba634a 1011\S{config-environ} Setting environment variables on the server
1012
add788fc 1013The Telnet protocol also provides a means for the client to pass
1014environment variables to the server. Many Telnet servers have
1015stopped supporting this feature due to security flaws, but PuTTY
1016still supports it for the benefit of any servers which have found
1017other ways around the security problems than just disabling the
1018whole mechanism.
1019
1020To add an environment variable to the list transmitted down the
1021connection, you enter the variable name in the \q{Variable} box,
1022enter its value in the \q{Value} box, and press the \q{Add} button.
1023To remove one from the list, select it in the list box and press
1024\q{Remove}.
1025
55ba634a 1026\S{config-oldenviron} \q{Handling of OLD_ENVIRON ambiguity}
1027
add788fc 1028The original Telnet mechanism for passing environment variables was
1029badly specified. At the time the standard (RFC 1408) was written,
1030BSD telnet implementations were already supporting the feature, and
1031the intention of the standard was to describe the behaviour the BSD
1032implementations were already using.
1033
1034Sadly there was a typing error in the standard when it was issued,
1035and two vital function codes were specified the wrong way round. BSD
1036implementations did not change, and the standard was not corrected.
1037Therefore, it's possible you might find either BSD or RFC-compliant
1038implementations out there. This switch allows you to choose which
1039one PuTTY claims to be.
1040
1041The problem was solved by issuing a second standard, defining a new
1042Telnet mechanism called \cw{NEW_ENVIRON}, which behaved exactly like
1043the original \cw{OLD_ENVIRON} but was not encumbered by existing
1044implementations. Most Telnet servers now support this, and it's
1045unambiguous. This feature should only be needed if you have trouble
1046passing environment variables to quite an old server.
1047
1048\S{config-ptelnet} Passive and active Telnet negotiation modes
1049
1050In a Telnet connection, there are two types of data passed between
1051the client and the server: actual text, and \e{negotiations} about
1052which Telnet extra features to use.
1053
1054PuTTY can use two different strategies for negotiation:
1055
1056\b In \e{active} mode, PuTTY starts to send negotiations as soon as
1057the connection is opened.
1058
1059\b In \e{passive} mode, PuTTY will wait to negotiate until it sees a
1060negotiation from the server.
1061
1062The obvious disadvantage of passive mode is that if the server is
1063also operating in a passive mode, then negotiation will never begin
1064at all. For this reason PuTTY defaults to active mode.
1065
1066However, sometimes passive mode is required in order to successfully
1067get through certain types of firewall and Telnet proxy server. If
1068you have confusing trouble with a firewall, you could try enabling
1069passive mode to see if it helps.
1070
1071\S{config-telnetkey} \q{Keyboard sends telnet Backspace and Interrupt}
1072
1073If this box is checked, the Backspace key on the keyboard will send
1074the Telnet special backspace code, and Control-C will send the
1075Telnet special interrupt code. You probably shouldn't enable this
1076unless you know what you're doing.
1077
1078\H{config-rlogin} The Rlogin panel
1079
1080The Rlogin panel allows you to configure options that only apply to
1081Rlogin sessions.
1082
1083\S{config-rlogin-termspeed} \q{Terminal-speed string}
1084
1085Like Telnet, Rlogin allows the client to send a text string that
1086describes the terminal speed. PuTTY lets you configure this, in case
1087you find the server is reacting badly to the default value. (I'm not
1088aware of any servers that do have a problem with it.)
1089
1090\S{config-rlogin-localuser} \q{Local username}
1091
1092Rlogin allows an automated (password-free) form of login by means of
1093a file called \c{.rhosts} on the server. You put a line in your
1094\c{.rhosts} file saying something like \c{jbloggs@pc1.example.com},
1095and then when you make an Rlogin connection the client transmits the
1096username of the user running the Rlogin client. The server checks
1097the username and hostname against \c{.rhosts}, and if they match it
1098does not ask for a password.
1099
1100This only works because Unix systems contain a safeguard to stop a
1101user from pretending to be another user in an Rlogin connection.
1102Rlogin connections have to come from port numbers below 1024, and
1103Unix systems prohibit this to unprivileged processes; so when the
1104server sees a connection from a low-numbered port, it assumes the
1105client end of the connection is held by a privileged (and therefore
1106trusted) process, so it believes the claim of who the user is.
1107
1108Windows does not have this restriction: \e{any} user can initiate an
1109outgoing connection from a low-numbered port. Hence, the Rlogin
1110\c{.rhosts} mechanism is completely useless for securely
1111distinguishing several different users on a Windows machine. If you
1112have a \c{.rhosts} entry pointing at a Windows PC, you should assume
1113that \e{anyone} using that PC can spoof your username in an Rlogin
1114connection and access your account on the server.
1115
1116The \q{Local username} control allows you to specify what user name
1117PuTTY should claim you have, in case it doesn't match your Windows
1118user name (or in case you didn't bother to set up a Windows user
1119name).
1120
55ba634a 1121\H{config-ssh} The SSH panel
1122
1630bb61 1123The SSH panel allows you to configure options that only apply to
1124SSH sessions.
1125
55ba634a 1126\S{config-command} Executing a specific command on the server
1127
add788fc 1128In SSH, you don't have to run a general shell session on the server.
1129Instead, you can choose to run a single specific command (such as a
1130mail user agent, for example). If you want to do this, enter the
1131command in the \q{Remote command} box.
1132
1133\S{config-ssh-pty} \q{Don't allocate a pseudo-terminal}
1134
1135When connecting to a Unix system, most interactive shell sessions
1136are run in a \e{pseudo-terminal}, which allows the Unix system to
1137pretend it's talking to a real physical terminal device but allows
1138the SSH server to catch all the data coming from that fake device
1139and send it back to the client.
1140
1141Occasionally you might find you have a need to run a session \e{not}
1142in a pseudo-terminal. In PuTTY, this is generally only useful for
1143very specialist purposes; although in Plink (see \k{plink}) it is
1144the usual way of working.
1145
1146\S{config-ssh-comp} \q{Enable compression}
1147
1148This enables data compression in the SSH connection: data sent by
1149the server is compressed before sending, and decompressed at the
1150client end. Likewise, data sent by PuTTY to the server is compressed
1151first and the server decompresses it at the other end. This can help
1152make the most of a low-bandwidth connection.
1153
1154\S{config-ssh-prot} \q{Preferred SSH protocol version}
1155
1156This allows you to select whether you would like to use SSH protocol
1157version 1 or version 2. \#{FIXME: say something about this elsewhere?}
1158
1159PuTTY will attempt to use protocol 1 if the server you connect to
1160does not offer protocol 2, and vice versa.
1161
1162\S{config-ssh-macbug} \q{Imitate SSH 2 MAC bug}
1163
1164This option \e{should} now be unnecessary. It existed in order to
1165work around a bug in early versions (2.3.0 and below) of the SSH
1166server software from \cw{ssh.com}. The symptom of this problem would
1167be that PuTTY would die unexpectedly at the beginning of the
1168session, saying \q{Incorrect MAC received on packet}.
1169
1170Current versions of PuTTY attempt to detect these faulty servers and
1171enable the bug compatibility automatically, so you should never need
1172to use this option any more.
1173
1174\S{config-ssh-encryption} Encryption algorithm selection
1175
1176PuTTY supports a variety of different encryption algorithms, and
1177allows you to choose which one you prefer to use. You can do this by
1178dragging the algorithms up and down in the list box to specify a
1179preference order. When you make an SSH connection, PuTTY will search
1180down the list from the top until it finds an algorithm supported by
1181the server, and then use that.
1182
1183If the algorithm PuTTY finds is below the \q{warn below here} line,
1184you will see a warning box when you make the connection:
1185
1186\c The first cipher supported by the server
1187\c is single-DES, which is below the configured
1188\c warning threshold.
1189\c Do you want to continue with this connection?
1190
1191This warns you that the first available encryption is not a very
1192secure one. Typically you would put the \q{warn below here} line
1193between the encryptions you consider secure and the ones you
1194consider substandard.
1195
1196By default, PuTTY supplies a preference order intended to reflect a
1197reasonable preference in terms of security and speed.
1198
1199\H{config-ssh-auth} The Auth panel
1200
1201The Auth panel allows you to configure authentication options for
1202SSH sessions.
1203
1204\S{config-ssh-tis} \q{Attempt TIS or CryptoCard authentication}
1205
1206TIS and CryptoCard authentication are simple challenge/response
1207forms of authentication available in SSH protocol version 1 only.
1208You might use them if you were using S/Key one-time passwords, for
1209example, or if you had a physical security token that generated
1210responses to authentication challenges.
1211
1212With this switch enabled, PuTTY will attempt these forms of
1213authentication if the server is willing to try them. You will be
1214presented with a challenge string (which will be different every
1215time) and must supply the correct response in order to log in. If
1216your server supports this, you should talk to your system
1217administrator about precisely what form these challenges and
1218responses take.
1219
1220\S{config-ssh-agentfwd} \q{Allow agent forwarding}
1221
1222This option allows the SSH server to open forwarded connections back
1223to your local copy of Pageant. If you are not running Pageant, this
1224option will do nothing.
1225
1226See \k{pageant} for general information on Pageant, and
1227\k{pageant-forward} for information on agent forwarding. Note that
1228there is a security risk involved with enabling this option; see
1229\k{pageant-security} for details.
1230
1231\S{config-ssh-privkey} \q{Private key file for authentication}
1232
1233This box is where you enter the name of your private key file if you
1234are using public key authentication. See \k{pubkey} for information
1235about public key authentication in SSH.
1236
1237\H{config-ssh-tunnels} The Tunnels panel
1238
1239The Tunnels panel allows you to configure tunnelling of other
1240connection types through an SSH connection.
1241
1242\S{config-ssh-x11} X11 forwarding
1243
1244If your server lets you run X Window System applications, X11
1245forwarding allows you to securely give those applications access to
1246a local X display on your PC.
1247
1248This feature will only be useful if you have an X server on your PC,
1249such as Exceed or XWin32.
1250
1251To enable X11 forwarding, check the \q{Enable X11 forwarding} box.
1252If your X display is not the primary display on your local machine
1253(which it almost certainly will be unless you have deliberately
1254arranged otherwise), you need to enter its location in the \q{X
1255display location} box.
1256
1257\# FIXME: perhaps link to some more general X forwarding info?
1258
1259\S{config-ssh-portfwd} Port forwarding
1260
1261Port forwarding allows you to tunnel other types of network
1262connection down an SSH connection.
1263
1264To set up a local port forwarding, make sure the \q{Local} radio
1265button is set. Then enter a local port number (on your PC) in the
1266\q{Source port} box, and a hostname and port number (separated by a
1267colon) in the \q{Destination} box, and finally press the \q{Add}
1268button. For example, you might select a source port of 10079, and a
1269destination of \c{server2.example.com:79}.
1270
1271If you do this, and then start the session, you should find that
1272connecting to your local PC on port 10079 gives you a connection to
1273port 79 (the finger server) on \c{server2.example.com}. The
1274connection is actually going to PuTTY itself, which encrypts the
1275connection data and sends it down the secure channel to the SSH
1276server. The connection then proceeds in clear from there to the
1277eventual destination. So you might use this (for example) to forward
1278a connection between two non-hostile network zones that are only
1279connected by a hostile zone such as the open Internet.
1280
1281You can forward ports on the SSH server machine in the other
1282direction, too (so the connection will start at the server end and
1283be sent down the secure connection to PuTTY, which will make the
1284real connection to the destination). To work this way round, just
1285click the \q{Remote} radio button instead of \q{Local}.
55ba634a 1286
add788fc 1287\# FIXME: perhaps move this to a general port-forwarding section and
1288\# just link to it here?
37c6fce1 1289
1290\H{config-file} Storing configuration in a file
1291
1292PuTTY does not currently support storing its configuration in a file
1293instead of the Registry. However, you can work around this with a
1294couple of batch files.
1295
1296You will need a file called (say) \c{PUTTY.BAT} which imports the
1297contents of a file into the Registry, then runs PuTTY, exports the
1298contents of the Registry back into the file, and deletes the
1299Registry entries. This can all be done using the Regedit command
1300line options, so it's all automatic. Here is what you need in
1301\c{PUTTY.BAT}:
1302
1303\c @ECHO OFF
1304\c regedit /s putty.reg
1305\c regedit /s puttyrnd.reg
1306\c start /w putty.exe
1307\c regedit /e puttynew.reg HKEY_CURRENT_USER\Software\SimonTatham\PuTTY
1308\c copy puttynew.reg putty.reg
1309\c del puttynew.reg
1310\c regedit /s puttydel.reg
1311
1312This batch file needs two auxiliary files: \c{PUTTYRND.REG} which
1313sets up an initial safe location for the \c{PUTTY.RND} random seed
1314file, and \c{PUTTYDEL.REG} which destroys everything in the Registry
1315once it's been successfully saved back to the file.
1316
1317Here is \c{PUTTYDEL.REG}:
1318
1319\c REGEDIT4
1320\c
1321\c [-HKEY_CURRENT_USER\Software\SimonTatham\PuTTY]
1322
1323Here is an example \c{PUTTYRND.REG} file:
1324
1325\c REGEDIT4
1326\c
1327\c [HKEY_CURRENT_USER\Software\SimonTatham\PuTTY]
1328\c "RandSeedFile"="a:\putty.rnd"
1329
1330You should replace \c{a:\\putty.rnd} with the location where you
1331want to store your random number data. If the aim is to carry around
1332PuTTY and its settings on one floppy, you probably want to store it
1333on the floppy.