diff --git a/_episodes/01-connecting.md b/_episodes/01-connecting.md
index ac47ef0..03d0cf9 100644
--- a/_episodes/01-connecting.md
+++ b/_episodes/01-connecting.md
@@ -232,25 +232,30 @@ when using SSH keys and `ssh yourUsername@some.computer.address` if only
password access is available. Let's attempt to connect to the HPC system
now:
+
+
+ EdDSA Key
```
ssh -i ~/.ssh/key_{{ site.workshop_host }}_ed25519 yourUsername@{{ site.workshop_host_login }}
```
{: .language-bash}
+
-or
-
+
+ RSA Key
```
ssh -i ~/.ssh/key_{{ site.workshop_host }}_rsa yourUsername@{{ site.workshop_host_login }}
```
{: .language-bash}
+
-or if SSH keys have not been enabled
-
+
+ No SSH keys
```
ssh yourUsername@{{ site.workshop_host_login }}
```
{: .language-bash}
-
+
```
{% include /snippets/01/login_output.{{ site.workshop_host_id }} %}