9/25/2023

linux mint : ไม่สามารถ SSH ไปบางเครื่องได้

linux mint : ไม่สามารถ SSH ไปบางเครื่องได้

root@OD-SUWIT:/home/suwit_j# ssh sa@192.168.2.104
Unable to negotiate with 192.168.2.104 port 22: no matching host key type found. Their offer: ssh-rsa,ssh-dss


วิธีแก้

1. สร้างไฟล์
  1. nano /etc/ssh/ssh_config.d/my.conf

2. เอาข้อมูลนี้ไปใส่
  1. HostKeyAlgorithms ssh-rsa,ssh-dss
  2. PubkeyAcceptedKeyTypes ssh-rsa,ssh-dss
  3.  
https://askubuntu.com/questions/836048/ssh-returns-no-matching-host-key-type-found-their-offer-ssh-dss

แล้วลอง SSH ดู มันจะให้ลบ key เดิมที่เคยบันทึกไว้ออก ด้วยคำสั่ง
ssh-keygen -f "/home/suwit_j/.ssh/known_hosts" -R "192.168.2.104"

 

No comments:

Post a Comment