You are not allowed to add pages
$ ssh-keygen -t rsa -b 4096
If your private key is encrypted with a passphrase(when you generate it by ssh-keygen), the passphrase must be entered every time you attempt to connect to an SSH server using public-key authentication.
SSH agent is a program which caches your decrypted private keys and provides them to SSH client programs on your behalf.
$ eval $(ssh-agent) $ echo $SSH_AUTH_SOCK $ ssh-add (add ~/.ssh/id_rsa by default) $ ssh -T user@remote.com
-A enables forwarding of the authentication agent connection. local → server1 → server2
$ eval $(ssh-agent) $ ssh-add $ ssh -A server1 <host1> $ ssh server2
AllowTcpForwarding yes
ssh -L 8081:localhost:8080 <oracle db host>
$ tar -cf - xen_el5_i386_para | gzip -c -9 | ssh root@ostest117 "gzip -dc | tar -xf - -C /OVS/rpool" $ tar czf - xen_el5_i386_para | ssh root@ostest117 "tar xzf - -C /OVS/rpool"