วิธีแก้ไขข้อผิดพลาดการอนุญาต (กุญแจสาธารณะ)


11

ในขณะที่พยายามที่จะติดต่อสื่อสารระหว่างสก์ท็อปของฉัน Ubuntu 12.10 และ Fedora 19 สก์ท็อป, ฉันกำลังหันหน้าไปทางข้อผิดพลาดของการอนุญาตปฏิเสธ (คีย์สาธารณะ)
ฉันสามารถเข้าสู่ระบบผ่าน ssh จาก fedora ไปยัง Ubuntu ได้ แต่ไม่ใช่ในทางกลับกัน
ฉันยังแสดง telnet บนทั้งสองเครื่องผ่านทางพอร์ต 22 และทั้งสองเครื่องกำลังฟัง แต่ไม่ผ่าน ssh จะทำอย่างไร? ความคิดใด ๆ

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

นี่คือ sshd_config ของระบบอูบุนตู

ssh -v fedora_machine


ซ้ำเป็นไปได้ของคอมไพล์ SSH: ไม่อนุญาต (publickey)
Gediminas Jeremiah Gudelis

คอมพิวเตอร์เครื่องใดที่sshd_configมาจาก Ubuntu หรือ Fedora นอกจากนี้คุณสามารถเพิ่มการถอดเสียงของสิ่งที่เกิดขึ้นเมื่อคุณssh -v fedora_machineจากเครื่อง Ubuntu หรือไม่?
David Purdue

sshd_config มาจาก Ubuntu ฉันเพิ่งให้ @DavidPurdue ssh -v fedora_mch ในคำถาม
Vivek Singh

คำตอบ:


14

ดังที่คุณได้บันทึกไว้กล่อง Fedora ที่คุณกำลังลงชื่อเข้าใช้ไม่ได้ตั้งค่าให้อนุญาตการตรวจสอบรหัสผ่านเฉพาะการตรวจสอบสิทธิ์กุญแจสาธารณะเท่านั้นซึ่งจะเห็นได้จากssh -vผลลัพธ์

ดังนั้นทางออกหนึ่งคือการเพิ่มการตรวจสอบรหัสผ่านตามที่คุณทำ

อีกวิธีคือนำเนื้อหาของ~/.ssh/id_rsa.pubบนกล่อง Ubuntu และเพิ่มลงในไฟล์~/.ssh/authorized_keysบนกล่อง Fedora

ตอนนี้คุณได้เปิดใช้งานการพิสูจน์ตัวตนด้วยรหัสผ่านคุณสามารถติดตั้งคีย์ที่ได้รับอนุญาตด้วยคำสั่งนี้บนกล่อง Ubuntu:

$ ssh-copy-id fedora_box

9

ขออภัยทุกอย่างดูเหมือนจะเป็นความผิดพลาดของฉัน ฉันไม่มี

PasswordAuthentication yes

ในการกำหนดค่า SSH ของเครื่อง Fedora

แก้ไขได้โดยเปิดใช้งานสิ่งนี้ ขอบคุณสำหรับความช่วยเหลือของคุณ.


AFAICT ใช่เป็นค่าเริ่มต้น
Shubham Chaudhary

2

สำหรับฉันฉันต้องแสดงความคิดเห็น ChallengeResponseAuthentication ไม่มี ontop ว่ามี PasswordAuthentication ใช่บน


ใช่จำเป็นต้องใช้บน Ubuntu 16
สูงสุด

0

ปัญหาของฉันคือฉันมีกุญแจสาธารณะหลายอันและssh-copy-idผิดค่าเริ่มต้น:

/usr/local/bin/ssh-copy-id: INFO: Source of key(s) to be installed: "/Users/admin/.ssh/id_boot2docker.pub"

เมื่อฉันใช้รหัสสาธารณะที่ถูกต้องมันทำงานได้:

ssh-copy-id -i ~/.ssh/id_rsa.pub remote-machine
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.