Linux ssh-keygen生成公钥和私钥

Linux ssh-keygen生成公钥和私钥


下面的命令在centos6.6上面测试ok。

以前都是需要连续输入3次回车,现在加入参数后,直接在~/.ssh目录下生成id_rsa和id_rsa.pub

ssh-keygen  -t rsa -N '' -f ~/.ssh/id_rsa -q -b 2048

-N '' 是指密码为空;

-f id_rsa是指保存文件为~/.ssh/id_rsa和~/.ssh/id_rsa.pub;

-q是指静默模式,和unzip的-q参数一样的;

-b是指位数,可以指定1024这类的,默认是2048;

上面-q -b 2048可以不需要。



你可能感兴趣的:(Linux ssh-keygen生成公钥和私钥)