...
-Symmetric Encryption Algorithms
-Block cipher ( 128-bit block message + 128-bit key) >> 128-bit cipher text
- Advanced Encryptiuon Standard
On the server create a pair of key, directory /root/.ssh/
2- copy the public key to the server:
ssh-copy-id ansible@192.168.99.11
or just copy the file using: using ( if ssh-copy-id not supported ):
sftp
ansible@192.168.99.11
( then put /project/id_rsa.pub /var/home/ansible/id_rsa.pub pub )
( or with sftp tool like mobaxterm )
...