добавил тестовую статью
This commit is contained in:
parent
a93f5e12d5
commit
4dfe4d6b23
20
notes/putty-to-ssh/index.md
Normal file
20
notes/putty-to-ssh/index.md
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
---
|
||||||
|
title: Конвертация закрытых ключей Putty (.ppk) в OpenSSH ключи
|
||||||
|
---
|
||||||
|
|
||||||
|
Генерируем **приватный** ключ:
|
||||||
|
```bash
|
||||||
|
puttygen .ppk -O private-openssh -o id_dsa
|
||||||
|
```
|
||||||
|
|
||||||
|
Генерируем **публичный** ключ:
|
||||||
|
```bash
|
||||||
|
puttygen id_dsa.ppk -O public-openssh -o id_dsa.pub
|
||||||
|
```
|
||||||
|
|
||||||
|
Копируем ключи и настраиваем права доступа:
|
||||||
|
```bash
|
||||||
|
mv -i ~/id_dsa* ~/.ssh
|
||||||
|
chmod 600 ~/.ssh/id_dsa
|
||||||
|
chmod 666 ~/.ssh/id_dsa.pub
|
||||||
|
```
|
Reference in New Issue
Block a user