权限被拒绝(公钥)但密钥似乎存在

权限被拒绝(公钥)但密钥似乎存在

我希望我没有忽略答案,但到目前为止,我似乎遇到了麻烦。我在 Mac OS X 上使用 VirtualBox,使用 Ubuntu 12.04 客户系统。虽然它在密码验证方面运行良好,但它不适用于密钥。我似乎找不到我的错误。

我很感激任何帮助。提前致谢!

我收到以下信息:

myhost:~ myusername$ ssh -vp 3022 [email protected]
OpenSSH_6.2p2, OSSLShim 0.9.8r 8 Dec 2011
debug1: Reading configuration data /etc/ssh_config
debug1: /etc/ssh_config line 20: Applying options for *
debug1: /etc/ssh_config line 102: Applying options for *
debug1: Connecting to 192.168.56.1 [192.168.56.1] port 3022.
debug1: Connection established.
debug1: identity file /Users/myusername/.ssh/id_rsa type 1
debug1: identity file /Users/myusername/.ssh/id_rsa-cert type -1
debug1: identity file /Users/myusername/.ssh/id_dsa type -1
debug1: identity file /Users/myusername/.ssh/id_dsa-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.2
debug1: Remote protocol version 2.0, remote software version OpenSSH_6.2p2 Ubuntu-6ubuntu0.4
debug1: match: OpenSSH_6.2p2 Ubuntu-6ubuntu0.4 pat OpenSSH*
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr [email protected] none
debug1: kex: client->server aes128-ctr [email protected] none
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<1024<8192) sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
debug1: Server host key: RSA ed:7e:bb:97:27:dd:82:82:b7:52:f0:e6:de:0d:f3:0e
debug1: Host '[192.168.56.1]:3022' is known and matches the RSA host key.
debug1: Found key in /Users/myusername/.ssh/known_hosts:3
debug1: ssh_rsa_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
debug1: Next authentication method: publickey
debug1: Offering RSA public key: /Users/myusername/.ssh/id_rsa
debug1: Authentications that can continue: publickey
debug1: Offering RSA public key: vmssh
debug1: Authentications that can continue: publickey
debug1: Trying private key: /Users/myusername/.ssh/id_dsa
debug1: No more authentication methods to try.
Permission denied (publickey).

到目前为止我已经完成了以下工作:

0 post os install
$ adduser sshuser

1 backup config (remote host)
$ sudo cp /etc/ssh/sshd_config /etc/ssh/sshd_config.backup
$ sudo chmod a-w /etc/ssh/sshd_config.backup

2. config (remote host)
$ sudo nano /etc/ssh/sshd_config

  Port 22
  PermitRootLogin no
  AllowTcpForwarding no
  X11Forwarding no
  AllowUsers sshuser
  LogLevel Verbose (/var/log/auth.log)

$ mkdir ~/.ssh

3. Generate and send keys (localhost)
if no .ssh dir:
     $ mkdir ~/.ssh
     $ chmod 700 ~/.ssh

$ ssh-keygen -t rsa -b 4096
$ ssh-add id_rsa

$ scp -P 3022 ~/.ssh/id_rsa.pub sshuser@localhost:/home/sshuser/.ssh/uploaded_key.pub

(remote host)
$ touch authorized_files
$ cat uploaded_key.pub >> authorized_files
$ chmod 600 authorized_files
$ sudo nano /etc/ssh/sshd_config
$ PasswordAuthentication no

$ sudo service ssh restart

(localhost) 
$ ssh -p 3022 user@host
 (where host = vboxeth ip 192.x.x.x)

答案1

您是否尝试过使用-i带有私钥路径的参数?例如:

ssh -i ~/.ssh/id_rsa [email protected]

另外,检查私钥权限是否仅限于您的用户(chmod 700例如)。

相关内容