updates older post
This commit is contained in:
parent
9370181577
commit
d4782126b6
1 changed files with 22 additions and 3 deletions
|
@ -5,7 +5,7 @@ summary: >
|
||||||
This is how I solved it.
|
This is how I solved it.
|
||||||
<small>The thumbnail was created with Google AI (Imagen 3).</small>
|
<small>The thumbnail was created with Google AI (Imagen 3).</small>
|
||||||
date: 2024-10-06T19:30:17+02:00
|
date: 2024-10-06T19:30:17+02:00
|
||||||
lastmod: 2024-12-08T11:12:01+0000
|
lastmod: 2024-12-17T15:16:01+0000
|
||||||
categories:
|
categories:
|
||||||
- computerstuff
|
- computerstuff
|
||||||
tags:
|
tags:
|
||||||
|
@ -35,6 +35,25 @@ $ ssh -O exit {short hostname}
|
||||||
every time -- which is annoying.
|
every time -- which is annoying.
|
||||||
|
|
||||||
{{< alert "triangle-exclamation" >}}
|
{{< alert "triangle-exclamation" >}}
|
||||||
**Update on 2024-12-08:**
|
**Update on 2024-12-17:**
|
||||||
I'm afraid, but I think this is not yet fully resolved.
|
A few changes to the SSH configuration on client and server have been made.
|
||||||
{{< /alert >}}
|
{{< /alert >}}
|
||||||
|
|
||||||
|
It got better, but I still experience the one or other hang.
|
||||||
|
|
||||||
|
I added/modified these entries within `Host *` in
|
||||||
|
<kbd>~/.ssh/config</kbd> on the client:
|
||||||
|
|
||||||
|
```apache
|
||||||
|
ServerAliveInterval 100
|
||||||
|
ServerAliveCountMax 10000
|
||||||
|
```
|
||||||
|
|
||||||
|
and made these changes/additions in <kbd>/etc/ssh/sshd_config</kbd>
|
||||||
|
on the server:
|
||||||
|
|
||||||
|
```apache
|
||||||
|
ClientAliveInterval 60
|
||||||
|
ClientAliveCountMax 10000
|
||||||
|
TCPKeepAlive yes
|
||||||
|
```
|
||||||
|
|
Loading…
Reference in a new issue