如果不建议在商业网站上使用无密码登录,那么在没有交互的情况下进行登录的最佳选择是什么?

tou*_*ugh 0 ssh cygwin sshd ubuntu

继续甚至无法无密码登录。

$ ssh -v user@example.com
OpenSSH_6.0p1, OpenSSL 1.0.1c 10 May 2012
debug1: Reading configuration data /etc/ssh_config
debug1: Connecting to example.com [XX.XX.XX.X1] port 22.
debug1: Connection established.
debug1: identity file /home/admin/.ssh/id_rsa type 1
debug1: identity file /home/admin/.ssh/id_rsa-cert type -1
debug1: identity file /home/admin/.ssh/id_dsa type -1
debug1: identity file /home/admin/.ssh/id_dsa-cert type -1
debug1: identity file /home/admin/.ssh/id_ecdsa type -1
debug1: identity file /home/admin/.ssh/id_ecdsa-cert type -1
debug1: Remote protocol version 2.0, remote software version OpenSSH_5.8p1 Debian-7ubuntu1
debug1: match: OpenSSH_5.8p1 Debian-7ubuntu1 pat OpenSSH_5*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.0
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr hmac-md5 none
debug1: kex: client->server aes128-ctr hmac-md5 none
debug1: sending SSH2_MSG_KEX_ECDH_INIT
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug1: Server host key: ECDSA 3b:81:30:2e:7a:c8:ca:51:7a:46:bb:50:cb:d3:a2:9b
debug1: Host 'example.com' is known and matches the ECDSA host key.
debug1: Found key in /home/admin/.ssh/known_hosts:2
debug1: ssh_ecdsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: Roaming not allowed by server
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey,password
debug1: Next authentication method: publickey
debug1: Offering RSA public key: /home/admin/.ssh/id_rsa
debug1: Authentications that can continue: publickey,password
debug1: Trying private key: /home/admin/.ssh/id_dsa
debug1: Trying private key: /home/admin/.ssh/id_ecdsa
debug1: Next authentication method: password
user@example.com's password:
Run Code Online (Sandbox Code Playgroud)

网站上的 sshd_config 文件我想连接但无法连接。

# Package generated configuration file
# See the sshd_config(5) manpage for details

# What ports, IPs and protocols we listen for
Port 22
# Use these options to restrict which interfaces/protocols sshd will bind to
#ListenAddress ::
#ListenAddress 0.0.0.0
Protocol 2
# HostKeys for protocol version 2
HostKey /etc/ssh/ssh_host_rsa_key
HostKey /etc/ssh/ssh_host_dsa_key
HostKey /etc/ssh/ssh_host_ecdsa_key
#Privilege Separation is turned on for security
UsePrivilegeSeparation yes

# Lifetime and size of ephemeral version 1 server key
KeyRegenerationInterval 3600
ServerKeyBits 768

# Logging
SyslogFacility AUTH
LogLevel INFO

# Authentication:
LoginGraceTime 120
PermitRootLogin no
StrictModes yes

RSAAuthentication yes
PubkeyAuthentication yes
AuthorizedKeysFile      %h/.ssh/authorized_keys

# Don't read the user's ~/.rhosts and ~/.shosts files
IgnoreRhosts yes
# For this to work you will also need host keys in /etc/ssh_known_hosts
RhostsRSAAuthentication no
# similar for protocol version 2
HostbasedAuthentication no
# Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication

#IgnoreUserKnownHosts yes

# To enable empty passwords, change to yes (NOT RECOMMENDED)
PermitEmptyPasswords no

# Change to yes to enable challenge-response passwords (beware issues with
# some PAM modules and threads)
ChallengeResponseAuthentication no

# Change to no to disable tunnelled clear text passwords
#PasswordAuthentication yes

# Kerberos options
#KerberosAuthentication no
#KerberosGetAFSToken no
#KerberosOrLocalPasswd yes
#KerberosTicketCleanup yes

# GSSAPI options
#GSSAPIAuthentication no
#GSSAPICleanupCredentials yes

X11Forwarding yes
X11DisplayOffset 10
PrintMotd no
PrintLastLog yes
TCPKeepAlive yes
#UseLogin no

#MaxStartups 10:30:60
#Banner /etc/issue.net

# Allow client to pass locale environment variables
AcceptEnv LANG LC_*

Subsystem sftp /usr/lib/openssh/sftp-server

