- 论坛徽章:
- 0
|
问题简要描述,
为什么从sol5.9 ssh登陆 sol5.10 的时候总是需要输入user1的密码? 能否不要密码提示呢
下面生成key的时候,passphrase是empty[空的]
环境如下
2台server
os 版本
sol 5.9 sol 5.10
ssh版本
Sun_SSH_1.0.1 Sun_SSH_1.1
2个server都是同样的用户user1
在sol5.9上生成key
- $ ssh-keygen -t rsa
- Enter file in which to save the key(/opt/user1/.ssh/id_rsa):
- Generating public/private rsa key pair.
- Enter passphrase(empty for no passphrase):
- Enter same passphrase again:
- Your identification has been saved in /opt/user1/.ssh/id_rsa.
- Your public key has been saved in /opt/user1/.ssh/id_rsa.pub.
- The key fingerprint is:
- md5 1024 eb:6a:8a:0c:c7:8e:97:82:63:ce:68:4f:23:3d:41:08 gdntuser@zsups3j9
复制代码
然后把id_rsa.pub放到sol5.10那个server的 ~user1/.ssh/目录下
并且
- cat id_rsa.pub >> ~user1/.ssh/authorized_keys
- chmod 644 ~user1/.ssh/authorized_keys
复制代码
在sol5.9用 user1登陆sol5.10
- $ ssh -v xxx.xxx.xxx.xxx
- SSH Version Sun_SSH_1.0.1, protocol versions 1.5/2.0.
- debug1: Reading configuration data /opt/user1/.ssh/config
- debug1: Applying options for *
- debug1: Reading configuration data /etc/ssh/ssh_config
- debug1: Rhosts Authentication disabled, originating port will not be trusted.
- debug1: ssh_connect: getuid 12476 geteuid 12476 anon 1
- debug1: Connecting to xxx.xxx.xxx.xxx [xxx.xxx.xxx.xxx] port 22.
- debug1: Connection established.
- debug1: Bad RSA1 key file /opt/user1/.ssh/id_rsa.
- debug1: identity file /opt/user1/.ssh/id_rsa type 3
- debug1: Remote protocol version 2.0, remote software version Sun_SSH_1.1
- debug1: no match: Sun_SSH_1.1
- Enabling compatibility mode for protocol 2.0
- debug1: Local version string SSH-2.0-Sun_SSH_1.0.1
- debug1: sent kexinit: diffie-hellman-group1-sha1
- debug1: sent kexinit: ssh-rsa,ssh-dss
- debug1: sent kexinit: aes128-cbc,blowfish-cbc,3des-cbc,rijndael128-cbc
- debug1: sent kexinit: aes128-cbc,blowfish-cbc,3des-cbc,rijndael128-cbc
- debug1: sent kexinit: hmac-sha1,hmac-md5
- debug1: sent kexinit: hmac-sha1,hmac-md5
- debug1: sent kexinit: none
- debug1: sent kexinit: none
- debug1: sent kexinit:
- debug1: sent kexinit:
- debug1: send KEXINIT
- debug1: done
- debug1: wait KEXINIT
- debug1: got kexinit: diffie-hellman-group-exchange-sha1,diffie-hellman-group1-sh
- a1
- debug1: got kexinit: ssh-rsa,ssh-dss
- debug1: got kexinit: aes128-ctr,aes128-cbc,arcfour,3des-cbc,blowfish-cbc
- debug1: got kexinit: aes128-ctr,aes128-cbc,arcfour,3des-cbc,blowfish-cbc
- debug1: got kexinit: hmac-md5,hmac-sha1,hmac-sha1-96,hmac-md5-96
- debug1: got kexinit: hmac-md5,hmac-sha1,hmac-sha1-96,hmac-md5-96
- debug1: got kexinit: none,zlib
- debug1: got kexinit: none,zlib
- debug1: got kexinit: C,POSIX
- debug1: got kexinit: C,POSIX
- debug1: first kex follow: 0
- debug1: reserved: 0
- debug1: done
- debug1: kex: server->client unable to decide common locale
- debug1: kex: server->client aes128-cbc hmac-sha1 none
- debug1: kex: client->server unable to decide common locale
- debug1: kex: client->server aes128-cbc hmac-sha1 none
- debug1: Sending SSH2_MSG_KEXDH_INIT.
- debug1: bits set: 512/1024
- debug1: Wait SSH2_MSG_KEXDH_REPLY.
- debug1: Got SSH2_MSG_KEXDH_REPLY.
- debug1: Host 'xxx.xxx.xxx.xxx' is known and matches the RSA host key.
- debug1: Found key in /opt/user1/.ssh/known_hosts:1
- debug1: bits set: 507/1024
- debug1: ssh_rsa_verify: signature correct
- debug1: Wait SSH2_MSG_NEWKEYS.
- debug1: GOT SSH2_MSG_NEWKEYS.
- debug1: send SSH2_MSG_NEWKEYS.
- debug1: done: send SSH2_MSG_NEWKEYS.
- debug1: done: KEX2.
- debug1: send SSH2_MSG_SERVICE_REQUEST
- debug1: service_accept: ssh-userauth
- debug1: got SSH2_MSG_SERVICE_ACCEPT
- debug1: authentications that can continue: gssapi-keyex,gssapi-with-mic,publicke
- y,password,keyboard-interactive
- debug1: next auth method to try is publickey
- debug1: try pubkey: /opt/user1/.ssh/id_rsa
- debug1: read SSH2 private key done: name rsa w/o comment success 1
- debug1: authentications that can continue: gssapi-keyex,gssapi-with-mic,publicke
- y,password,keyboard-interactive
- debug1: next auth method to try is publickey
- debug1: next auth method to try is password
- user1@xxx.xxx.xxx.xxx's password:
复制代码
为什么这里总是需要密码? 能否不要密码提示呢,谢谢
下面是/etc/ssh/sshd_config文件
- Protocol 2
- Port 22
- ListenAddress ::
- AllowTcpForwarding no
- GatewayPorts no
- X11Forwarding yes
- X11DisplayOffset 10
- X11UseLocalhost yes
- PrintMotd no
- KeepAlive yes
- SyslogFacility auth
- LogLevel info
- HostKey /etc/ssh/ssh_host_rsa_key
- HostKey /etc/ssh/ssh_host_dsa_key
- ServerKeyBits 768
- KeyRegenerationInterval 3600
- StrictModes yes
- LoginGraceTime 600
- MaxAuthTries 6
- MaxAuthTriesLog 3
- PermitEmptyPasswords no
- PasswordAuthentication yes
- PAMAuthenticationViaKBDInt yes
- PermitRootLogin no
- Subsystem sftp /usr/lib/ssh/sftp-server
- IgnoreRhosts yes
- RhostsAuthentication no
- RhostsRSAAuthentication no
- RSAAuthentication yes
复制代码
相应的目录和文件权限
- drwx------ 2 user1 other 512 Aug 3 15:16 .ssh
- -rw-r--r-- 1 user1 other 1397 Aug 3 03:41 authorized_keys
复制代码 |
|