]> asedeno.scripts.mit.edu Git - PuTTY.git/blob - doc/intro.but
f4efa08b43c8d44fcd5ab85505dbfe8bb71168d6
[PuTTY.git] / doc / intro.but
1 \C{intro} Introduction to PuTTY
2
3 PuTTY is a free SSH, Telnet and Rlogin client for 32-bit Windows
4 systems.
5
6 \H{you-what} What are SSH, Telnet and Rlogin?
7
8 If you already know what SSH, Telnet and Rlogin are, you can safely
9 skip on to the next section.
10
11 SSH, Telnet and Rlogin are three ways of doing the same thing:
12 logging in to a multi-user computer from another computer, over a
13 network.
14
15 Multi-user operating systems, such as Unix and VMS, usually present
16 a \i{command-line interface} to the user, much like the \q{\i{Command
17 Prompt}} or \q{\i{MS-DOS Prompt}} in Windows. The system prints a
18 prompt, and you type commands which the system will obey.
19
20 Using this type of interface, there is no need for you to be sitting
21 at the same machine you are typing commands to. The commands, and
22 responses, can be sent over a network, so you can sit at one
23 computer and give commands to another one, or even to more than one.
24
25 SSH, Telnet and Rlogin are \i\e{network protocols} that allow you to
26 do this. On the computer you sit at, you run a \i\e{client}, which
27 makes a network connection to the other computer (the \i\e{server}).
28 The network connection carries your keystrokes and commands from the
29 client to the server, and carries the server's responses back to
30 you.
31
32 These protocols can also be used for other types of keyboard-based
33 interactive session. In particular, there are a lot of bulletin
34 boards, \i{talker systems} and \i{MUDs} (Multi-User Dungeons) which support
35 access using Telnet. There are even a few that support SSH.
36
37 You might want to use SSH, Telnet or Rlogin if:
38
39 \b you have an account on a Unix or VMS system which you want to be
40 able to access from somewhere else
41
42 \b your Internet Service Provider provides you with a login account
43 on a \i{web server}. (This might also be known as a \i\e{shell account}.
44 A \e{shell} is the program that runs on the server and interprets
45 your commands for you.)
46
47 \b you want to use a \i{bulletin board system}, talker or MUD which can
48 be accessed using Telnet.
49
50 You probably do \e{not} want to use SSH, Telnet or Rlogin if:
51
52 \b you only use Windows. Windows computers have their own
53 ways of networking between themselves, and unless you are doing
54 something fairly unusual, you will not need to use any of these
55 remote login protocols.
56
57 \H{which-one} How do SSH, Telnet and Rlogin differ?
58
59 This list summarises some of the \i{differences between SSH, Telnet
60 and Rlogin}.
61
62 \b SSH (which stands for \q{\i{secure shell}}) is a recently designed,
63 high-security protocol. It uses strong cryptography to protect your
64 connection against eavesdropping, hijacking and other attacks. Telnet
65 and Rlogin are both older protocols offering minimal security.
66
67 \b SSH and Rlogin both allow you to \I{passwordless login}log in to the
68 server without having to type a password. (Rlogin's method of doing this is
69 insecure, and can allow an attacker to access your account on the
70 server. SSH's method is much more secure, and typically breaking the
71 security requires the attacker to have gained access to your actual
72 client machine.)
73
74 \b SSH allows you to connect to the server and automatically send a
75 command, so that the server will run that command and then
76 disconnect. So you can use it in automated processing.
77
78 The Internet is a hostile environment and security is everybody's
79 responsibility. If you are connecting across the open Internet, then
80 we recommend you use SSH. If the server you want to connect to
81 doesn't support SSH, it might be worth trying to persuade the
82 administrator to install it.
83
84 If your client and server are both behind the same (good) firewall,
85 it is more likely to be safe to use Telnet or Rlogin, but we still
86 recommend you use SSH.