Formatting Preview

This commit is contained in:
Charles Showalter 2023-01-28 21:59:22 +00:00
parent 416a6bf0c3
commit 4e87eb992a

View File

@ -33,8 +33,8 @@
<a href="#getting-started">Getting Started</a> <a href="#getting-started">Getting Started</a>
<ul> <ul>
<li><a href="#prerequisites">Prerequisites</a></li> <li><a href="#prerequisites">Prerequisites</a></li>
<li><a href="#installation">Installation</a></li>
</ul> </ul>
<li><a href="#installation">Installation</a></li>
</li> </li>
<li> <li>
<a href="#hardening">Hardening</a> <a href="#hardening">Hardening</a>
@ -155,27 +155,27 @@ Coming Soons
* Finally, click Install. * Finally, click Install.
4. Open Command Prompt. 4. Open Command Prompt.
1) Press the Windows key. * Press the Windows key.
2) Type `cmd`. * Type `cmd`.
3) Under *Best Match*, right-click Command Prompt. * Under *Best Match*, right-click Command Prompt.
4) Click Run as Administrator * Click Run as Administrator
![Command Prompt](images/ssh/windows-step4.png) ![Command Prompt](images/ssh/windows-step4.png)
5. If prompted, click **Yes** in the *Do you want to allow this app to make changes to your device?* pop-up. 5. If prompted, click **Yes** in the *Do you want to allow this app to make changes to your device?* pop-up.
6. Use OpenSSH to Generate an SSH Key Pair 6. Use OpenSSH to Generate an SSH Key Pair
1) In the command prompt, type the following: * In the command prompt, type the following:
```sh ```sh
ssh-keygen ssh-keygen
``` ```
![SSH](images/ssh/windows-step6.png) ![SSH](images/ssh/windows-step6.png)
2) By default, the system will save the keys to C:\Users\your_username/.ssh/id_rsa. You can use the default name, or you can choose more descriptive names. This can help distinguish between keys, if you are using multiple key pairs. To stick to the default option, press Enter. * By default, the system will save the keys to C:\Users\your_username/.ssh/id_rsa. You can use the default name, or you can choose more descriptive names. This can help distinguish between keys, if you are using multiple key pairs. To stick to the default option, press Enter.
3) Youll be asked to enter a passphrase. Hit Enter to skip this step. * Youll be asked to enter a passphrase. Hit Enter to skip this step.
4) The system will generate the key pair, and display the key fingerprint and a randomart image. * The system will generate the key pair, and display the key fingerprint and a randomart image.
5) Open your file browser. * Open your file browser.
6) Navigate to C:\Users\your_username/.ssh. * Navigate to C:\Users\your_username/.ssh.
7) You should see two files. The identification is saved in the id_rsa file and the public key is labeled id_rsa.pub. This is your SSH key pair. * You should see two files. The identification is saved in the id_rsa file and the public key is labeled id_rsa.pub. This is your SSH key pair.
**Linux:** **Linux:**