1. 程式人生 > >SecureCRT使用公鑰登陸ssh伺服器

SecureCRT使用公鑰登陸ssh伺服器

1、SecureCRT設定

==========================================

Quick Connect-> Authentiation -> Public Key -> Properties ->Create Identity File ->DSA/RSA -> Set Passphrase -> Done

==========================================

完成時會在指定目錄生成兩個檔案,預設名稱為:私鑰Identity和公鑰Identity.pub。

2、SSH伺服器設定如果不存在/root/.ssh目錄,則自行建立。

==========================================

# mkdir /root/.ssh# chmod 700 /root/.ssh

==========================================

將公鑰Identity.pub傳到Linux伺服器,將SSH2相容格式的公鑰轉換成為Openssh相容格式。

==========================================

# ssh-keygen -i -f Identity.pub >> /root/.ssh/authorized_keys# chmod 600 /root/.ssh/authorized_keys

==========================================

3、使用SecureCRT登入伺服器首先設定登入模式為PublicKey,並選擇剛剛建立的公鑰檔案Identity.pub。

4、重啟Linux伺服器的ssh服務

==========================================

# service sshd restart

==========================================