Tag Archives: ssh

Using rsysc over SSH with custom ssh port

Using rsync over SSH connection with custom ssh port # rsync -avz -e “ssh -p portNumber” user@server:/path_to/files/ /local_path/  

Posted in Debian, Linux tips, Mint, Ubuntu | Tagged , , | Leave a comment

ssh key authentication

How to generate SSH keys and implement for key authentication. login to local machine with user you will be using for connect to remote. 1. generate keys: ssh-keygen -t dsa 2. copy id_dsa.pub to remote machine to /tmp directory scp … Continue reading

Posted in Linux tips | Tagged , , | 2 Comments