今天要登录公司的一台Linux server, 当然还是用Poderosa.
Poderosa提供了三种SSH的登录方式:
我选择了第一种常用的方式, 填入用户和密码,然后登陆, 可是一直提示 "Authentication failed",
很是郁闷, 密码肯定是对的,可是就是不能登录, 还是头一次遇到这个问题.
后来改成了Keyboard Interaction 的方式, 先连上, 然后手动输入密码就可以正确的登录了.
于是搜索了一下SSH协议的登录方式,具体可以参考这里:
http://www.ssh.com/support/documentation/online/ssh/adminguide/32/Authentication.html
我之所以不能用password的方式登录是因为管理员出于安全性考虑,
将SSH的配置文件/etc/ssh/sshd_config中属性
PasswordAuthentication 设置成了No, 这样就无法通过Password的方式登录了.
这个属性的默认值通常是Yes.
对于Keyboard Interactive的登录方式配置参数如下:
1. OpenSSH - /etc/ssh/sshd_config
PasswordAuthentication no
ChallengeResponseAuthentication yes
2. SSH2 (Tectia) - /etc/ssh2/sshd2_config
AllowedAuthentications publickey,keyboard-interactive
AuthKbdInt.Optional pam,password
AuthKbdInt.Required password
修改完配置文件后需要重启ssh, /etc/init.d/sshd restart;
至于另外一种Public key的登录方式就是使用Key登录, 可以使用这种方式达到自动登录的目的, 具体可以参考:
http://hi.csdn.net/link.php?url=http://blog.csdn.net%2Fminico