Skip to content

Commit 2f22510

Browse files
committed
Formatting.
1 parent 3f1b346 commit 2f22510

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

tutorials/sftp_publickeyauth_1password.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
Configure Public Key Authentication for SFTP using 1Password SSH Agent
22
====
33

4-
Public-key authentication using 1Password SSH Agent allows you to connect to a remote server without a password. Instead, public-key authentication uses two keys:
4+
Public-key authentication using _1Password_ SSH Agent allows you to connect to a remote server without a password. Instead, public-key authentication uses two keys:
55
- Private key managed by 1Password
6-
- Public key placed on the server.
6+
- Public key placed on the server
77

8-
1. Ensure you have configured 1Password to manage your SSH keys. For more information, refer to [1Password SSH Agent](https://developer.1password.com/docs/ssh/agent). Enable the 1Password SSH Agent in _1Password → Settings… → Developer_
8+
1. Ensure you have configured _1Password_ to manage your SSH keys. For more information, refer to [1Password SSH Agent](https://developer.1password.com/docs/ssh/agent). Enable the _1Password SSH Agent_ in _1Password → Settings… → Developer_
99

1010
:::{image} _images/1Password_SSH_Agent_Settings.png
1111
:alt: 1Password SSH Agent Settings
1212
:width: 600px
1313
:::
1414

15-
2. Verify the 1Password SSH Agent is running as expected by attempting to list available SSH keys with
15+
2. Verify the _1Password SSH Agent_ is running as expected by attempting to list available SSH keys with
1616
```
1717
SSH_AUTH_SOCK=~/Library/Group\ Containers/2BUA8C4S2C.com.1password/t/agent.sock ssh-add -l
1818
```
19-
3. Open the OpenSSH configuration file `~/.ssh/config` and add the following configuration specifying to use 1Password as the SSH agent:
19+
3. Open the OpenSSH configuration file `~/.ssh/config` and add the following configuration specifying to use _1Password_ as the SSH agent:
2020
```
2121
Host *
2222
IdentitiesOnly yes
@@ -39,7 +39,7 @@ Public-key authentication using 1Password SSH Agent allows you to connect to a r
3939
:width: 600px
4040
:::
4141
42-
5. Add the public key copied from 1Password to the `authorized_keys` in your `~/.ssh` directory on the server running OpenSSH.
42+
5. Add the public key copied from _1Password_ to the `authorized_keys` in your `~/.ssh` directory on the server running OpenSSH.
4343
4444
```
4545
pbpaste | ssh user@remotehost 'cat >> .ssh/authorized_keys
@@ -53,7 +53,7 @@ Public-key authentication using 1Password SSH Agent allows you to connect to a r
5353
:::
5454
5555
:::{tip}
56-
The server may respond with _[Too many authentication failures](../protocols/sftp/index.md#too-many-authentication-failures)_ when trying to authenticate with all keys stored in 1Password. In the [Bookmark](../cyberduck/bookmarks.md) panel, select the public key corresponding to your SSH private key saved in 1Password for *SSH Private Key*. The public key must be available as a file you can write from the clipboard to a file using:
56+
The server may respond with _[Too many authentication failures](../protocols/sftp/index.md#too-many-authentication-failures)_ when trying to authenticate with all keys stored in _1Password_. In the [Bookmark](../cyberduck/bookmarks.md) panel, select the public key corresponding to your SSH private key saved in _1Password_ for *SSH Private Key*. The public key must be available as a file you can write from the clipboard to a file using:
5757
5858
```
5959
pbpaste > ~/.ssh/test.pub
@@ -66,7 +66,7 @@ Public-key authentication using 1Password SSH Agent allows you to connect to a r
6666
IdentityFile ~/.ssh/test.pub
6767
```
6868
69-
7. Connect to the server and acknowledge the prompt to use the private key stored in 1Password.
69+
7. Connect to the server and acknowledge the prompt to use the private key stored in _1Password_.
7070
7171
:::{image} _images/1Password_Authorize_SSH_Key_Usage.png
7272
:alt: 1Password Confirm Key Usage

tutorials/sftp_publickeyauth_bitwarden.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
Configure Public Key Authentication for SFTP using Bitwarden SSH Agent
22
====
33

4-
Public-key authentication using Bitwarden SSH Agent allows you to connect to a remote server without a password. Instead, public-key authentication uses two keys:
5-
- Private key managed by Bitwarden
6-
- Public key placed on the server.
4+
Public-key authentication using _Bitwarden SSH Agent_ allows you to connect to a remote server without a password. Instead, public-key authentication uses two keys:
5+
- Private key managed by _Bitwarden_
6+
- Public key placed on the server
77

8-
1. Ensure you have configured Bitwarden to manage your SSH keys. For more information, refer to [Bitwarden SSH Agent](https://bitwarden.com/help/ssh-agent/#configure-bitwarden-ssh-agent). Open _Bitwarden → Settings…_ and select the checkbox _Enable SSH Agent_.
8+
1. Ensure you have configured _Bitwarden_ to manage your SSH keys. For more information, refer to [Bitwarden SSH Agent](https://bitwarden.com/help/ssh-agent/#configure-bitwarden-ssh-agent). Open _Bitwarden → Settings…_ and select the checkbox _Enable SSH Agent_.
99

1010
:::{image} _images/Bitwarden_SSH_Agent_Settings.png
1111
:alt: Bitwarden Settings
@@ -19,7 +19,7 @@ Public-key authentication using Bitwarden SSH Agent allows you to connect to a r
1919
:width: 800px
2020
:::
2121

22-
3. Confirm the Bitwarden SSH Agent is running as expected by attempting to list available SSH keys with
22+
3. Confirm the _Bitwarden SSH Agent_ is running as expected by attempting to list available SSH keys with
2323
```
2424
SSH_AUTH_SOCK=~/.bitwarden-ssh-agent.sock ssh-add -l
2525
```
@@ -30,7 +30,7 @@ Public-key authentication using Bitwarden SSH Agent allows you to connect to a r
3030
pbpaste | ssh user@remotehost 'cat >> .ssh/authorized_keys
3131
```
3232

33-
5. Open the OpenSSH configuration file `~/.ssh/config` and add the following configuration specifying to use Bitwarden as the SSH agent:
33+
5. Open the OpenSSH configuration file `~/.ssh/config` and add the following configuration specifying to use _Bitwarden_ as the SSH agent:
3434
```
3535
Host *
3636
IdentitiesOnly yes
@@ -60,7 +60,7 @@ Public-key authentication using Bitwarden SSH Agent allows you to connect to a r
6060
IdentityFile ~/.ssh/test.pub
6161
```
6262

63-
7. Connect to the server and acknowledge the prompt to use the private key stored in Bitwarden.
63+
7. Connect to the server and acknowledge the prompt to use the private key stored in _Bitwarden_.
6464

6565
:::{image} _images/Bitwarden_Confirm_SSH_Key_Usage.png
6666
:alt: Bitwarden Confirm Key Usage

0 commit comments

Comments
 (0)