Quantcast
Channel: Way to avoid ssh connection timeout & freezing of GNOME Terminal - Super User
Browsing all 9 articles
Browse latest View live

Answer by MoRe for Way to avoid ssh connection timeout & freezing of GNOME...

Not sure if this works for gnome terminal too but you should be able to use the terminal again after you kill the ssh client process.pgrep -a sshgives you the process ID which you can then killkill...

View Article



Answer by Vasin Yuriy for Way to avoid ssh connection timeout & freezing of...

In my case problem was in large MTU size. You can change MTU on router if you using NAT, but I change MTU on server:sudo /sbin/ifconfig eth0 mtu 1036sudo /etc/init.d/networking restartOn Windows you...

View Article

Answer by Ladinfremes for Way to avoid ssh connection timeout & freezing of...

You can also set an idle timeout interval from SSH server side:File: /etc/ssh/ssh_configContent:ClientAliveInterval XXClientAliveCountMax YYThis works in the exact same way as the client setting, but...

View Article

Answer by Yohannes for Way to avoid ssh connection timeout & freezing of...

For people who want to prevent the client from timing out in the first place.You could try to set ConnectTimeout 0 in the configuration file. The value 0 means the connection will be kept alive...

View Article

Answer by Fergie for Way to avoid ssh connection timeout & freezing of GNOME...

Try appending -o ServerAliveInterval=30 to your connection string (30 means 30 seconds and can of course be adjusted)

View Article


Answer by fotos for Way to avoid ssh connection timeout & freezing of GNOME...

Even tho this is not a direct answer to your question, it is highly related to the problem you have. Instead of trying to keep the connection alive (all connections eventually die) you can use terminal...

View Article

Answer by Ludwig Weinzierl for Way to avoid ssh connection timeout & freezing...

sshd (the server) closes the connection if it doesn't hear anything from the client for a while. You can tell your client to send a sign-of-life signal to the server once in a while.The configuration...

View Article

Answer by Peter Eisentraut for Way to avoid ssh connection timeout & freezing...

Press Enter, ~, . one after the other to disconnect from a frozen session. The section "ESCAPE CHARACTERS" in the ssh man page explains the underlying details.

View Article


Way to avoid ssh connection timeout & freezing of GNOME Terminal

When I connect via ssh to certain servers, it timeouts and "freezes" the terminal (doesn't accept input, doesn't disconnect, can't Ctrl-C to kill the ssh process or anything).This is in Ubuntu's...

View Article

Browsing all 9 articles
Browse latest View live




Latest Images