From 4d08cadc4f6e732dcce3213eb87166075a99cd53 Mon Sep 17 00:00:00 2001 From: Ngô Ngọc Đức Huy Date: Mon, 24 Feb 2025 17:18:18 +0700 Subject: Remove translations --- content/notes/ssh-timeout.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 content/notes/ssh-timeout.md (limited to 'content/notes/ssh-timeout.md') diff --git a/content/notes/ssh-timeout.md b/content/notes/ssh-timeout.md new file mode 100644 index 0000000..fdb53d9 --- /dev/null +++ b/content/notes/ssh-timeout.md @@ -0,0 +1,20 @@ +--- +title: "How to prevent SSH timeout from hanging your terminal" +date: 2025-03-17 +draft: true +lang: en +categories: [ blog ] +tags: [] +translationKey: "ssh-timeout" +--- + +Sometimes, I open an SSH session and then forget about it. When I get back to it, it hangs indefinitely, without a way to close it other than closing the terminal. + +To avoid this, add this to the client config: + +```sshconfig +Host * + ServerAliveInterval 100 +``` + +If you're disconnected from the SSH server, you'll get this message `Timeout, server example.com not responding.` and the connection is terminated. -- cgit 1.4.1