ssh2 protokolü ile ssh1 protokolü çalışan bir makineye şifresiz bağlanmak için.

önce ssh2 çalışan makinemizde key oluşturuyoruz.

[root@localhost .ssh]# ssh-keygen  -t rsa
Generating public/private rsa key pair.
Enter file in which to save the key (/root/.ssh/id_rsa):
Enter passphrase (empty for no passphrase): 
Enter same passphrase again: 
Your identification has been saved in /root/.ssh/id_rsa.
Your public key has been saved in /root/.ssh/id_rsa.pub.
The key fingerprint is:
*********************************** 

ardından bu key’i remote makinedeki /root/.ssh/authorized_keys dosyasının sonuna ekliyoruz.

[root@localhost .ssh] cat ~/.ssh/id_rsa.pub | ssh remote_server_hostname "cat - >> ~/.ssh/authorized_keys"

sonra remote makinede /etc/ssh/sshd_config dosyasında Protocol kısmını Protocol 1,2 şeklinde değiştirip remote makinede hem ssh1 hemde ssh2 ile bağlanabilme özelliğini aktif ediyoruz.

sonra /etc/init.d/sshd restart ile sshd yi restart edip

artik ssh2 protokolü kullandığınız makineden ssh1 protokolü çalışan diğer makineye şifresiz bağlanabilirsiniz.

Posted in Genel on April 13th, 2010 by Kürşad DARA | | 0 Comments