From 29d621fd771a762b03a04fc32a826240c3d7c510 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Mon, 17 Jun 2019 12:11:36 +0200 Subject: [PATCH] Add template for SSH article --- content/getting-started/ssh.md | 52 ++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 content/getting-started/ssh.md diff --git a/content/getting-started/ssh.md b/content/getting-started/ssh.md new file mode 100644 index 0000000..3ad254e --- /dev/null +++ b/content/getting-started/ssh.md @@ -0,0 +1,52 @@ +Title: Demystifying SSH +Date: 2019-06-17 +Tags: ssh +Slug: demystifying-ssh +Description: Understanding, using and troubleshooting SSH for fun and not-for-profit +Author: hbsc & friends +Status: draft + +## Introduction + +## Requirements + +## How does SSH help us? + +## All the moving parts + +## Getting SSH access + +## Giving SSH access + +## Things people say when they understand SSH + +### Do you have SSH installed? +### Can you send me your SSH public key? +### Can you give me SSH access to the server? +### Are you able to SSH in? +### What's in your SSH config? + +## Troubleshooting SSH + +### Remember the moving parts + +### On the server + +#### Public key +#### Permissions +#### SSH server is running +#### SSH server configuration + +### On the client + +#### Permissions +#### Is your public key there? +#### Is the server up? +#### Config check +#### What does the agent say? + +### Other scenarios + +#### Git + +## Further Reading