Linux - SSH

http://www.thegeekstuff.com/2008/05/5-basic-linux-ssh-client-commands/
http://net.tutsplus.com/tutorials/tools-and-tips/ssh-what-and-how/

My workstation is located very close to my development server, so I don't have problem with the development server. However, my production servers are located at the data-center, and for some reason, my SSH connections (PuTTY) got broken after awhile.

Possible fix is to modify PuTTY setting. Look for "Seconds between keepalives (0 to turn off)" under the "Connection". Change it from the default value of 0, to another value (I use 20). This means, send one keepalive packet every 20 seconds.

ssh localhost -p 8022 -o StrictHostKeyChecking=no

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License