On 12/27/19 11:33 AM, Trent via blfs-support wrote:
Also, I have noticed while logged in via SSH, sometimes the system is not responding when I start typing. I was attributing that to some sort of power saving attribute turned on, but checking, there is nothing set.
For ssh, you can set some parameters to help. The file is ~/.ssh/config In there I have: # Global Host * StrictHostKeyChecking ask Protocol 2 ServerAliveInterval 45 ServerAliveCountMax 10 For specific hosts you can add things like Host example.com example3.com 10.1.2.3 ForwardX11 yes ForwardX11Trusted yes User example Ciphers aes192-cbc HostKeyAlgorithms ssh-dss,ssh-rsa IdentityFile ~/.ssh/id_dsa The ServerAlive entries may help you. -- Bruce -- http://lists.linuxfromscratch.org/listinfo/blfs-support FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page
