sshはrootでログインできてしまうので、入れないようにする。以下の行のコメントアウト(#)を削除し、yes を no にする。
PermitRootLogin no
sshログインを許可するユーザーを「you」と「friend」だけに設定する。
AllowUsers you friend
ログインテスト:
localhost(192.168.1.150)にsshでログイン出来るかどうかをテストしてみる。
$ ssh -l you 192.168.1.150
The authenticity of host '192.168.1.150 (192.168.1.150)' can't be established.
RSA key fingerprint is 1a:23:bc:45:de:6f:7a:89:b0:1c:ab:ab:ab:ab:ab:.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '192.168.1.150' (RSA) to the list of known hosts.
you@192.168.1.150's password:
Last login: Wed May 25 08:46:44 2005 from yourhost
Sun Microsystems Inc. SunOS 5.10 Generic January 2005
Sun Microsystems Inc. SunOS 5.10 Generic January 2005
$
$ exit
logout
Connection to 192.168.1.150 closed.
$