# Set this to 'yes' to enable PAM authentication, account processing,
# Set this to 'yes' to enable PAM authentication, account processing,
# and session processing. If this is enabled, PAM authentication will
# be allowed through the ChallengeResponseAuthentication and
# PasswordAuthentication.  Depending on your PAM configuration,
# PAM authentication via ChallengeResponseAuthentication may bypass
# the setting of "PermitRootLogin without-password".
# If you just want the PAM account and session checks to run without
# PAM authentication, then enable this but set PasswordAuthentication
# and ChallengeResponseAuthentication to 'no'.
UsePAM yes

AllowUsers user
Run Code Online (Sandbox Code Playgroud)

文件权限:


.ssh directory permission on the server example.com

drwx------ 2 user user      4096 2012-07-26 13:35 .ssh


permissions on the files of the .ssh file 

-rw------- 1 user user  398 2012-07-26 13:35 authorized_keys
-rw-r--r-- 1 user user 1428 2012-07-25 18:55 known_hosts
--------------------------------------------------------------------


pemissions in the files ~/.ssh and ~/.ssh/ files workstation 

drwx------+ 1 Admin  None     0 Jul  9 17:05 .ssh

-rw-------  1 admin None 1679 Jul  9 17:05 id_rsa
-rw-r--r--  1 admin None  398 Jul  9 17:05 id_rsa.pub
-rw-r--r--  1 admin None  383 Jul 26 13:35 known_hosts
Run Code Online (Sandbox Code Playgroud)

all*_*tic 5

理论的

我觉得我需要澄清一些您可能了解或不了解 SSH 工作原理的事情:

在SSH上下文中,Passwordless可以参考两件事:

  • 无需通过网络提供密码即可通过 SSH 进行身份验证;即,使用公钥认证
  • 通过 SSH 进行身份验证,无需通过网络提供密码,无需使用密码来保护私钥的解密

所以有三种可能的模式:

  1. 通过直接提供密码进行身份验证。不使用公钥/私钥。
  2. 通过公钥/私钥对进行身份验证,但在您的客户端计算机上提供密码以解密私钥并使其可用。这是使用ssh-agent. 私钥解密密码被缓存,以便在您的登录会话期间只提供一次;之后,密码将保存在ssh-agent.
  3. 通过公钥/私钥对进行身份验证,但密钥对不受密码保护,因此用户根本不提供密码。

第二种模式是最安全的。您可以通过创建受密码保护的密钥对来测试此模式,确保ssh-agent设置正确(就像在现代 Linux 发行版上一样),并且它应该“正常工作”:当您第一次登录到使用您的私钥的 SSH 服务器时,您会收到输入密码的提示。之后的每次,直到您注销,它“正常工作”而没有提示。

实际的

debug1:可以继续的认证:publickey,password
debug1:下一个认证方法:publickey
debug1:提供RSA公钥:/home/admin/.ssh/id_rsa
debug1:可以继续的认证:publickey,password
debug1:尝试私钥:/ home/admin/.ssh/id_dsa
debug1:尝试私钥:/home/admin/.ssh/id_ecdsa
debug1:下一个身份验证方法:密码

请尝试以下操作:

  • 在客户端和服务器上将known_hosts文件重命名为其他名称(如known_hosts.bak

  • 在服务器上,以 登录user,尝试

    chmod go-w ~/
    chmod 700 ~/.ssh
    chmod 600 ~/.ssh/authorized_keys

  • 在客户端,以 登录admin,尝试

    chmod 700 ~/
    chmod 700 ~/.ssh
    chmod 400 ~/.ssh/id_rsa chmod 400 ~/.ssh/id_rsa.pub
    #如果admin用户没有组,则创建并设为admin用户的主组
    chown -R admin:admin ~/.ssh

  • 制作织补确保客户端的内容~/.ssh/id_rsa.pub(注意,该.pub关键)是在服务器~/.ssh/authorized_keys上的一个线(没有换行符-但不要混淆文本编辑器,包装和换行;使用cat ~/.ssh/authorized_keys,以确保您正在浏览的文件,而不包装),并且客户端的~/.ssh/id_rsa 内容不在服务器上的任何地方,或者实际上,除了客户端上的那个地方之外的任何地方。注意:如果您不小心将~/.ssh/id_rsa(私钥)放在服务器上,我强烈建议您删除您的密钥对并创建一个新的,从头开始。您必须将新文件id_rsa.pub放入authorized_keys文件中。

  • ???

  • 利润!