12 lines
164 B
Markdown
12 lines
164 B
Markdown
|
# Get key for machine
|
||
|
|
||
|
```sh
|
||
|
ssh-keyscan <host>
|
||
|
```
|
||
|
|
||
|
If you want to get key for the current machine you can use the following code
|
||
|
|
||
|
```sh
|
||
|
ssh-keyscan localhost
|
||
|
```
|