docs: update dotfiles/ssh
This commit is contained in:
parent
e2efea48a1
commit
d459b5fded
|
@ -1,13 +1,13 @@
|
||||||
---
|
---
|
||||||
title: "OpenSSH"
|
title: OpenSSH
|
||||||
description: "Creature comfort configs for SSH"
|
description: Creature comfort configs for SSH
|
||||||
author: "Thurstylark"
|
published: true
|
||||||
date: 2021-9-25
|
date: 2024-03-08T01:57:19.739Z
|
||||||
draft: false
|
tags:
|
||||||
|
editor: markdown
|
||||||
|
dateCreated: 2024-03-07T23:21:49.285Z
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## User-Specific Client Config
|
## User-Specific Client Config
|
||||||
|
|
||||||
Most directives that can be set in the system-wide client configuration can be set by each user in `~/.ssh/config`. This snippit contains a collection of my most used options:
|
Most directives that can be set in the system-wide client configuration can be set by each user in `~/.ssh/config`. This snippit contains a collection of my most used options:
|
||||||
|
@ -37,9 +37,9 @@ Host foo # Arbitrary String. Use this definition by running `ssh foo`
|
||||||
### Directive Notes
|
### Directive Notes
|
||||||
|
|
||||||
- `Host`
|
- `Host`
|
||||||
- Can also refer to an actual hostname. See "Host-Specific Keys" below.
|
- Can also refer to an actual hostname. See [Host-Specific Keys](#host-specific-keys) below.
|
||||||
- `ServerAliveInterval` and `ServerAliveCountMax`
|
- `ServerAliveInterval` and `ServerAliveCountMax`
|
||||||
- It's common for a firewall to cause problems keeping connections open, so tweaking these settings can help. See "Broken Pipe Remedy" below.
|
- It's common for a firewall to cause problems keeping connections open, so tweaking these settings can help. See [Broken Pipe Remedy](#broken-pipe-remedy) below.
|
||||||
- `HostKeyAlgorithms`
|
- `HostKeyAlgorithms`
|
||||||
- ssh-dss is less secure than the alternatives/defaults. Only use this if necessary.
|
- ssh-dss is less secure than the alternatives/defaults. Only use this if necessary.
|
||||||
- `KexAlgorithms`
|
- `KexAlgorithms`
|
||||||
|
|
Loading…
Reference in New Issue