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