标签:style blog http color io os 使用 for 文件
不论是通过windows上的PUTTYGEN生成public key,还是Linux上的ssh-keygen命令生成private key,都不能在对方的环境里直接使用。这是我写这篇博客的主要原因。就是阐述如何转化为对方可以辨认的格式。
一、第一个方法:使用ssh-keygen
1. 使用ssh-keygen。在Linux上执行命令:
ssh-keygen -b 1024 -t rsa
2. 默认在$HOME/.ssh/下生成两个文件:
id_rsa id_rsa.pub
3. 把id_rsa.pub改成authorized_keys,然后修改权限为600。
[nan@localhost .ssh]$ cp id_rsa.pub authorized_keys [nan@localhost .ssh]$ chmod 600 authorized_keys
4. 用vi编辑器打开另一个文件,id_rsa(私人密钥)。把内容拷贝一份,以txt文件保存在桌面上。然后用PUTTYGEN导入。
注意修改"Number of bits in a generated key:"为1024。因为我们先前使用ssh-keygen命令的时候,就已经指明了1024。
5. 保存为private key,更名,下次启动putty的时候,选择SSH下的Auth。在”Private key file for authentication“里寻找到private key所在的位置。即可直接登陆了。
二、使用PUTTYGEN生成密钥。
三、从RSA技术角度分析两种工具的相同与不同。以期找到更便捷的方法。
标签:style blog http color io os 使用 for 文件
原文地址:http://www.cnblogs.com/zuiaishenlin/p/3970778.html