SSH

Secure SHell 超入門 http://www.ipc.hiroshima-u.ac.jp/%7Eu0745038/ssh.html
SSH 公式サイト http://www.ssh.fi/sshprotocols2/
SSH FAQ 日本語版 http://www.vacia.is.tohoku.ac.jp/%7Es-yamane/FAQ/ssh/
UNIX MAGAZINE 1999 年3月号 74-85
Software Design 1999 年5月号 34-41
【System を、4.2 以上にアップしたら、リモートから slogin 出来なくなった】
startx もそうですが、sshd も、pam を使うようになったようです。/usr/src/etc/pam.conf を参考にして、/etc/pam.conf を修正します。真面目にやるなら、margemaster ですね。

/etc/pam.conf
# If the user can authenticate with S/Key, that's sufficient.
login   auth    sufficient      pam_skey.so

# Check skey.access to make sure it is OK to let the user type in
# a cleartext password.  If not, then fail right here.
login   auth    requisite       pam_cleartext_pass_ok.so

# If you want KerberosIV authentication, uncomment the next line:
#login  auth    sufficient      pam_kerberosIV.so               try_first_pass

# Traditional getpwnam() authentication.
login   auth    required        pam_unix.so                     try_first_pass

########### startx
xserver auth    sufficient      pam_permit.so
xserver account sufficient      pam_permit.so

xim     auth    sufficient      pam_permit.so
xim     account sufficient      pam_permit.so
xim     session sufficient      pam_permit.so

# OpenSSH with PAM support requires similar modules.  The session one is
# a bit strange, though...
sshd    auth    sufficient      pam_skey.so
#sshd   auth    sufficient      pam_kerberosIV.so               try_first_pass
sshd    auth    required        pam_unix.so                     try_first_pass
sshd    session required        pam_permit.so


Last modified