!SecureShell » History » Version 2

Anonymous, 09/18/2007 01:55 PM

1 1 Anonymous
2 2 Anonymous
h1. Secure Shell
3 1 Anonymous
4 1 Anonymous
5 2 Anonymous
The _Secure Shell_ (SSH) daemon is enabled by default and listens on port 22.
6 1 Anonymous
7 2 Anonymous
8 2 Anonymous
h2. Passwordless Authentication
9 2 Anonymous
10 2 Anonymous
See "SSH [[HowTo]]":http://www.linuxhomenetworking.com/wiki/index.php/Quick_HOWTO_:_Ch17_:_Secure_Remote_Logins_and_File_Copying for more information.
11 2 Anonymous
12 2 Anonymous
13 1 Anonymous
ATTENTION:[[br]]
14 1 Anonymous
Passwordless authentication does not work if the ssh daemon is running with ‘!StrictModes on’ (default) AND directory and file permissions are set too loosely. They must be set as follows:
15 2 Anonymous
<pre>
16 1 Anonymous
~/                        no write permissions to group or others
17 1 Anonymous
~/.ssh                    700
18 1 Anonymous
~/.ssh/authorized_keys    600
19 2 Anonymous
</pre>