সর্বজনীন কী প্রমাণীকরণ ব্যর্থ হয়েছে


9

আমি উবুন্টু 13.10 ব্যবহার করছি, এবং সার্ভারটি উবুন্টু 12.04 চালায়। আমি ssh-keygen ব্যবহার করে প্রাইভেট এবং পাবলিক কী তৈরি করেছি এবং id_rsa.pub সার্ভারের পাশে authorzied_keysরেখেছি এবং এটি ইন্টারনেটে যে পদ্ধতিটি পেয়েছি তা অনুসারে এটি যুক্ত করেছি । তবে, আমি লগইন করার চেষ্টা করার সময় আমাকে এখনও পাসওয়ার্ড ইনপুট করতে হবে। আমি হোম dir 700 এ সেট করেছি, .ssh dir 700 এ, Authorzied_keys ফাইল 600 এ, এবং আমার চেক sshd_config ফাইল আছে, এবং কিছুই ঘটেনি।

ডিবাগ তথ্য (-vvv বিকল্প সহ) এবং sshd_config নিম্নলিখিত হিসাবে রয়েছে, এবং সার্ভারের auth.log ফাইলে তালিকাভুক্ত কিছুই নেই।

আমি ক্লায়েন্ট এবং সার্ভার উভয় পক্ষেই ওপেনশ-সার্ভার ওপেনশ-ক্লায়েন্ট আপডেট করেছি।

আমার আর কিছু করার আছে? যে কোনও তথ্য দেওয়ার জন্য ধন্যবাদ।

debug3: load_hostkeys: loading entries for host "[xxx.101.15.62]:2222" from file "/home/leetom/.ssh/known_hosts"
debug3: load_hostkeys: found key type ECDSA in file /home/leetom/.ssh/known_hosts:2
debug3: load_hostkeys: loaded 1 keys
debug3: load_hostkeys: loading entries for host "[xxx.101.15.62]:2222" from file "/home/leetom/.ssh/known_hosts"
debug3: load_hostkeys: found key type ECDSA in file /home/leetom/.ssh/known_hosts:2
debug3: load_hostkeys: loaded 1 keys
debug1: Host '[xxx.101.15.62]:2222' is known and matches the ECDSA host key.
debug1: Found key in /home/leetom/.ssh/known_hosts:2
debug1: ssh_ecdsa_verify: signature correct
debug2: kex_derive_keys
debug2: set_newkeys: mode 1
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug2: set_newkeys: mode 0
debug1: SSH2_MSG_NEWKEYS received
debug1: Roaming not allowed by server
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug2: service_accept: ssh-userauth
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug2: key: /home/leetom/.ssh/id_rsa ((nil)),
debug2: key: /home/leetom/.ssh/id_dsa ((nil)),
debug2: key: /home/leetom/.ssh/id_ecdsa ((nil)),
debug1: Authentications that can continue: publickey,password
debug3: start over, passed a different list publickey,password
debug3: preferred gssapi-keyex,gssapi-with-mic,publickey,keyboard-interactive,password
debug3: authmethod_lookup publickey
debug3: remaining preferred: keyboard-interactive,password
debug3: authmethod_is_enabled publickey
debug1: Next authentication method: publickey
debug1: Trying private key: /home/leetom/.ssh/id_rsa
debug1: read PEM private key done: type RSA
debug3: sign_and_send_pubkey: RSA 68:51:b6:ed:cc:c2:54:f4:xx:15:41:d7:f5:4a:0e:da
debug2: we sent a publickey packet, wait for reply
debug1: Authentications that can continue: publickey,password
debug1: Trying private key: /home/leetom/.ssh/id_dsa
debug3: no such identity: /home/leetom/.ssh/id_dsa: No such file or directory
debug1: Trying private key: /home/leetom/.ssh/id_ecdsa
debug3: no such identity: /home/leetom/.ssh/id_ecdsa: No such file or directory
debug2: we did not send a packet, disable method
debug3: authmethod_lookup password
debug3: remaining preferred: ,password
debug3: authmethod_is_enabled password
debug1: Next authentication method: password
leetom@xxx.101.15.62's password: 

এবং 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 yes
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,
# 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

উত্তর:


12

এই বিটটি দেখে মনে হচ্ছে আমরা কোনও ক্রিপ্টোগ্রাফিক লগইন চেষ্টা করার জন্য আপনার ব্যক্তিগত কীটি ব্যবহার করেছি, তখন আমাদের অন্যদের চেষ্টা করতে হয়েছিল কারণ এটি গৃহীত হয়নি:

debug1: Trying private key: /home/leetom/.ssh/id_rsa
debug1: read PEM private key done: type RSA
debug3: sign_and_send_pubkey: RSA 68:51:b6:ed:cc:c2:54:f4:xx:15:41:d7:f5:4a:0e:da
debug2: we sent a publickey packet, wait for reply
debug1: Authentications that can continue: publickey,password

সবচেয়ে সহজ সমস্যাটি আপনার জনসাধারণের কী অনুলিপি করার ক্ষেত্রে হতে পারে, কারণ আমি অন্য প্রান্তের এখানে নেই এমন একটি কী দিয়ে প্রমাণীকরণের চেষ্টা করে একই প্রতিক্রিয়া পাই।

