ssh-keygen -t rsa -b 4096 -o -a 100 -f ~/.ssh/<id>_rsa -q -N ""
Note: The -o flag specifies that the key be saved in the new OpenSSH key format (v6.5, 2014), which is incompatible with older versions.
ssh-copy-id -i <identity> <user>@<server>
Add the following to your ~/.ssh/config file:
Host <hostname>
ControlMaster auto
ControlPath ~/.ssh/cm_socket/%r@%h:%p
Create the ~/.ssh/cm_socket directory if it doesn't already exist.
You can also use a wildcard for the hostname to enable this for all domains.
Given the changes for simple SSH multiplexing, add an additional line to the ~/.ssh/config so that it reads:
Host <hostname>
ControlMaster auto
ControlPath ~/.ssh/cm_socket/%r@%h:%p
ControlPersist yes
This will make the SSH connection persist after closing the connection. Instead
of yes
, you can specify a time limit (e.g. 1h) so that the connection closes
eventually.
To manually kill the background connection, run:
ssh -O exit <user>@<server>
Prefix the file or directory with ./
. (There is no need to escape the :
.)
scp ./<file> <user>@<address>:<path>
ssh <user>@<hostname> <command>