RSA केवल प्रमाणीकरण खो देता है


2

मैं RSA प्रमाणीकरण केवल SSH / SFTP सर्वर सेटअप करने का प्रयास कर रहा हूं। SSH का उपयोग मुख्य रूप से RDC के लिए किया जाएगा। यदि मैं पासवर्ड प्रमाणीकरण का उपयोग करता हूं तो सब कुछ ठीक काम करता है।

मैं पुट्टी की जेनरेटर का उपयोग कर रहा हूं ताकि वे चाबी बना सकें और मैंने कुंजी को अधिकृत_की फ़ाइल में चिपकाया है और ओपनएसएसएच सर्वर को फिर से शुरू किया है। मैं SFZ कनेक्शन का परीक्षण करने के लिए FileZilla का उपयोग कर रहा हूं क्योंकि यह सबसे महत्वपूर्ण है। अपने परीक्षणों के लिए मैंने पासवर्ड सुधार के बिना चाबियाँ बनाई हैं।

यह मानक SSH कनेक्शन के साथ भी काम नहीं करेगा। यह कहता है "सर्वर ने हमारी कुंजी को अस्वीकार कर दिया"। मैंने Google पर एक गाइड के साथ दो बार दोहरी जांच को फिर से बनाया है, और मुझे पूरा यकीन है कि मैंने इसे सही तरीके से किया है।

मैं सेटिंग्स / SFTP के तहत FileZilla में मुख्य फ़ाइल लोड करता हूं और कनेक्ट करने का प्रयास करता हूं और मुझे निम्न त्रुटि मिलती है: डिस्कनेक्ट किया गया: कोई समर्थित प्रमाणीकरण विधि उपलब्ध नहीं है।

मैं पूरी रात विभिन्न सेटिंग्स के साथ खेल रहा हूं और मैं इसका पता नहीं लगा सकता। यहाँ मेरी sshd_config फ़ाइल है:

# $OpenBSD: sshd_config,v 1.80 2008/07/02 02:24:18 djm Exp $

# This is the sshd server system-wide configuration file.  See
# sshd_config(5) for more information.

# This sshd was compiled with PATH=/usr/bin:/bin:/usr/sbin:/sbin

# The strategy used for options in the default sshd_config shipped with
# OpenSSH is to specify options with their default value where
# possible, but leave them commented.  Uncommented options change a
# default value.

#Port 22
#AddressFamily any
#ListenAddress 0.0.0.0
#ListenAddress ::

# Disable legacy (protocol version 1) support in the server for new
# installations. In future the default will change to require explicit
# activation of protocol 1
Protocol 2

# HostKey for protocol version 1
#HostKey /etc/ssh/ssh_host_key
# HostKeys for protocol version 2
#HostKey /etc/ssh/ssh_host_rsa_key
#HostKey /etc/ssh/ssh_host_dsa_key

# Lifetime and size of ephemeral version 1 server key
#KeyRegenerationInterval 1h
#ServerKeyBits 1024

# Logging
# obsoletes QuietMode and FascistLogging
#SyslogFacility AUTH
#LogLevel INFO

# Authentication:

#LoginGraceTime 2m
PermitRootLogin no
#StrictModes yes
#MaxAuthTries 6
#MaxSessions 10

RSAAuthentication yes
PubkeyAuthentication yes
AuthorizedKeysFile .ssh/authorized_keys

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

# To disable tunneled clear text passwords, change to no here!
PasswordAuthentication no
PermitEmptyPasswords no

# Change to no to disable s/key passwords
#ChallengeResponseAuthentication yes

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

# GSSAPI options
#GSSAPIAuthentication no
#GSSAPICleanupCredentials yes

# 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 no

मैं इस खंड को फिर से देख सकता हूं: # इस काम के लिए आपको होस्ट कीज की भी आवश्यकता होगी / etc / ssh / ssh_ogn_hosts RhostsRSAAuthentication no। यह बग हो सकता है ... मैं यह भी सुनिश्चित करूंगा कि RSA कुंजी रूट के लिए नहीं है लॉग इन करें।
रोबॉटहूमंस

टिप्पणी के लिए धन्यवाद। मैंने वह जाँच की, और यह सुनिश्चित किया कि यह सब टिप्पणी की गई थी, लेकिन इससे कोई फर्क नहीं पड़ा। RSA कुंजी रूट लॉगिन के लिए नहीं है।
सिरिस

जवाबों:


1

पोटीन की जेनरेटर कुंजी के अपने प्रारूप का उपयोग करता है। आपको ओपनएसएसएच प्रारूप की कुंजी निर्यात करनी चाहिए लेकिन यहां तक ​​कि मेरे लिए काम नहीं किया जब तक कि मैंने मैन्युअल रूप से हैश को एक पंक्ति में सभी को संपादित नहीं किया।

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.