নিজে হাতে আইডি অনুলিপি করার পরিবর্তে কেন চেষ্টা করবেন না ssh-copy-id- আপনার পাসওয়ার্ডটি প্রবেশ করুন এবং এটি আপডেট হবে authorized_keys। এটি (ক) অবশ্যই নির্বাচিত হওয়া একই চাবিটি sshনির্বাচন করবে, (খ) নিশ্চিত করুন যে আপনি দুর্ঘটনাক্রমে কোনও বিন্যাসের ত্রুটি যুক্ত করেন নি।

আপনি যে কাজ, লাইন যোগ করা তুলনা authorized_keysদ্বারা ssh-copy-idএবং আশা আপনি বুঝতে পারবেন কি ভুল হয়েছে।


এটি কাজ করে, আপনাকে অনেক ধন্যবাদ! দেখা যাচ্ছে যে আমার কাছে authorized_keysফাইল নামটি টাইপো ছিল । আমি প্রতিটি পদ্ধতি চেষ্টা করেছিলাম এবং ফাইল
নামটি

ব্যবহার করা ssh-copy-idআমার জন্য কৌতুক তৈরি
আসফ

এটি পুরোপুরি কাজ করে ... যদি না আপনার কাছে ম্যাক থাকে। :)
ফিক্সি

@ ফিক্সি brew install ssh-copy-idযদি আপনি হোমব্রু ব্যবহার করেন
গ্রেগ

1
এই সঠিক লক্ষণগুলিও প্রকাশিত হতে পারে যদি আপনি SELinux সক্ষম করে থাকেন এবং ভুল কনফিগার করে থাকেন যা এটি sshd কে অনুমোদিত_কিগুলি ফাইল পড়তে বাধা দেয় (SELinux অডিট লগটি না দেখে সবসময় স্পষ্ট হয় না, কারণ সেলইনাক্স যথেষ্ট পরিমাণে সূক্ষ্ম হয় যা আপনি সহজেই প্রবেশ করতে পারেন এমন একটি রাষ্ট্র যেখানে ম্যানুয়াল ব্যবহারকারী হিসাবে পাঠায় বা
সুডোর

5

অনুমতিগুলি জনসাধারণের প্রমাণীকরণ ব্যর্থতার কারণ হতে পারে এমন অন্য ধরণের সমস্যা হতে পারে: আপনার ব্যবহারকারীকে বাদ দিয়ে আপনার ~এবং ~/.sshডিরেক্টরিগুলি কারও দ্বারা পঠনযোগ্য নয় তা পরীক্ষা করুন ( chmod 700 ~ && chmod 700 ~/.sshএটি ঠিক করতে পারে)।

সম্পাদনা: 750 এর জন্য অনুমতিগুলিও ~ঠিক আছে।


এটা কি সত্যি? এর অনুমতিগুলি বিবেচনা করা ~/উচিত নয়, উবুন্টুতে ডিফল্টটি সাধারণত হোম ডিরেক্টরিতে 755 হয় এবং এটি আমার জন্য কাজ করে।
উলফআর

আমি সত্যিই মুখোমুখি হয়েছি (রিমোট হোস্টে) CentOS 7 এবং ওপেনএসএসএইচ_6.4 এবং ওপেনএসএসএইচ_6.6.1 উভয়ই। শুধু chmod 700 ~আমার সমস্যা সমাধান করেছে।
আন্তোনিওকে

তোমার জন্য ভালো! তবে: এটি অনুসারে: Askubuntu.com/a/69867/31749 হোম ডিরেক্টরিতে কোনও গ্রুপ লেখার অনুমতি থাকতে পারে না, তবে গ্রুপ-পঠন ঠিক হওয়া উচিত।
উলফআর

ঠিক আছে, 750 সিস্টেমটিতে আমার ক্ষেত্রে কাজ করে কিনা তা আমার চেক করা উচিত।
আন্তোনিওকে

2
সবেমাত্র এটি পরীক্ষা করে দেখুন। chmod 750 ~ঠিকভাবে কাজ করে.
আন্তোনিওকে

3

সুযোগক্রমে, authorized_keysফাইলটি তৈরি করার সময় , আপনি নিজের ফাইলের বানানটি ভুল বানান করেছেন (যেহেতু আপনি authorzied_keysএটি প্রশ্নের উত্তর অনুসারে বানান করেছেন (i এবং z এক্সচেঞ্জ করেছেন), আপনার ফাইলটি একইভাবে নামকরণ করার সম্ভাবনা রয়েছে) ssh কনফিগারেশন ফাইলটিতে, ফাইলটির নামটি নির্দিষ্টভাবে উল্লেখ করা হয়েছে

AuthorizedKeysFile %h/.ssh/authorized_keys

অতএব, আপনার বিশেষভাবে হওয়া দরকার যে ফাইলের নামটি একই। সুতরাং শুধু ফাইলের নাম যাচাই করুন।


3

কখনও কখনও আপনাকে ব্যক্তিগত-কী স্পষ্টভাবে -i সহ সরবরাহ করতে হবে provide

উদাহরণ: ssh -i /root/.ssh/id_rsa2 user@remote


1
এটি এখানে সমস্যা বলে মনে হচ্ছে না তবে যাইহোক ভাল পয়েন্ট।
লিটলবাই ব্লু
আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.