मैं में वर्णित एक ही सटीक समस्या है इस सूत्र , लेकिन इस सवाल का जवाब स्वीकार किए जाते हैं वहाँ, मेरे लिए सही नहीं है क्योंकि उपयोगकर्ता के घर निर्देशिका है स्थानीय।
मुझे लगता है कि मैंने क्लाइंट साइड (Windows 7, PuTTY के पेजंट, PUTTYGEN और PLINK) पर सब कुछ ठीक से कॉन्फ़िगर किया है, फिर भी मुझे सार्वजनिक कुंजी तंत्र कार्य (पासवर्ड आधारित ssh लॉगिन कार्य) करने की आवश्यकता नहीं है। मैंने सभी चरणों, संकेतों और संकेतों का पालन किया:
- कैसे 5 त्वरित चरणों में PuTTY और लिनक्स सर्वर के साथ SSH कुंजी प्रमाणीकरण कॉन्फ़िगर करने के लिए
- SSH सार्वजनिक कुंजी प्रमाणीकरण
मुझे अब संदेह है कि मुझे सर्वर साइड (लिनक्स, sshd) पर कुछ याद आ रहा है, इसलिए मैं वर्तमान /etc/ssh/sshd_config
सामग्री पोस्ट कर रहा हूं :
Protocol 2
SyslogFacility AUTHPRIV
RSAAuthentication yes
PubkeyAuthentication yes
AuthorizedKeysFile .ssh/authorized_keys
PasswordAuthentication no
PermitEmptyPasswords yes
ChallengeResponseAuthentication no
UsePAM yes
X11Forwarding yes
Subsystem sftp /usr/libexec/openssh/sftp-server
कोई आइडिया है कि मैं क्या गलत कर रहा हूँ?
अद्यतन: मुझे डिबग मोड में sshd चलाने के लिए एक टिप मिली , और यहाँ आउटपुट है:
/home/winwin> /usr/sbin/sshd -d
debug1: sshd version OpenSSH_4.2p1
debug1: read PEM private key done: type RSA
debug1: private host key: #0 type 1 RSA
debug1: read PEM private key done: type DSA
debug1: private host key: #1 type 2 DSA
debug1: rexec_argv[0]='/usr/sbin/sshd'
debug1: rexec_argv[1]='-d'
debug1: Bind to port 22 on ::.
Server listening on :: port 22.
debug1: Bind to port 22 on 0.0.0.0.
Bind to port 22 on 0.0.0.0 failed: Address already in use.
debug1: Server will not fork when running in debugging mode.
debug1: rexec start in 4 out 4 newsock 4 pipe -1 sock 7
debug1: inetd sockets after dupping: 3, 3
Connection from 192.168.1.8 port 49828
debug1: Client protocol version 2.0; client software version PuTTY_Release_0.60
debug1: no match: PuTTY_Release_0.60
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_4.2
debug1: permanently_set_uid: 74/74
debug1: list_hostkey_types: ssh-rsa,ssh-dss
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: client->server aes256-ctr hmac-sha1 none
debug1: kex: server->client aes256-ctr hmac-sha1 none
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST_OLD received
debug1: SSH2_MSG_KEX_DH_GEX_GROUP sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_INIT
debug1: SSH2_MSG_KEX_DH_GEX_REPLY sent
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: KEX done
debug1: userauth-request for user winwin service ssh-connection method none
debug1: attempt 0 failures 0
debug1: PAM: initializing for "winwin"
debug1: PAM: setting PAM_RHOST to "win7client"
debug1: PAM: setting PAM_TTY to "ssh"
Failed none for winwin from 192.168.1.8 port 49828 ssh2
debug1: userauth-request for user winwin service ssh-connection method publickey
debug1: attempt 1 failures 1
debug1: test whether pkalg/pkblob are acceptable
debug1: temporarily_use_uid: 513/513 (e=0/0)
debug1: trying public key file /home/winwin/.ssh/authorized_keys
Authentication refused: bad ownership or modes for directory /home/winwin
debug1: restore_uid: 0/0
debug1: temporarily_use_uid: 513/513 (e=0/0)
debug1: trying public key file /home/winwin/.ssh/authorized_keys
Authentication refused: bad ownership or modes for directory /home/winwin
debug1: restore_uid: 0/0
Failed publickey for winwin from 192.168.1.8 port 49828 ssh2
Received disconnect from 192.168.1.8: 14: No supported authentication methods available
debug1: do_cleanup
debug1: PAM: cleanup
debug1: do_cleanup
debug1: PAM: cleanup
अब, मैं दो bad ownership or modes for directory /home/winwin
संदेशों को नोटिस करता हूं, लेकिन मैंने निर्देशिका / होम / विनविन और AFAICT के स्वामित्व या मोड की जाँच की: वे ठीक हैं:
/home> ls -lad winwin
drwxrwxr-x 21 winwin winwin 4096 Jul 13 21:24 winwin
तथा:
/home/winwin> ls -lad .ssh
drwxr-xr-x 2 winwin winwin 4096 Jul 14 12:06 .ssh
तथा:
/home/winwin/.ssh> ls -lad *
-rw-r--r-- 1 winwin winwin 210 Jul 14 12:06 authorized_keys
-rw-r--r-- 1 winwin winwin 210 Jul 14 01:58 authorized_keys.pub
-rw-r--r-- 1 winwin winwin 394 Jul 14 01:57 authorized_keys.pub.orig
संभवतः क्या गलत हो सकता है?
अद्यतन II: मैंने chmod 600
नीचे दिए गए उत्तर में सुझाव के अनुसार प्रयास किया:
/home/winwin> ls -lad .ssh
drw------- 2 winwin winwin 4096 Jul 14 13:13 .ssh
तथा:
/home/winwin/.ssh> ls -lad *
-rw------- 1 winwin winwin 210 Jul 14 12:06 authorized_keys
लेकिन यह अभी भी काम नहीं करता है। मुझे अभी भी Authentication refused: bad ownership or modes for directory /home/winwin
त्रुटि क्यों हो रही है ?
~/.ssh
और मैंने वैसा ही किया~/.ssh/authorized_keys
। फिर भी नसीब नहीं। होम डायरेक्टरी से ग्रुप राइट करने योग्य अनुमति लेने के लिए, मैं ऐसा नहीं कर सकता क्योंकि यह इस उपयोगकर्ता / समूह के संपूर्ण उद्देश्य को कम कर देगा। इस उपयोगकर्ता की होम डायरेक्टरी को समूह द्वारा लिखित होना चाहिए (एक ही सटीक नाम और gid!)। मदद करने के प्रयास के लिए +1।