CRT通过私钥登录LINUX服务器

首先用secureCrt创建密钥

  1.使用SecureCRT创建私钥和公钥.

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

  这个时候在指定目录会生成两个文件,例如,私钥Identity和公钥Identity.pub

  2.linux服务器上建立.ssh目录,一般情况下,已经有这个目录

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

  3.将公钥Identity.pub传到linux服务器,将SSH2兼容格式的公钥转换成为Openssh兼容格式

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

  4.在SecureCRT里面设置登录模式为PublicKey,并选择刚刚创建的Identity文件作为私钥

  5.重启Linux服务器上SSH服务器

  service sshd restart或者/etc/init.d/ssh restart

  6.由于已经设置了密钥登录,原来的密码登录就完全可以去掉

  注意:步骤3中的转换key格式易于为大家忽略,请多注意此点。

把创建的私钥转化成scp支持的格式

  由于securecrt创建的私钥不同于winscp使用的私钥格式,需要转换

  securecrt»tools»Convert Private Key to OpenSSH Format …

  保存成openssh格式的密钥对,然后运行winscp包里的puttygen»Conversions»Import key选择刚才转换的私钥,输入key passphrase后,选择Save private key,保存成ppk格式的文件