Linux下ssh-keygen生成公钥和私钥不按用回车方法

ssh

正常使用ssh-keygen -t rsa命令,需要连续输入3次回车,现在加入参数后,直接在~/.ssh目录下生成id_rsa和id_rsa.pub。
命令:
ssh-keygen -t rsa -N ” -f ~/.ssh/id_rsa -q -b 2048 -C “test@ppabc.cn”

参数说明:
-N ” 密码为空;

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

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

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

-C comment 提供一个新注释

© 版权声明
THE END
喜欢就支持以下吧
点赞0 分享