# SSH ## Key generation ssh-keygen -t rsa -C "email@addres.com" -b 4096 Change password for key: ssh-keygen -p ## Setup login with public key ssh-copy-id [user@]host ## Execute commands and start shell ssh -t host 'commands; bash' ## Port tunneling ssh -N host -L : `-N` is to not start an SSH session.