From 412372fa4cf72eed5f06343738e8f2e1d9884641 Mon Sep 17 00:00:00 2001 From: Vasiliy Vasilyuk Date: Sat, 7 Sep 2024 23:02:55 +0300 Subject: [PATCH] Disable TCPKeepAlive for ssh This may not be safe, I will use ServerAliveCountMax and ServerAliveInterval. --- home/.ssh/config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/.ssh/config b/home/.ssh/config index 6f2393b..d1143b5 100644 --- a/home/.ssh/config +++ b/home/.ssh/config @@ -24,7 +24,7 @@ HashKnownHosts yes # Enables TCP keep-alive to prevent connection from being dropped due to inactivity # Default is "yes" -TCPKeepAlive yes +TCPKeepAlive no # Verifies the remote host's IP address matches the first hostkey # Default is "no"