SSH Setup Guide Touchups (#169)

This commit is contained in:
gStart9
2022-09-14 04:41:33 +00:00
committed by GitHub
parent 69587df64c
commit 2fbb4a206d
3 changed files with 82 additions and 32 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

View File

@@ -21,6 +21,12 @@ Creating an SSH Key (Linux/Mac)
#. Create a strong passphrase and save it somewhere safe, or press ``Enter`` for no passphrase
#. It will inform you that your public key has been saved. Take note of this path:
.. code-block:: bash
Your public key has been saved in /home/user/.ssh/id_ed25519.pub
#. Next, start your system's ``ssh-agent`` and add your key to it:
.. code-block:: bash
@@ -33,9 +39,27 @@ Creating an SSH Key (Linux/Mac)
Registering an SSH Key
----------------------
#. Navigate to the *Embassy > SSH*.
#. In your Embassy's web interface, navigate to *Embassy > SSH*.
#. Click "Add New Key".
#. Paste in your SSH *public* key (created above) and click "Submit".
#. Back in the terminal of your workstation, display and copy your SSH *public* key (created above):
.. code-block:: bash
cat ~/.ssh/id_ed25519.pub
#. Copy the whole resulting line that looks similar to:
.. code-block:: bash
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINH3tqX71XsPlzYhhoo9CqAP2Yx7gsGTh43bQXr1zqoq user@ema.il
#. Paste that line into the `Add New Key` text field of your Embassy
.. figure:: /_static/images/walkthrough/ssh_key_add.jpg
#. Click **Submit**
You are now ready to SSH into your Embassy!
Connecting via CLI (Linux/Mac)
------------------------------