ssh-keygen命令用于为“ssh”生成、管理和转换认证密钥,它支持RSA和DSA两种认证密钥。
语法格式:ssh-keygen [参数]
常用参数:
-b | 指定密钥长度 |
-e | 读取openssh的私钥或者公钥文件 |
-f | 指定用来保存密钥的文件名 |
-t | 指定要创建的密钥类型 |
-C | 添加注释 |
参考实例
创建一个默认密钥:
[root@linuxcool ~]# ssh-keygen
使用-t参数创建一个指定密钥的类型并添加注释:
[root@linuxcool ~]# ssh-keygen -t rsa -C "your_email@example.com"
使用-e参数读取openssh的私钥或者公钥文件:
[root@linuxcool ~]# ssh-keygen -e