You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
947 B

7 years ago
ssh-add
===
6 years ago
7 years ago
把专用密钥添加到ssh-agent的高速缓存中
6 years ago
## 说明
7 years ago
**ssh-add命令** 是把专用密钥添加到ssh-agent的高速缓存中。该命令位置在`/usr/bin/ssh-add`。
### 语法
```
ssh-add [-cDdLlXx] [-t life] [file ...]
ssh-add -s pkcs11
ssh-add -e pkcs11
```
6 years ago
7 years ago
```
-D删除ssh-agent中的所有密钥.
-d从ssh-agent中的删除密钥
-e pkcs11删除PKCS#11共享库pkcs1提供的钥匙。
-s pkcs11添加PKCS#11共享库pkcs1提供的钥匙。
-L显示ssh-agent中的公钥
-l显示ssh-agent中的密钥
-t life对加载的密钥设置超时时间超时ssh-agent将自动卸载密钥
-X对ssh-agent进行解锁
-x对ssh-agent进行加锁
```
### 实例
1、把专用密钥添加到 ssh-agent 的高速缓存中:
```
ssh-add ~/.ssh/id_dsa
```
2、从ssh-agent中删除密钥
```
ssh-add -d ~/.ssh/id_xxx.pub
```
3、查看ssh-agent中的密钥
```
ssh-add -l
```