Posts

Showing posts with the label SSH

Remote login via SSH without login

Do following steps... Check if there is a file: id_dsa.pub in your .ssh folder. If not, create it: # ssh-keygen -t dsa Send to the server you want to login # cat id_dsa.pub >> .ssh/authorized_keys After that, you can login to the server via SSH with no-password.

multi SSH connection to a server over an existing socket

cat >> ~/.ssh/config Host * ControlPath /tmp/%r@%h:%p ControlMaster auto EOF