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' can't be established.
RSA key fingerprint is 1a:b2:cd:3e:45:67:fg:8h:90:12:34:i5:67:89:0j:12.
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: Thu Feb 02 15:43:15 2005 from console
Sun Microsystems Inc. SunOS 5.10 Generic January 2005
Sun Microsystems Inc. SunOS 5.10 Generic January 2005
You have new mail.
$
$ exit
logout
Connection to 192.168.1.150 closed.
$